Contents
About this report
Report parameters
Contexts
No contexts were selected, so all contexts were included by default.
Sites
The following sites were included:
- https://connect.facebook.net
- http://connect.facebook.net
- http://cdnjs.cloudflare.com
- http://code.jquery.com
- http://localhost
(If no sites were selected, all sites were included by default.)
An included site must also be within one of the included contexts for its data to be included in the report.
Risk levels
Included: High, Medium, Low, Informational
Excluded: None
Confidence levels
Included: User Confirmed, High, Medium, Low
Excluded: User Confirmed, High, Medium, Low, False Positive
Summaries
Alert counts by risk and confidence
| Confidence | ||||||
|---|---|---|---|---|---|---|
| User Confirmed | High | Medium | Low | Total | ||
| Risk | High | 0 (0.0%) |
0 (0.0%) |
1 (1.4%) |
0 (0.0%) |
1 (1.4%) |
| Medium | 0 (0.0%) |
6 (8.7%) |
5 (7.2%) |
1 (1.4%) |
12 (17.4%) |
|
| Low | 0 (0.0%) |
1 (1.4%) |
6 (8.7%) |
1 (1.4%) |
8 (11.6%) |
|
| Informational | 0 (0.0%) |
6 (8.7%) |
37 (53.6%) |
5 (7.2%) |
48 (69.6%) |
|
| Total | 0 (0.0%) |
13 (18.8%) |
49 (71.0%) |
7 (10.1%) |
69 (100%) |
|
Alert counts by site and risk
| Risk | |||||
|---|---|---|---|---|---|
|
High (= High) |
Medium (>= Medium) |
Low (>= Low) |
Informational (>= Informational) |
||
| Site | https://connect.facebook.net | 0 (0) |
0 (0) |
0 (0) |
1 (1) |
| http://cdnjs.cloudflare.com | 0 (0) |
0 (0) |
0 (0) |
2 (2) |
|
| http://code.jquery.com | 0 (0) |
1 (1) |
0 (1) |
3 (4) |
|
| http://localhost | 1 (1) |
11 (12) |
8 (20) |
42 (62) |
|
Alert counts by alert type
Alerts
-
Risk=High, Confidence=Medium (1)
-
http://localhost (1)
-
Vulnerable JS Library (1)
GET http://localhost/phpmyadmin/doc/html/_static/underscore.js
Alert tags Alert description The identified library underscore.js, version 1.9.1 is vulnerable.
Other info CVE-2021-23358
Request Request line and header section (384 bytes)
GET http://localhost/phpmyadmin/doc/html/_static/underscore.js HTTP/1.1 host: localhost user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 pragma: no-cache cache-control: no-cache referer: http://localhost/phpmyadmin/doc/html/index.html Cookie: pma_lang=en; phpMyAdmin=610f86c60f00a8f4dc92fe660c217e62Request body (0 bytes)
Response Status line and header section (300 bytes)
HTTP/1.1 200 OK Date: Sat, 19 Apr 2025 15:17:49 GMT Server: Apache/2.4.54 (Unix) OpenSSL/1.1.1s PHP/7.4.33 mod_perl/2.0.12 Perl/v5.34.1 Last-Modified: Wed, 11 May 2022 04:39:14 GMT ETag: "e601-5deb505f5e080" Accept-Ranges: bytes Content-Length: 58881 Content-Type: application/x-javascriptResponse body (58881 bytes)
// Underscore.js 1.9.1 // http://underscorejs.org // (c) 2009-2018 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors // Underscore may be freely distributed under the MIT license. (function() { // Baseline setup // -------------- // Establish the root object, `window` (`self`) in the browser, `global` // on the server, or `this` in some virtual machines. We use `self` // instead of `window` for `WebWorker` support. var root = typeof self == 'object' && self.self === self && self || typeof global == 'object' && global.global === global && global || this || {}; // Save the previous value of the `_` variable. var previousUnderscore = root._; // Save bytes in the minified (but not gzipped) version: var ArrayProto = Array.prototype, ObjProto = Object.prototype; var SymbolProto = typeof Symbol !== 'undefined' ? Symbol.prototype : null; // Create quick reference variables for speed access to core prototypes. var push = ArrayProto.push, slice = ArrayProto.slice, toString = ObjProto.toString, hasOwnProperty = ObjProto.hasOwnProperty; // All **ECMAScript 5** native function implementations that we hope to use // are declared here. var nativeIsArray = Array.isArray, nativeKeys = Object.keys, nativeCreate = Object.create; // Naked function reference for surrogate-prototype-swapping. var Ctor = function(){}; // Create a safe reference to the Underscore object for use below. var _ = function(obj) { if (obj instanceof _) return obj; if (!(this instanceof _)) return new _(obj); this._wrapped = obj; }; // Export the Underscore object for **Node.js**, with // backwards-compatibility for their old module API. If we're in // the browser, add `_` as a global object. // (`nodeType` is checked to ensure that `module` // and `exports` are not HTML elements.) if (typeof exports != 'undefined' && !exports.nodeType) { if (typeof module != 'undefined' && !module.nodeType && module.exports) { exports = module.exports = _; } exports._ = _; } else { root._ = _; } // Current version. _.VERSION = '1.9.1'; // Internal function that returns an efficient (for current engines) version // of the passed-in callback, to be repeatedly applied in other Underscore // functions. var optimizeCb = function(func, context, argCount) { if (context === void 0) return func; switch (argCount == null ? 3 : argCount) { case 1: return function(value) { return func.call(context, value); }; // The 2-argument case is omitted because we’re not using it. case 3: return function(value, index, collection) { return func.call(context, value, index, collection); }; case 4: return function(accumulator, value, index, collection) { return func.call(context, accumulator, value, index, collection); }; } return function() { return func.apply(context, arguments); }; }; var builtinIteratee; // An internal function to generate callbacks that can be applied to each // element in a collection, returning the desired result — either `identity`, // an arbitrary callback, a property matcher, or a property accessor. var cb = function(value, context, argCount) { if (_.iteratee !== builtinIteratee) return _.iteratee(value, context); if (value == null) return _.identity; if (_.isFunction(value)) return optimizeCb(value, context, argCount); if (_.isObject(value) && !_.isArray(value)) return _.matcher(value); return _.property(value); }; // External wrapper for our callback generator. Users may customize // `_.iteratee` if they want additional predicate/iteratee shorthand styles. // This abstraction hides the internal-only argCount argument. _.iteratee = builtinIteratee = function(value, context) { return cb(value, context, Infinity); }; // Some functions take a variable number of arguments, or a few expected // arguments at the beginning and then a variable number of values to operate // on. This helper accumulates all remaining arguments past the function’s // argument length (or an explicit `startIndex`), into an array that becomes // the last argument. Similar to ES6’s "rest parameter". var restArguments = function(func, startIndex) { startIndex = startIndex == null ? func.length - 1 : +startIndex; return function() { var length = Math.max(arguments.length - startIndex, 0), rest = Array(length), index = 0; for (; index < length; index++) { rest[index] = arguments[index + startIndex]; } switch (startIndex) { case 0: return func.call(this, rest); case 1: return func.call(this, arguments[0], rest); case 2: return func.call(this, arguments[0], arguments[1], rest); } var args = Array(startIndex + 1); for (index = 0; index < startIndex; index++) { args[index] = arguments[index]; } args[startIndex] = rest; return func.apply(this, args); }; }; // An internal function for creating a new object that inherits from another. var baseCreate = function(prototype) { if (!_.isObject(prototype)) return {}; if (nativeCreate) return nativeCreate(prototype); Ctor.prototype = prototype; var result = new Ctor; Ctor.prototype = null; return result; }; var shallowProperty = function(key) { return function(obj) { return obj == null ? void 0 : obj[key]; }; }; var has = function(obj, path) { return obj != null && hasOwnProperty.call(obj, path); } var deepGet = function(obj, path) { var length = path.length; for (var i = 0; i < length; i++) { if (obj == null) return void 0; obj = obj[path[i]]; } return length ? obj : void 0; }; // Helper for collection methods to determine whether a collection // should be iterated as an array or as an object. // Related: http://people.mozilla.org/~jorendorff/es6-draft.html#sec-tolength // Avoids a very nasty iOS 8 JIT bug on ARM-64. #2094 var MAX_ARRAY_INDEX = Math.pow(2, 53) - 1; var getLength = shallowProperty('length'); var isArrayLike = function(collection) { var length = getLength(collection); return typeof length == 'number' && length >= 0 && length <= MAX_ARRAY_INDEX; }; // Collection Functions // -------------------- // The cornerstone, an `each` implementation, aka `forEach`. // Handles raw objects in addition to array-likes. Treats all // sparse array-likes as if they were dense. _.each = _.forEach = function(obj, iteratee, context) { iteratee = optimizeCb(iteratee, context); var i, length; if (isArrayLike(obj)) { for (i = 0, length = obj.length; i < length; i++) { iteratee(obj[i], i, obj); } } else { var keys = _.keys(obj); for (i = 0, length = keys.length; i < length; i++) { iteratee(obj[keys[i]], keys[i], obj); } } return obj; }; // Return the results of applying the iteratee to each element. _.map = _.collect = function(obj, iteratee, context) { iteratee = cb(iteratee, context); var keys = !isArrayLike(obj) && _.keys(obj), length = (keys || obj).length, results = Array(length); for (var index = 0; index < length; index++) { var currentKey = keys ? keys[index] : index; results[index] = iteratee(obj[currentKey], currentKey, obj); } return results; }; // Create a reducing function iterating left or right. var createReduce = function(dir) { // Wrap code that reassigns argument variables in a separate function than // the one that accesses `arguments.length` to avoid a perf hit. (#1991) var reducer = function(obj, iteratee, memo, initial) { var keys = !isArrayLike(obj) && _.keys(obj), length = (keys || obj).length, index = dir > 0 ? 0 : length - 1; if (!initial) { memo = obj[keys ? keys[index] : index]; index += dir; } for (; index >= 0 && index < length; index += dir) { var currentKey = keys ? keys[index] : index; memo = iteratee(memo, obj[currentKey], currentKey, obj); } return memo; }; return function(obj, iteratee, memo, context) { var initial = arguments.length >= 3; return reducer(obj, optimizeCb(iteratee, context, 4), memo, initial); }; }; // **Reduce** builds up a single result from a list of values, aka `inject`, // or `foldl`. _.reduce = _.foldl = _.inject = createReduce(1); // The right-associative version of reduce, also known as `foldr`. _.reduceRight = _.foldr = createReduce(-1); // Return the first value which passes a truth test. Aliased as `detect`. _.find = _.detect = function(obj, predicate, context) { var keyFinder = isArrayLike(obj) ? _.findIndex : _.findKey; var key = keyFinder(obj, predicate, context); if (key !== void 0 && key !== -1) return obj[key]; }; // Return all the elements that pass a truth test. // Aliased as `select`. _.filter = _.select = function(obj, predicate, context) { var results = []; predicate = cb(predicate, context); _.each(obj, function(value, index, list) { if (predicate(value, index, list)) results.push(value); }); return results; }; // Return all the elements for which a truth test fails. _.reject = function(obj, predicate, context) { return _.filter(obj, _.negate(cb(predicate)), context); }; // Determine whether all of the elements match a truth test. // Aliased as `all`. _.every = _.all = function(obj, predicate, context) { predicate = cb(predicate, context); var keys = !isArrayLike(obj) && _.keys(obj), length = (keys || obj).length; for (var index = 0; index < length; index++) { var currentKey = keys ? keys[index] : index; if (!predicate(obj[currentKey], currentKey, obj)) return false; } return true; }; // Determine if at least one element in the object matches a truth test. // Aliased as `any`. _.some = _.any = function(obj, predicate, context) { predicate = cb(predicate, context); var keys = !isArrayLike(obj) && _.keys(obj), length = (keys || obj).length; for (var index = 0; index < length; index++) { var currentKey = keys ? keys[index] : index; if (predicate(obj[currentKey], currentKey, obj)) return true; } return false; }; // Determine if the array or object contains a given item (using `===`). // Aliased as `includes` and `include`. _.contains = _.includes = _.include = function(obj, item, fromIndex, guard) { if (!isArrayLike(obj)) obj = _.values(obj); if (typeof fromIndex != 'number' || guard) fromIndex = 0; return _.indexOf(obj, item, fromIndex) >= 0; }; // Invoke a method (with arguments) on every item in a collection. _.invoke = restArguments(function(obj, path, args) { var contextPath, func; if (_.isFunction(path)) { func = path; } else if (_.isArray(path)) { contextPath = path.slice(0, -1); path = path[path.length - 1]; } return _.map(obj, function(context) { var method = func; if (!method) { if (contextPath && contextPath.length) { context = deepGet(context, contextPath); } if (context == null) return void 0; method = context[path]; } return method == null ? method : method.apply(context, args); }); }); // Convenience version of a common use case of `map`: fetching a property. _.pluck = function(obj, key) { return _.map(obj, _.property(key)); }; // Convenience version of a common use case of `filter`: selecting only objects // containing specific `key:value` pairs. _.where = function(obj, attrs) { return _.filter(obj, _.matcher(attrs)); }; // Convenience version of a common use case of `find`: getting the first object // containing specific `key:value` pairs. _.findWhere = function(obj, attrs) { return _.find(obj, _.matcher(attrs)); }; // Return the maximum element (or element-based computation). _.max = function(obj, iteratee, context) { var result = -Infinity, lastComputed = -Infinity, value, computed; if (iteratee == null || typeof iteratee == 'number' && typeof obj[0] != 'object' && obj != null) { obj = isArrayLike(obj) ? obj : _.values(obj); for (var i = 0, length = obj.length; i < length; i++) { value = obj[i]; if (value != null && value > result) { result = value; } } } else { iteratee = cb(iteratee, context); _.each(obj, function(v, index, list) { computed = iteratee(v, index, list); if (computed > lastComputed || computed === -Infinity && result === -Infinity) { result = v; lastComputed = computed; } }); } return result; }; // Return the minimum element (or element-based computation). _.min = function(obj, iteratee, context) { var result = Infinity, lastComputed = Infinity, value, computed; if (iteratee == null || typeof iteratee == 'number' && typeof obj[0] != 'object' && obj != null) { obj = isArrayLike(obj) ? obj : _.values(obj); for (var i = 0, length = obj.length; i < length; i++) { value = obj[i]; if (value != null && value < result) { result = value; } } } else { iteratee = cb(iteratee, context); _.each(obj, function(v, index, list) { computed = iteratee(v, index, list); if (computed < lastComputed || computed === Infinity && result === Infinity) { result = v; lastComputed = computed; } }); } return result; }; // Shuffle a collection. _.shuffle = function(obj) { return _.sample(obj, Infinity); }; // Sample **n** random values from a collection using the modern version of the // [Fisher-Yates shuffle](http://en.wikipedia.org/wiki/Fisher–Yates_shuffle). // If **n** is not specified, returns a single random element. // The internal `guard` argument allows it to work with `map`. _.sample = function(obj, n, guard) { if (n == null || guard) { if (!isArrayLike(obj)) obj = _.values(obj); return obj[_.random(obj.length - 1)]; } var sample = isArrayLike(obj) ? _.clone(obj) : _.values(obj); var length = getLength(sample); n = Math.max(Math.min(n, length), 0); var last = length - 1; for (var index = 0; index < n; index++) { var rand = _.random(index, last); var temp = sample[index]; sample[index] = sample[rand]; sample[rand] = temp; } return sample.slice(0, n); }; // Sort the object's values by a criterion produced by an iteratee. _.sortBy = function(obj, iteratee, context) { var index = 0; iteratee = cb(iteratee, context); return _.pluck(_.map(obj, function(value, key, list) { return { value: value, index: index++, criteria: iteratee(value, key, list) }; }).sort(function(left, right) { var a = left.criteria; var b = right.criteria; if (a !== b) { if (a > b || a === void 0) return 1; if (a < b || b === void 0) return -1; } return left.index - right.index; }), 'value'); }; // An internal function used for aggregate "group by" operations. var group = function(behavior, partition) { return function(obj, iteratee, context) { var result = partition ? [[], []] : {}; iteratee = cb(iteratee, context); _.each(obj, function(value, index) { var key = iteratee(value, index, obj); behavior(result, value, key); }); return result; }; }; // Groups the object's values by a criterion. Pass either a string attribute // to group by, or a function that returns the criterion. _.groupBy = group(function(result, value, key) { if (has(result, key)) result[key].push(value); else result[key] = [value]; }); // Indexes the object's values by a criterion, similar to `groupBy`, but for // when you know that your index values will be unique. _.indexBy = group(function(result, value, key) { result[key] = value; }); // Counts instances of an object that group by a certain criterion. Pass // either a string attribute to count by, or a function that returns the // criterion. _.countBy = group(function(result, value, key) { if (has(result, key)) result[key]++; else result[key] = 1; }); var reStrSymbol = /[^\ud800-\udfff]|[\ud800-\udbff][\udc00-\udfff]|[\ud800-\udfff]/g; // Safely create a real, live array from anything iterable. _.toArray = function(obj) { if (!obj) return []; if (_.isArray(obj)) return slice.call(obj); if (_.isString(obj)) { // Keep surrogate pair characters together return obj.match(reStrSymbol); } if (isArrayLike(obj)) return _.map(obj, _.identity); return _.values(obj); }; // Return the number of elements in an object. _.size = function(obj) { if (obj == null) return 0; return isArrayLike(obj) ? obj.length : _.keys(obj).length; }; // Split a collection into two arrays: one whose elements all satisfy the given // predicate, and one whose elements all do not satisfy the predicate. _.partition = group(function(result, value, pass) { result[pass ? 0 : 1].push(value); }, true); // Array Functions // --------------- // Get the first element of an array. Passing **n** will return the first N // values in the array. Aliased as `head` and `take`. The **guard** check // allows it to work with `_.map`. _.first = _.head = _.take = function(array, n, guard) { if (array == null || array.length < 1) return n == null ? void 0 : []; if (n == null || guard) return array[0]; return _.initial(array, array.length - n); }; // Returns everything but the last entry of the array. Especially useful on // the arguments object. Passing **n** will return all the values in // the array, excluding the last N. _.initial = function(array, n, guard) { return slice.call(array, 0, Math.max(0, array.length - (n == null || guard ? 1 : n))); }; // Get the last element of an array. Passing **n** will return the last N // values in the array. _.last = function(array, n, guard) { if (array == null || array.length < 1) return n == null ? void 0 : []; if (n == null || guard) return array[array.length - 1]; return _.rest(array, Math.max(0, array.length - n)); }; // Returns everything but the first entry of the array. Aliased as `tail` and `drop`. // Especially useful on the arguments object. Passing an **n** will return // the rest N values in the array. _.rest = _.tail = _.drop = function(array, n, guard) { return slice.call(array, n == null || guard ? 1 : n); }; // Trim out all falsy values from an array. _.compact = function(array) { return _.filter(array, Boolean); }; // Internal implementation of a recursive `flatten` function. var flatten = function(input, shallow, strict, output) { output = output || []; var idx = output.length; for (var i = 0, length = getLength(input); i < length; i++) { var value = input[i]; if (isArrayLike(value) && (_.isArray(value) || _.isArguments(value))) { // Flatten current level of array or arguments object. if (shallow) { var j = 0, len = value.length; while (j < len) output[idx++] = value[j++]; } else { flatten(value, shallow, strict, output); idx = output.length; } } else if (!strict) { output[idx++] = value; } } return output; }; // Flatten out an array, either recursively (by default), or just one level. _.flatten = function(array, shallow) { return flatten(array, shallow, false); }; // Return a version of the array that does not contain the specified value(s). _.without = restArguments(function(array, otherArrays) { return _.difference(array, otherArrays); }); // Produce a duplicate-free version of the array. If the array has already // been sorted, you have the option of using a faster algorithm. // The faster algorithm will not work with an iteratee if the iteratee // is not a one-to-one function, so providing an iteratee will disable // the faster algorithm. // Aliased as `unique`. _.uniq = _.unique = function(array, isSorted, iteratee, context) { if (!_.isBoolean(isSorted)) { context = iteratee; iteratee = isSorted; isSorted = false; } if (iteratee != null) iteratee = cb(iteratee, context); var result = []; var seen = []; for (var i = 0, length = getLength(array); i < length; i++) { var value = array[i], computed = iteratee ? iteratee(value, i, array) : value; if (isSorted && !iteratee) { if (!i || seen !== computed) result.push(value); seen = computed; } else if (iteratee) { if (!_.contains(seen, computed)) { seen.push(computed); result.push(value); } } else if (!_.contains(result, value)) { result.push(value); } } return result; }; // Produce an array that contains the union: each distinct element from all of // the passed-in arrays. _.union = restArguments(function(arrays) { return _.uniq(flatten(arrays, true, true)); }); // Produce an array that contains every item shared between all the // passed-in arrays. _.intersection = function(array) { var result = []; var argsLength = arguments.length; for (var i = 0, length = getLength(array); i < length; i++) { var item = array[i]; if (_.contains(result, item)) continue; var j; for (j = 1; j < argsLength; j++) { if (!_.contains(arguments[j], item)) break; } if (j === argsLength) result.push(item); } return result; }; // Take the difference between one array and a number of other arrays. // Only the elements present in just the first array will remain. _.difference = restArguments(function(array, rest) { rest = flatten(rest, true, true); return _.filter(array, function(value){ return !_.contains(rest, value); }); }); // Complement of _.zip. Unzip accepts an array of arrays and groups // each array's elements on shared indices. _.unzip = function(array) { var length = array && _.max(array, getLength).length || 0; var result = Array(length); for (var index = 0; index < length; index++) { result[index] = _.pluck(array, index); } return result; }; // Zip together multiple lists into a single array -- elements that share // an index go together. _.zip = restArguments(_.unzip); // Converts lists into objects. Pass either a single array of `[key, value]` // pairs, or two parallel arrays of the same length -- one of keys, and one of // the corresponding values. Passing by pairs is the reverse of _.pairs. _.object = function(list, values) { var result = {}; for (var i = 0, length = getLength(list); i < length; i++) { if (values) { result[list[i]] = values[i]; } else { result[list[i][0]] = list[i][1]; } } return result; }; // Generator function to create the findIndex and findLastIndex functions. var createPredicateIndexFinder = function(dir) { return function(array, predicate, context) { predicate = cb(predicate, context); var length = getLength(array); var index = dir > 0 ? 0 : length - 1; for (; index >= 0 && index < length; index += dir) { if (predicate(array[index], index, array)) return index; } return -1; }; }; // Returns the first index on an array-like that passes a predicate test. _.findIndex = createPredicateIndexFinder(1); _.findLastIndex = createPredicateIndexFinder(-1); // Use a comparator function to figure out the smallest index at which // an object should be inserted so as to maintain order. Uses binary search. _.sortedIndex = function(array, obj, iteratee, context) { iteratee = cb(iteratee, context, 1); var value = iteratee(obj); var low = 0, high = getLength(array); while (low < high) { var mid = Math.floor((low + high) / 2); if (iteratee(array[mid]) < value) low = mid + 1; else high = mid; } return low; }; // Generator function to create the indexOf and lastIndexOf functions. var createIndexFinder = function(dir, predicateFind, sortedIndex) { return function(array, item, idx) { var i = 0, length = getLength(array); if (typeof idx == 'number') { if (dir > 0) { i = idx >= 0 ? idx : Math.max(idx + length, i); } else { length = idx >= 0 ? Math.min(idx + 1, length) : idx + length + 1; } } else if (sortedIndex && idx && length) { idx = sortedIndex(array, item); return array[idx] === item ? idx : -1; } if (item !== item) { idx = predicateFind(slice.call(array, i, length), _.isNaN); return idx >= 0 ? idx + i : -1; } for (idx = dir > 0 ? i : length - 1; idx >= 0 && idx < length; idx += dir) { if (array[idx] === item) return idx; } return -1; }; }; // Return the position of the first occurrence of an item in an array, // or -1 if the item is not included in the array. // If the array is large and already in sort order, pass `true` // for **isSorted** to use binary search. _.indexOf = createIndexFinder(1, _.findIndex, _.sortedIndex); _.lastIndexOf = createIndexFinder(-1, _.findLastIndex); // Generate an integer Array containing an arithmetic progression. A port of // the native Python `range()` function. See // [the Python documentation](http://docs.python.org/library/functions.html#range). _.range = function(start, stop, step) { if (stop == null) { stop = start || 0; start = 0; } if (!step) { step = stop < start ? -1 : 1; } var length = Math.max(Math.ceil((stop - start) / step), 0); var range = Array(length); for (var idx = 0; idx < length; idx++, start += step) { range[idx] = start; } return range; }; // Chunk a single array into multiple arrays, each containing `count` or fewer // items. _.chunk = function(array, count) { if (count == null || count < 1) return []; var result = []; var i = 0, length = array.length; while (i < length) { result.push(slice.call(array, i, i += count)); } return result; }; // Function (ahem) Functions // ------------------ // Determines whether to execute a function as a constructor // or a normal function with the provided arguments. var executeBound = function(sourceFunc, boundFunc, context, callingContext, args) { if (!(callingContext instanceof boundFunc)) return sourceFunc.apply(context, args); var self = baseCreate(sourceFunc.prototype); var result = sourceFunc.apply(self, args); if (_.isObject(result)) return result; return self; }; // Create a function bound to a given object (assigning `this`, and arguments, // optionally). Delegates to **ECMAScript 5**'s native `Function.bind` if // available. _.bind = restArguments(function(func, context, args) { if (!_.isFunction(func)) throw new TypeError('Bind must be called on a function'); var bound = restArguments(function(callArgs) { return executeBound(func, bound, context, this, args.concat(callArgs)); }); return bound; }); // Partially apply a function by creating a version that has had some of its // arguments pre-filled, without changing its dynamic `this` context. _ acts // as a placeholder by default, allowing any combination of arguments to be // pre-filled. Set `_.partial.placeholder` for a custom placeholder argument. _.partial = restArguments(function(func, boundArgs) { var placeholder = _.partial.placeholder; var bound = function() { var position = 0, length = boundArgs.length; var args = Array(length); for (var i = 0; i < length; i++) { args[i] = boundArgs[i] === placeholder ? arguments[position++] : boundArgs[i]; } while (position < arguments.length) args.push(arguments[position++]); return executeBound(func, bound, this, this, args); }; return bound; }); _.partial.placeholder = _; // Bind a number of an object's methods to that object. Remaining arguments // are the method names to be bound. Useful for ensuring that all callbacks // defined on an object belong to it. _.bindAll = restArguments(function(obj, keys) { keys = flatten(keys, false, false); var index = keys.length; if (index < 1) throw new Error('bindAll must be passed function names'); while (index--) { var key = keys[index]; obj[key] = _.bind(obj[key], obj); } }); // Memoize an expensive function by storing its results. _.memoize = function(func, hasher) { var memoize = function(key) { var cache = memoize.cache; var address = '' + (hasher ? hasher.apply(this, arguments) : key); if (!has(cache, address)) cache[address] = func.apply(this, arguments); return cache[address]; }; memoize.cache = {}; return memoize; }; // Delays a function for the given number of milliseconds, and then calls // it with the arguments supplied. _.delay = restArguments(function(func, wait, args) { return setTimeout(function() { return func.apply(null, args); }, wait); }); // Defers a function, scheduling it to run after the current call stack has // cleared. _.defer = _.partial(_.delay, _, 1); // Returns a function, that, when invoked, will only be triggered at most once // during a given window of time. Normally, the throttled function will run // as much as it can, without ever going more than once per `wait` duration; // but if you'd like to disable the execution on the leading edge, pass // `{leading: false}`. To disable execution on the trailing edge, ditto. _.throttle = function(func, wait, options) { var timeout, context, args, result; var previous = 0; if (!options) options = {}; var later = function() { previous = options.leading === false ? 0 : _.now(); timeout = null; result = func.apply(context, args); if (!timeout) context = args = null; }; var throttled = function() { var now = _.now(); if (!previous && options.leading === false) previous = now; var remaining = wait - (now - previous); context = this; args = arguments; if (remaining <= 0 || remaining > wait) { if (timeout) { clearTimeout(timeout); timeout = null; } previous = now; result = func.apply(context, args); if (!timeout) context = args = null; } else if (!timeout && options.trailing !== false) { timeout = setTimeout(later, remaining); } return result; }; throttled.cancel = function() { clearTimeout(timeout); previous = 0; timeout = context = args = null; }; return throttled; }; // Returns a function, that, as long as it continues to be invoked, will not // be triggered. The function will be called after it stops being called for // N milliseconds. If `immediate` is passed, trigger the function on the // leading edge, instead of the trailing. _.debounce = function(func, wait, immediate) { var timeout, result; var later = function(context, args) { timeout = null; if (args) result = func.apply(context, args); }; var debounced = restArguments(function(args) { if (timeout) clearTimeout(timeout); if (immediate) { var callNow = !timeout; timeout = setTimeout(later, wait); if (callNow) result = func.apply(this, args); } else { timeout = _.delay(later, wait, this, args); } return result; }); debounced.cancel = function() { clearTimeout(timeout); timeout = null; }; return debounced; }; // Returns the first function passed as an argument to the second, // allowing you to adjust arguments, run code before and after, and // conditionally execute the original function. _.wrap = function(func, wrapper) { return _.partial(wrapper, func); }; // Returns a negated version of the passed-in predicate. _.negate = function(predicate) { return function() { return !predicate.apply(this, arguments); }; }; // Returns a function that is the composition of a list of functions, each // consuming the return value of the function that follows. _.compose = function() { var args = arguments; var start = args.length - 1; return function() { var i = start; var result = args[start].apply(this, arguments); while (i--) result = args[i].call(this, result); return result; }; }; // Returns a function that will only be executed on and after the Nth call. _.after = function(times, func) { return function() { if (--times < 1) { return func.apply(this, arguments); } }; }; // Returns a function that will only be executed up to (but not including) the Nth call. _.before = function(times, func) { var memo; return function() { if (--times > 0) { memo = func.apply(this, arguments); } if (times <= 1) func = null; return memo; }; }; // Returns a function that will be executed at most one time, no matter how // often you call it. Useful for lazy initialization. _.once = _.partial(_.before, 2); _.restArguments = restArguments; // Object Functions // ---------------- // Keys in IE < 9 that won't be iterated by `for key in ...` and thus missed. var hasEnumBug = !{toString: null}.propertyIsEnumerable('toString'); var nonEnumerableProps = ['valueOf', 'isPrototypeOf', 'toString', 'propertyIsEnumerable', 'hasOwnProperty', 'toLocaleString']; var collectNonEnumProps = function(obj, keys) { var nonEnumIdx = nonEnumerableProps.length; var constructor = obj.constructor; var proto = _.isFunction(constructor) && constructor.prototype || ObjProto; // Constructor is a special case. var prop = 'constructor'; if (has(obj, prop) && !_.contains(keys, prop)) keys.push(prop); while (nonEnumIdx--) { prop = nonEnumerableProps[nonEnumIdx]; if (prop in obj && obj[prop] !== proto[prop] && !_.contains(keys, prop)) { keys.push(prop); } } }; // Retrieve the names of an object's own properties. // Delegates to **ECMAScript 5**'s native `Object.keys`. _.keys = function(obj) { if (!_.isObject(obj)) return []; if (nativeKeys) return nativeKeys(obj); var keys = []; for (var key in obj) if (has(obj, key)) keys.push(key); // Ahem, IE < 9. if (hasEnumBug) collectNonEnumProps(obj, keys); return keys; }; // Retrieve all the property names of an object. _.allKeys = function(obj) { if (!_.isObject(obj)) return []; var keys = []; for (var key in obj) keys.push(key); // Ahem, IE < 9. if (hasEnumBug) collectNonEnumProps(obj, keys); return keys; }; // Retrieve the values of an object's properties. _.values = function(obj) { var keys = _.keys(obj); var length = keys.length; var values = Array(length); for (var i = 0; i < length; i++) { values[i] = obj[keys[i]]; } return values; }; // Returns the results of applying the iteratee to each element of the object. // In contrast to _.map it returns an object. _.mapObject = function(obj, iteratee, context) { iteratee = cb(iteratee, context); var keys = _.keys(obj), length = keys.length, results = {}; for (var index = 0; index < length; index++) { var currentKey = keys[index]; results[currentKey] = iteratee(obj[currentKey], currentKey, obj); } return results; }; // Convert an object into a list of `[key, value]` pairs. // The opposite of _.object. _.pairs = function(obj) { var keys = _.keys(obj); var length = keys.length; var pairs = Array(length); for (var i = 0; i < length; i++) { pairs[i] = [keys[i], obj[keys[i]]]; } return pairs; }; // Invert the keys and values of an object. The values must be serializable. _.invert = function(obj) { var result = {}; var keys = _.keys(obj); for (var i = 0, length = keys.length; i < length; i++) { result[obj[keys[i]]] = keys[i]; } return result; }; // Return a sorted list of the function names available on the object. // Aliased as `methods`. _.functions = _.methods = function(obj) { var names = []; for (var key in obj) { if (_.isFunction(obj[key])) names.push(key); } return names.sort(); }; // An internal function for creating assigner functions. var createAssigner = function(keysFunc, defaults) { return function(obj) { var length = arguments.length; if (defaults) obj = Object(obj); if (length < 2 || obj == null) return obj; for (var index = 1; index < length; index++) { var source = arguments[index], keys = keysFunc(source), l = keys.length; for (var i = 0; i < l; i++) { var key = keys[i]; if (!defaults || obj[key] === void 0) obj[key] = source[key]; } } return obj; }; }; // Extend a given object with all the properties in passed-in object(s). _.extend = createAssigner(_.allKeys); // Assigns a given object with all the own properties in the passed-in object(s). // (https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object/assign) _.extendOwn = _.assign = createAssigner(_.keys); // Returns the first key on an object that passes a predicate test. _.findKey = function(obj, predicate, context) { predicate = cb(predicate, context); var keys = _.keys(obj), key; for (var i = 0, length = keys.length; i < length; i++) { key = keys[i]; if (predicate(obj[key], key, obj)) return key; } }; // Internal pick helper function to determine if `obj` has key `key`. var keyInObj = function(value, key, obj) { return key in obj; }; // Return a copy of the object only containing the whitelisted properties. _.pick = restArguments(function(obj, keys) { var result = {}, iteratee = keys[0]; if (obj == null) return result; if (_.isFunction(iteratee)) { if (keys.length > 1) iteratee = optimizeCb(iteratee, keys[1]); keys = _.allKeys(obj); } else { iteratee = keyInObj; keys = flatten(keys, false, false); obj = Object(obj); } for (var i = 0, length = keys.length; i < length; i++) { var key = keys[i]; var value = obj[key]; if (iteratee(value, key, obj)) result[key] = value; } return result; }); // Return a copy of the object without the blacklisted properties. _.omit = restArguments(function(obj, keys) { var iteratee = keys[0], context; if (_.isFunction(iteratee)) { iteratee = _.negate(iteratee); if (keys.length > 1) context = keys[1]; } else { keys = _.map(flatten(keys, false, false), String); iteratee = function(value, key) { return !_.contains(keys, key); }; } return _.pick(obj, iteratee, context); }); // Fill in a given object with default properties. _.defaults = createAssigner(_.allKeys, true); // Creates an object that inherits from the given prototype object. // If additional properties are provided then they will be added to the // created object. _.create = function(prototype, props) { var result = baseCreate(prototype); if (props) _.extendOwn(result, props); return result; }; // Create a (shallow-cloned) duplicate of an object. _.clone = function(obj) { if (!_.isObject(obj)) return obj; return _.isArray(obj) ? obj.slice() : _.extend({}, obj); }; // Invokes interceptor with the obj, and then returns obj. // The primary purpose of this method is to "tap into" a method chain, in // order to perform operations on intermediate results within the chain. _.tap = function(obj, interceptor) { interceptor(obj); return obj; }; // Returns whether an object has a given set of `key:value` pairs. _.isMatch = function(object, attrs) { var keys = _.keys(attrs), length = keys.length; if (object == null) return !length; var obj = Object(object); for (var i = 0; i < length; i++) { var key = keys[i]; if (attrs[key] !== obj[key] || !(key in obj)) return false; } return true; }; // Internal recursive comparison function for `isEqual`. var eq, deepEq; eq = function(a, b, aStack, bStack) { // Identical objects are equal. `0 === -0`, but they aren't identical. // See the [Harmony `egal` proposal](http://wiki.ecmascript.org/doku.php?id=harmony:egal). if (a === b) return a !== 0 || 1 / a === 1 / b; // `null` or `undefined` only equal to itself (strict comparison). if (a == null || b == null) return false; // `NaN`s are equivalent, but non-reflexive. if (a !== a) return b !== b; // Exhaust primitive checks var type = typeof a; if (type !== 'function' && type !== 'object' && typeof b != 'object') return false; return deepEq(a, b, aStack, bStack); }; // Internal recursive comparison function for `isEqual`. deepEq = function(a, b, aStack, bStack) { // Unwrap any wrapped objects. if (a instanceof _) a = a._wrapped; if (b instanceof _) b = b._wrapped; // Compare `[[Class]]` names. var className = toString.call(a); if (className !== toString.call(b)) return false; switch (className) { // Strings, numbers, regular expressions, dates, and booleans are compared by value. case '[object RegExp]': // RegExps are coerced to strings for comparison (Note: '' + /a/i === '/a/i') case '[object String]': // Primitives and their corresponding object wrappers are equivalent; thus, `"5"` is // equivalent to `new String("5")`. return '' + a === '' + b; case '[object Number]': // `NaN`s are equivalent, but non-reflexive. // Object(NaN) is equivalent to NaN. if (+a !== +a) return +b !== +b; // An `egal` comparison is performed for other numeric values. return +a === 0 ? 1 / +a === 1 / b : +a === +b; case '[object Date]': case '[object Boolean]': // Coerce dates and booleans to numeric primitive values. Dates are compared by their // millisecond representations. Note that invalid dates with millisecond representations // of `NaN` are not equivalent. return +a === +b; case '[object Symbol]': return SymbolProto.valueOf.call(a) === SymbolProto.valueOf.call(b); } var areArrays = className === '[object Array]'; if (!areArrays) { if (typeof a != 'object' || typeof b != 'object') return false; // Objects with different constructors are not equivalent, but `Object`s or `Array`s // from different frames are. var aCtor = a.constructor, bCtor = b.constructor; if (aCtor !== bCtor && !(_.isFunction(aCtor) && aCtor instanceof aCtor && _.isFunction(bCtor) && bCtor instanceof bCtor) && ('constructor' in a && 'constructor' in b)) { return false; } } // Assume equality for cyclic structures. The algorithm for detecting cyclic // structures is adapted from ES 5.1 section 15.12.3, abstract operation `JO`. // Initializing stack of traversed objects. // It's done here since we only need them for objects and arrays comparison. aStack = aStack || []; bStack = bStack || []; var length = aStack.length; while (length--) { // Linear search. Performance is inversely proportional to the number of // unique nested structures. if (aStack[length] === a) return bStack[length] === b; } // Add the first object to the stack of traversed objects. aStack.push(a); bStack.push(b); // Recursively compare objects and arrays. if (areArrays) { // Compare array lengths to determine if a deep comparison is necessary. length = a.length; if (length !== b.length) return false; // Deep compare the contents, ignoring non-numeric properties. while (length--) { if (!eq(a[length], b[length], aStack, bStack)) return false; } } else { // Deep compare objects. var keys = _.keys(a), key; length = keys.length; // Ensure that both objects contain the same number of properties before comparing deep equality. if (_.keys(b).length !== length) return false; while (length--) { // Deep compare each member key = keys[length]; if (!(has(b, key) && eq(a[key], b[key], aStack, bStack))) return false; } } // Remove the first object from the stack of traversed objects. aStack.pop(); bStack.pop(); return true; }; // Perform a deep comparison to check if two objects are equal. _.isEqual = function(a, b) { return eq(a, b); }; // Is a given array, string, or object empty? // An "empty" object has no enumerable own-properties. _.isEmpty = function(obj) { if (obj == null) return true; if (isArrayLike(obj) && (_.isArray(obj) || _.isString(obj) || _.isArguments(obj))) return obj.length === 0; return _.keys(obj).length === 0; }; // Is a given value a DOM element? _.isElement = function(obj) { return !!(obj && obj.nodeType === 1); }; // Is a given value an array? // Delegates to ECMA5's native Array.isArray _.isArray = nativeIsArray || function(obj) { return toString.call(obj) === '[object Array]'; }; // Is a given variable an object? _.isObject = function(obj) { var type = typeof obj; return type === 'function' || type === 'object' && !!obj; }; // Add some isType methods: isArguments, isFunction, isString, isNumber, isDate, isRegExp, isError, isMap, isWeakMap, isSet, isWeakSet. _.each(['Arguments', 'Function', 'String', 'Number', 'Date', 'RegExp', 'Error', 'Symbol', 'Map', 'WeakMap', 'Set', 'WeakSet'], function(name) { _['is' + name] = function(obj) { return toString.call(obj) === '[object ' + name + ']'; }; }); // Define a fallback version of the method in browsers (ahem, IE < 9), where // there isn't any inspectable "Arguments" type. if (!_.isArguments(arguments)) { _.isArguments = function(obj) { return has(obj, 'callee'); }; } // Optimize `isFunction` if appropriate. Work around some typeof bugs in old v8, // IE 11 (#1621), Safari 8 (#1929), and PhantomJS (#2236). var nodelist = root.document && root.document.childNodes; if (typeof /./ != 'function' && typeof Int8Array != 'object' && typeof nodelist != 'function') { _.isFunction = function(obj) { return typeof obj == 'function' || false; }; } // Is a given object a finite number? _.isFinite = function(obj) { return !_.isSymbol(obj) && isFinite(obj) && !isNaN(parseFloat(obj)); }; // Is the given value `NaN`? _.isNaN = function(obj) { return _.isNumber(obj) && isNaN(obj); }; // Is a given value a boolean? _.isBoolean = function(obj) { return obj === true || obj === false || toString.call(obj) === '[object Boolean]'; }; // Is a given value equal to null? _.isNull = function(obj) { return obj === null; }; // Is a given variable undefined? _.isUndefined = function(obj) { return obj === void 0; }; // Shortcut function for checking if an object has a given property directly // on itself (in other words, not on a prototype). _.has = function(obj, path) { if (!_.isArray(path)) { return has(obj, path); } var length = path.length; for (var i = 0; i < length; i++) { var key = path[i]; if (obj == null || !hasOwnProperty.call(obj, key)) { return false; } obj = obj[key]; } return !!length; }; // Utility Functions // ----------------- // Run Underscore.js in *noConflict* mode, returning the `_` variable to its // previous owner. Returns a reference to the Underscore object. _.noConflict = function() { root._ = previousUnderscore; return this; }; // Keep the identity function around for default iteratees. _.identity = function(value) { return value; }; // Predicate-generating functions. Often useful outside of Underscore. _.constant = function(value) { return function() { return value; }; }; _.noop = function(){}; // Creates a function that, when passed an object, will traverse that object’s // properties down the given `path`, specified as an array of keys or indexes. _.property = function(path) { if (!_.isArray(path)) { return shallowProperty(path); } return function(obj) { return deepGet(obj, path); }; }; // Generates a function for a given object that returns a given property. _.propertyOf = function(obj) { if (obj == null) { return function(){}; } return function(path) { return !_.isArray(path) ? obj[path] : deepGet(obj, path); }; }; // Returns a predicate for checking whether an object has a given set of // `key:value` pairs. _.matcher = _.matches = function(attrs) { attrs = _.extendOwn({}, attrs); return function(obj) { return _.isMatch(obj, attrs); }; }; // Run a function **n** times. _.times = function(n, iteratee, context) { var accum = Array(Math.max(0, n)); iteratee = optimizeCb(iteratee, context, 1); for (var i = 0; i < n; i++) accum[i] = iteratee(i); return accum; }; // Return a random integer between min and max (inclusive). _.random = function(min, max) { if (max == null) { max = min; min = 0; } return min + Math.floor(Math.random() * (max - min + 1)); }; // A (possibly faster) way to get the current timestamp as an integer. _.now = Date.now || function() { return new Date().getTime(); }; // List of HTML entities for escaping. var escapeMap = { '&': '&', '<': '<', '>': '>', '"': '"', "'": ''', '`': '`' }; var unescapeMap = _.invert(escapeMap); // Functions for escaping and unescaping strings to/from HTML interpolation. var createEscaper = function(map) { var escaper = function(match) { return map[match]; }; // Regexes for identifying a key that needs to be escaped. var source = '(?:' + _.keys(map).join('|') + ')'; var testRegexp = RegExp(source); var replaceRegexp = RegExp(source, 'g'); return function(string) { string = string == null ? '' : '' + string; return testRegexp.test(string) ? string.replace(replaceRegexp, escaper) : string; }; }; _.escape = createEscaper(escapeMap); _.unescape = createEscaper(unescapeMap); // Traverses the children of `obj` along `path`. If a child is a function, it // is invoked with its parent as context. Returns the value of the final // child, or `fallback` if any child is undefined. _.result = function(obj, path, fallback) { if (!_.isArray(path)) path = [path]; var length = path.length; if (!length) { return _.isFunction(fallback) ? fallback.call(obj) : fallback; } for (var i = 0; i < length; i++) { var prop = obj == null ? void 0 : obj[path[i]]; if (prop === void 0) { prop = fallback; i = length; // Ensure we don't continue iterating. } obj = _.isFunction(prop) ? prop.call(obj) : prop; } return obj; }; // Generate a unique integer id (unique within the entire client session). // Useful for temporary DOM ids. var idCounter = 0; _.uniqueId = function(prefix) { var id = ++idCounter + ''; return prefix ? prefix + id : id; }; // By default, Underscore uses ERB-style template delimiters, change the // following template settings to use alternative delimiters. _.templateSettings = { evaluate: /<%([\s\S]+?)%>/g, interpolate: /<%=([\s\S]+?)%>/g, escape: /<%-([\s\S]+?)%>/g }; // When customizing `templateSettings`, if you don't want to define an // interpolation, evaluation or escaping regex, we need one that is // guaranteed not to match. var noMatch = /(.)^/; // Certain characters need to be escaped so that they can be put into a // string literal. var escapes = { "'": "'", '\\': '\\', '\r': 'r', '\n': 'n', '\u2028': 'u2028', '\u2029': 'u2029' }; var escapeRegExp = /\\|'|\r|\n|\u2028|\u2029/g; var escapeChar = function(match) { return '\\' + escapes[match]; }; // In order to prevent third-party code injection through // `_.templateSettings.variable`, we test it against the following regular // expression. It is intentionally a bit more liberal than just matching valid // identifiers, but still prevents possible loopholes through defaults or // destructuring assignment. var bareIdentifier = /^\s*(\w|\$)+\s*$/; // JavaScript micro-templating, similar to John Resig's implementation. // Underscore templating handles arbitrary delimiters, preserves whitespace, // and correctly escapes quotes within interpolated code. // NB: `oldSettings` only exists for backwards compatibility. _.template = function(text, settings, oldSettings) { if (!settings && oldSettings) settings = oldSettings; settings = _.defaults({}, settings, _.templateSettings); // Combine delimiters into one regular expression via alternation. var matcher = RegExp([ (settings.escape || noMatch).source, (settings.interpolate || noMatch).source, (settings.evaluate || noMatch).source ].join('|') + '|$', 'g'); // Compile the template source, escaping string literals appropriately. var index = 0; var source = "__p+='"; text.replace(matcher, function(match, escape, interpolate, evaluate, offset) { source += text.slice(index, offset).replace(escapeRegExp, escapeChar); index = offset + match.length; if (escape) { source += "'+\n((__t=(" + escape + "))==null?'':_.escape(__t))+\n'"; } else if (interpolate) { source += "'+\n((__t=(" + interpolate + "))==null?'':__t)+\n'"; } else if (evaluate) { source += "';\n" + evaluate + "\n__p+='"; } // Adobe VMs need the match returned to produce the correct offset. return match; }); source += "';\n"; var argument = settings.variable; if (argument) { // Insure against third-party code injection. if (!bareIdentifier.test(argument)) throw new Error( 'variable is not a bare identifier: ' + argument ); } else { // If a variable is not specified, place data values in local scope. source = 'with(obj||{}){\n' + source + '}\n'; argument = 'obj'; } source = "var __t,__p='',__j=Array.prototype.join," + "print=function(){__p+=__j.call(arguments,'');};\n" + source + 'return __p;\n'; var render; try { render = new Function(argument, '_', source); } catch (e) { e.source = source; throw e; } var template = function(data) { return render.call(this, data, _); }; // Provide the compiled source as a convenience for precompilation. template.source = 'function(' + argument + '){\n' + source + '}'; return template; }; // Add a "chain" function. Start chaining a wrapped Underscore object. _.chain = function(obj) { var instance = _(obj); instance._chain = true; return instance; }; // OOP // --------------- // If Underscore is called as a function, it returns a wrapped object that // can be used OO-style. This wrapper holds altered versions of all the // underscore functions. Wrapped objects may be chained. // Helper function to continue chaining intermediate results. var chainResult = function(instance, obj) { return instance._chain ? _(obj).chain() : obj; }; // Add your own custom functions to the Underscore object. _.mixin = function(obj) { _.each(_.functions(obj), function(name) { var func = _[name] = obj[name]; _.prototype[name] = function() { var args = [this._wrapped]; push.apply(args, arguments); return chainResult(this, func.apply(_, args)); }; }); return _; }; // Add all of the Underscore functions to the wrapper object. _.mixin(_); // Add all mutator Array functions to the wrapper. _.each(['pop', 'push', 'reverse', 'shift', 'sort', 'splice', 'unshift'], function(name) { var method = ArrayProto[name]; _.prototype[name] = function() { var obj = this._wrapped; method.apply(obj, arguments); if ((name === 'shift' || name === 'splice') && obj.length === 0) delete obj[0]; return chainResult(this, obj); }; }); // Add all accessor Array functions to the wrapper. _.each(['concat', 'join', 'slice'], function(name) { var method = ArrayProto[name]; _.prototype[name] = function() { return chainResult(this, method.apply(this._wrapped, arguments)); }; }); // Extracts the result from a wrapped and chained object. _.prototype.value = function() { return this._wrapped; }; // Provide unwrapping proxy for some methods used in engine operations // such as arithmetic and JSON stringification. _.prototype.valueOf = _.prototype.toJSON = _.prototype.value; _.prototype.toString = function() { return String(this._wrapped); }; // AMD registration happens at the end for compatibility with AMD loaders // that may not enforce next-turn semantics on modules. Even though general // practice for AMD registration is to be anonymous, underscore registers // as a named module because, like jQuery, it is a base library that is // popular enough to be bundled in a third party lib, but not be part of // an AMD load request. Those cases could generate an error when an // anonymous define() is called outside of a loader request. if (typeof define == 'function' && define.amd) { define('underscore', [], function() { return _; }); } }());Evidence // Underscore.js 1.9.1Solution Please upgrade to the latest version of underscore.js.
-
-
-
Risk=Medium, Confidence=High (6)
-
http://localhost (6)
-
CSP: Wildcard Directive (1)
GET http://localhost/phpmyadmin/
Alert tags Alert description Content Security Policy (CSP) is an added layer of security that helps to detect and mitigate certain types of attacks. Including (but not limited to) Cross Site Scripting (XSS), and data injection attacks. These attacks are used for everything from data theft to site defacement or distribution of malware. CSP provides a set of standard HTTP headers that allow website owners to declare approved sources of content that browsers should be allowed to load on that page — covered types are JavaScript, CSS, HTML frames, fonts, images and embeddable objects such as Java applets, ActiveX, audio and video files.
Other info The following directives either allow wildcard sources (or ancestors), are not defined, or are overly broadly defined:
frame-ancestors, form-action
The directive(s): frame-ancestors, form-action are among the directives that do not fallback to default-src, missing/excluding them is the same as allowing anything.
Request Request line and header section (268 bytes)
GET http://localhost/phpmyadmin/ HTTP/1.1 host: localhost user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 pragma: no-cache cache-control: no-cache referer: http://localhost/dashboard/Request body (0 bytes)
Response Status line and header section (1561 bytes)
HTTP/1.1 200 OK Date: Sat, 19 Apr 2025 15:17:44 GMT Server: Apache/2.4.54 (Unix) OpenSSL/1.1.1s PHP/7.4.33 mod_perl/2.0.12 Perl/v5.34.1 X-Powered-By: PHP/7.4.33 Set-Cookie: phpMyAdmin=610f86c60f00a8f4dc92fe660c217e62; path=/phpmyadmin/; HttpOnly; SameSite=Strict Expires: Sat, 19 Apr 2025 15:17:45 +0000 Cache-Control: no-store, no-cache, must-revalidate, pre-check=0, post-check=0, max-age=0 Last-Modified: Sat, 19 Apr 2025 15:17:45 +0000 Set-Cookie: phpMyAdmin=610f86c60f00a8f4dc92fe660c217e62; path=/phpmyadmin/; HttpOnly; SameSite=Strict Set-Cookie: pma_lang=en; expires=Mon, 19-May-2025 15:17:45 GMT; Max-Age=2592000; path=/phpmyadmin/; HttpOnly; SameSite=Strict X-ob_mode: 1 X-Frame-Options: DENY Referrer-Policy: no-referrer Content-Security-Policy: default-src 'self' ;script-src 'self' 'unsafe-inline' 'unsafe-eval' ;style-src 'self' 'unsafe-inline' ;img-src 'self' data: *.tile.openstreetmap.org;object-src 'none'; X-Content-Security-Policy: default-src 'self' ;options inline-script eval-script;referrer no-referrer;img-src 'self' data: *.tile.openstreetmap.org;object-src 'none'; X-WebKit-CSP: default-src 'self' ;script-src 'self' 'unsafe-inline' 'unsafe-eval';referrer no-referrer;style-src 'self' 'unsafe-inline' ;img-src 'self' data: *.tile.openstreetmap.org;object-src 'none'; X-XSS-Protection: 1; mode=block X-Content-Type-Options: nosniff X-Permitted-Cross-Domain-Policies: none X-Robots-Tag: noindex, nofollow Pragma: no-cache Vary: Accept-Encoding Content-Type: text/html; charset=utf-8 content-length: 145988Response body (145988 bytes)
<!doctype html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="referrer" content="no-referrer"> <meta name="robots" content="noindex,nofollow"> <style id="cfs-style">html{display: none;}</style> <link rel="icon" href="favicon.ico" type="image/x-icon"> <link rel="shortcut icon" href="favicon.ico" type="image/x-icon"> <link rel="stylesheet" type="text/css" href="./themes/pmahomme/jquery/jquery-ui.css"> <link rel="stylesheet" type="text/css" href="js/vendor/codemirror/lib/codemirror.css?v=5.2.0"> <link rel="stylesheet" type="text/css" href="js/vendor/codemirror/addon/hint/show-hint.css?v=5.2.0"> <link rel="stylesheet" type="text/css" href="js/vendor/codemirror/addon/lint/lint.css?v=5.2.0"> <link rel="stylesheet" type="text/css" href="./themes/pmahomme/css/theme.css?v=5.2.0"> <title>localhost / localhost | phpMyAdmin 5.2.0</title> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery.min.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery-migrate.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/sprintf.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/ajax.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/keyhandler.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery-ui.min.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/name-conflict-fixes.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/bootstrap/bootstrap.bundle.min.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/js.cookie.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery.validate.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery-ui-timepicker-addon.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery.debounce-1.0.6.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/menu_resizer.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/cross_framing_protection.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/messages.php?l=en&v=5.2.0&lang=en"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/config.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/doclinks.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/functions.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/navigation.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/indexes.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/common.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/page_settings.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/home.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/lib/codemirror.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/mode/sql/sql.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/addon/runmode/runmode.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/addon/hint/show-hint.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/addon/hint/sql-hint.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/addon/lint/lint.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/codemirror/addon/lint/sql-lint.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/tracekit.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/error_report.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/drag_drop_import.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/shortcuts_handler.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/console.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript"> // <![CDATA[ CommonParams.setAll({common_query:"lang=en",opendb_url:"index.php?route=/database/structure&lang=en",lang:"en",server:"1",table:"",db:"",token:"68796d444825575e6d2d604f364a4658",text_dir:"ltr",LimitChars:"50",pftext:"",confirm:true,LoginCookieValidity:"1440",session_gc_maxlifetime:"1440",logged_in:true,is_https:false,rootPath:"/phpmyadmin/",arg_separator:"&",version:"5.2.0",auth_type:"config",user:"root"}); var firstDayOfCalendar = '0'; var themeImagePath = '.\/themes\/pmahomme\/img\/'; var mysqlDocTemplate = '.\/url.php\u003Furl\u003Dhttps\u00253A\u00252F\u00252Fdev.mysql.com\u00252Fdoc\u00252Frefman\u00252F8.0\u00252Fen\u00252F\u002525s.html'; var maxInputVars = 1000; if ($.datepicker) { $.datepicker.regional[''].closeText = 'Done'; $.datepicker.regional[''].prevText = 'Prev'; $.datepicker.regional[''].nextText = 'Next'; $.datepicker.regional[''].currentText = 'Today'; $.datepicker.regional[''].monthNames = [ 'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December', ]; $.datepicker.regional[''].monthNamesShort = [ 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec', ]; $.datepicker.regional[''].dayNames = [ 'Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', ]; $.datepicker.regional[''].dayNamesShort = [ 'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', ]; $.datepicker.regional[''].dayNamesMin = [ 'Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa', ]; $.datepicker.regional[''].weekHeader = 'Wk'; $.datepicker.regional[''].showMonthAfterYear = false; $.datepicker.regional[''].yearSuffix = ''; $.extend($.datepicker._defaults, $.datepicker.regional['']); } if ($.timepicker) { $.timepicker.regional[''].timeText = 'Time'; $.timepicker.regional[''].hourText = 'Hour'; $.timepicker.regional[''].minuteText = 'Minute'; $.timepicker.regional[''].secondText = 'Second'; $.extend($.timepicker._defaults, $.timepicker.regional['']); } function extendingValidatorMessages () { $.extend($.validator.messages, { required: 'This\u0020field\u0020is\u0020required', remote: 'Please\u0020fix\u0020this\u0020field', email: 'Please\u0020enter\u0020a\u0020valid\u0020email\u0020address', url: 'Please\u0020enter\u0020a\u0020valid\u0020URL', date: 'Please\u0020enter\u0020a\u0020valid\u0020date', dateISO: 'Please\u0020enter\u0020a\u0020valid\u0020date\u0020\u0028\u0020ISO\u0020\u0029', number: 'Please\u0020enter\u0020a\u0020valid\u0020number', creditcard: 'Please\u0020enter\u0020a\u0020valid\u0020credit\u0020card\u0020number', digits: 'Please\u0020enter\u0020only\u0020digits', equalTo: 'Please\u0020enter\u0020the\u0020same\u0020value\u0020again', maxlength: $.validator.format('Please\u0020enter\u0020no\u0020more\u0020than\u0020\u007B0\u007D\u0020characters'), minlength: $.validator.format('Please\u0020enter\u0020at\u0020least\u0020\u007B0\u007D\u0020characters'), rangelength: $.validator.format('Please\u0020enter\u0020a\u0020value\u0020between\u0020\u007B0\u007D\u0020and\u0020\u007B1\u007D\u0020characters\u0020long'), range: $.validator.format('Please\u0020enter\u0020a\u0020value\u0020between\u0020\u007B0\u007D\u0020and\u0020\u007B1\u007D'), max: $.validator.format('Please\u0020enter\u0020a\u0020value\u0020less\u0020than\u0020or\u0020equal\u0020to\u0020\u007B0\u007D'), min: $.validator.format('Please\u0020enter\u0020a\u0020value\u0020greater\u0020than\u0020or\u0020equal\u0020to\u0020\u007B0\u007D'), validationFunctionForDateTime: $.validator.format('Please\u0020enter\u0020a\u0020valid\u0020date\u0020or\u0020time'), validationFunctionForHex: $.validator.format('Please\u0020enter\u0020a\u0020valid\u0020HEX\u0020input'), validationFunctionForMd5: $.validator.format('This\u0020column\u0020can\u0020not\u0020contain\u0020a\u002032\u0020chars\u0020value'), validationFunctionForAesDesEncrypt: $.validator.format('These\u0020functions\u0020are\u0020meant\u0020to\u0020return\u0020a\u0020binary\u0020result\u003B\u0020to\u0020avoid\u0020inconsistent\u0020results\u0020you\u0020should\u0020store\u0020it\u0020in\u0020a\u0020BINARY,\u0020VARBINARY,\u0020or\u0020BLOB\u0020column.') }); } ConsoleEnterExecutes=false AJAX.scriptHandler .add('vendor/jquery/jquery.min.js', 0) .add('vendor/jquery/jquery-migrate.js', 0) .add('vendor/sprintf.js', 1) .add('ajax.js', 0) .add('keyhandler.js', 1) .add('vendor/jquery/jquery-ui.min.js', 0) .add('name-conflict-fixes.js', 1) .add('vendor/bootstrap/bootstrap.bundle.min.js', 1) .add('vendor/js.cookie.js', 1) .add('vendor/jquery/jquery.validate.js', 0) .add('vendor/jquery/jquery-ui-timepicker-addon.js', 0) .add('vendor/jquery/jquery.debounce-1.0.6.js', 0) .add('menu_resizer.js', 1) .add('cross_framing_protection.js', 0) .add('messages.php', 0) .add('config.js', 1) .add('doclinks.js', 1) .add('functions.js', 1) .add('navigation.js', 1) .add('indexes.js', 1) .add('common.js', 1) .add('page_settings.js', 1) .add('home.js', 1) .add('vendor/codemirror/lib/codemirror.js', 0) .add('vendor/codemirror/mode/sql/sql.js', 0) .add('vendor/codemirror/addon/runmode/runmode.js', 0) .add('vendor/codemirror/addon/hint/show-hint.js', 0) .add('vendor/codemirror/addon/hint/sql-hint.js', 0) .add('vendor/codemirror/addon/lint/lint.js', 0) .add('codemirror/addon/lint/sql-lint.js', 0) .add('vendor/tracekit.js', 1) .add('error_report.js', 1) .add('drag_drop_import.js', 1) .add('shortcuts_handler.js', 1) .add('console.js', 1) ; $(function() { AJAX.fireOnload('vendor/sprintf.js'); AJAX.fireOnload('keyhandler.js'); AJAX.fireOnload('name-conflict-fixes.js'); AJAX.fireOnload('vendor/bootstrap/bootstrap.bundle.min.js'); AJAX.fireOnload('vendor/js.cookie.js'); AJAX.fireOnload('menu_resizer.js'); AJAX.fireOnload('config.js'); AJAX.fireOnload('doclinks.js'); AJAX.fireOnload('functions.js'); AJAX.fireOnload('navigation.js'); AJAX.fireOnload('indexes.js'); AJAX.fireOnload('common.js'); AJAX.fireOnload('page_settings.js'); AJAX.fireOnload('home.js'); AJAX.fireOnload('vendor/tracekit.js'); AJAX.fireOnload('error_report.js'); AJAX.fireOnload('drag_drop_import.js'); AJAX.fireOnload('shortcuts_handler.js'); AJAX.fireOnload('console.js'); }); // ]]> </script> <noscript><style>html{display:block}</style></noscript> </head> <body> <div id="pma_navigation" class="d-print-none" data-config-navigation-width="0"> <div id="pma_navigation_resizer"></div> <div id="pma_navigation_collapser"></div> <div id="pma_navigation_content"> <div id="pma_navigation_header"> <div id="pmalogo"> <a href="index.php?lang=en"> <img id="imgpmalogo" src="./themes/pmahomme/img/logo_left.png" alt="phpMyAdmin"> </a> </div> <div id="navipanellinks"> <a href="index.php?route=/&lang=en" title="Home"><img src="themes/dot.gif" title="Home" alt="Home" class="icon ic_b_home"></a> <a class="logout disableAjax" href="index.php?route=/logout&lang=en" title="Empty session data"><img src="themes/dot.gif" title="Empty session data" alt="Empty session data" class="icon ic_s_loggoff"></a> <a href="./doc/html/index.html" title="phpMyAdmin documentation" target="_blank" rel="noopener noreferrer"><img src="themes/dot.gif" title="phpMyAdmin documentation" alt="phpMyAdmin documentation" class="icon ic_b_docs"></a> <a href="./url.php?url=https%3A%2F%2Fmariadb.com%2Fkb%2Fen%2Fdocumentation%2F" title="MariaDB Documentation" target="_blank" rel="noopener noreferrer"><img src="themes/dot.gif" title="MariaDB Documentation" alt="MariaDB Documentation" class="icon ic_b_sqlhelp"></a> <a id="pma_navigation_settings_icon" href="#" title="Navigation panel settings"><img src="themes/dot.gif" title="Navigation panel settings" alt="Navigation panel settings" class="icon ic_s_cog"></a> <a id="pma_navigation_reload" href="#" title="Reload navigation panel"><img src="themes/dot.gif" title="Reload navigation panel" alt="Reload navigation panel" class="icon ic_s_reload"></a> </div> <img src="themes/dot.gif" title="Loading…" alt="Loading…" style="visibility: hidden; display:none" class="icon ic_ajax_clock_small throbber"> </div> <div id="pma_navigation_tree" class="list_container synced highlight autoexpand"> <div class="pma_quick_warp"> <div class="drop_list"><button title="Recent tables" class="drop_button btn">Recent</button><ul id="pma_recent_list"><li class="warp_link"> <a href="index.php?route=/table/recent-favorite&db=scan&table=wp_users&lang=en"> `scan`.`wp_users` </a> </li> <li class="warp_link"> <a href="index.php?route=/table/recent-favorite&db=attack&table=wp_users&lang=en"> `attack`.`wp_users` </a> </li> <li class="warp_link"> <a href="index.php?route=/table/recent-favorite&db=test&table=wp_users&lang=en"> `test`.`wp_users` </a> </li> </ul></div> <div class="drop_list"><button title="Favorite tables" class="drop_button btn">Favorites</button><ul id="pma_favorite_list"><li class="warp_link"> There are no favorite tables. </li> </ul></div> <div class="clearfloat"></div> </div> <div class="clearfloat"></div> <ul> <!-- CONTROLS START --> <li id="navigation_controls_outer"> <div id="navigation_controls"> <a href="#" id="pma_navigation_collapse" title="Collapse all"><img src="themes/dot.gif" title="Collapse all" alt="Collapse all" class="icon ic_s_collapseall"></a> <a href="#" id="pma_navigation_sync" title="Unlink from main panel"><img src="themes/dot.gif" title="Unlink from main panel" alt="Unlink from main panel" class="icon ic_s_link"></a> </div> </li> <!-- CONTROLS ENDS --> </ul> <div id='pma_navigation_tree_content'> <ul> <li class="first new_database italics"> <div class="block"> <i class="first"></i> </div> <div class="block second"> <a href="index.php?route=/server/databases&lang=en"><img src="themes/dot.gif" title="New" alt="New" class="icon ic_b_newdb"></a> </div> <a class="hover_show_full" href="index.php?route=/server/databases&lang=en" title="New">New</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.YXR0YWNr" data-vpath="cm9vdA==.YXR0YWNr" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=attack&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=attack&lang=en" title="Structure">attack</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.aW5mb3JtYXRpb25fc2NoZW1h" data-vpath="cm9vdA==.aW5mb3JtYXRpb25fc2NoZW1h" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=information_schema&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=information_schema&lang=en" title="Structure">information_schema</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.bXlzcWw=" data-vpath="cm9vdA==.bXlzcWw=" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=mysql&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=mysql&lang=en" title="Structure">mysql</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.cGVyZm9ybWFuY2Vfc2NoZW1h" data-vpath="cm9vdA==.cGVyZm9ybWFuY2Vfc2NoZW1h" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=performance_schema&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=performance_schema&lang=en" title="Structure">performance_schema</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.cGhwbXlhZG1pbg==" data-vpath="cm9vdA==.cGhwbXlhZG1pbg==" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=phpmyadmin&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=phpmyadmin&lang=en" title="Structure">phpmyadmin</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.c2Nhbg==" data-vpath="cm9vdA==.c2Nhbg==" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=scan&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=scan&lang=en" title="Structure">scan</a> <div class="clearfloat"></div> </li> <li class="last database"> <div class="block"> <i></i> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.dGVzdA==" data-vpath="cm9vdA==.dGVzdA==" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=test&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=test&lang=en" title="Structure">test</a> <div class="clearfloat"></div> </li> </ul> </div> </div> <div id="pma_navi_settings_container"> <div id="pma_navigation_settings"><div class="page_settings"><form method="post" action="index.php?route=%2F&server=1&lang=en" class="config-form disableAjax"> <input type="hidden" name="tab_hash" value=""> <input type="hidden" name="check_page_refresh" id="check_page_refresh" value=""> <input type="hidden" name="lang" value="en"><input type="hidden" name="token" value="68796d444825575e6d2d604f364a4658"> <input type="hidden" name="submit_save" value="Navi"> <ul class="nav nav-tabs" id="configFormDisplayTab" role="tablist"> <li class="nav-item" role="presentation"> <a class="nav-link active" id="Navi_panel-tab" href="#Navi_panel" data-bs-toggle="tab" role="tab" aria-controls="Navi_panel" aria-selected="true">Navigation panel</a> </li> <li class="nav-item" role="presentation"> <a class="nav-link" id="Navi_tree-tab" href="#Navi_tree" data-bs-toggle="tab" role="tab" aria-controls="Navi_tree" aria-selected="false">Navigation tree</a> </li> <li class="nav-item" role="presentation"> <a class="nav-link" id="Navi_servers-tab" href="#Navi_servers" data-bs-toggle="tab" role="tab" aria-controls="Navi_servers" aria-selected="false">Servers</a> </li> <li class="nav-item" role="presentation"> <a class="nav-link" id="Navi_databases-tab" href="#Navi_databases" data-bs-toggle="tab" role="tab" aria-controls="Navi_databases" aria-selected="false">Databases</a> </li> <li class="nav-item" role="presentation"> <a class="nav-link" id="Navi_tables-tab" href="#Navi_tables" data-bs-toggle="tab" role="tab" aria-controls="Navi_tables" aria-selected="false">Tables</a> </li> </ul> <div class="tab-content"> <div class="tab-pane fade show active" id="Navi_panel" role="tabpanel" aria-labelledby="Navi_panel-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Navigation panel</h5> <h6 class="card-subtitle mb-2 text-muted">Customize appearance of the navigation panel.</h6> <fieldset class="optbox"> <legend>Navigation panel</legend> <table class="table table-borderless"> <tr> <th> <label for="ShowDatabasesNavigationAsTree">Show databases navigation as tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_ShowDatabasesNavigationAsTree" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>In the navigation panel, replaces the database tree with a selector</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="ShowDatabasesNavigationAsTree" id="ShowDatabasesNavigationAsTree" checked> </span> <a class="restore-default hide" href="#ShowDatabasesNavigationAsTree" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationLinkWithMainPanel">Link with main panel</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationLinkWithMainPanel" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Link with main panel by highlighting the current database or table.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationLinkWithMainPanel" id="NavigationLinkWithMainPanel" checked> </span> <a class="restore-default hide" href="#NavigationLinkWithMainPanel" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationDisplayLogo">Display logo</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationDisplayLogo" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Show logo in navigation panel.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationDisplayLogo" id="NavigationDisplayLogo" checked> </span> <a class="restore-default hide" href="#NavigationDisplayLogo" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationLogoLink">Logo link URL</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationLogoLink" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>URL where logo in the navigation panel will point to.</small> </th> <td> <input type="text" name="NavigationLogoLink" id="NavigationLogoLink" value="index.php" class="w-75"> <a class="restore-default hide" href="#NavigationLogoLink" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationLogoLinkWindow">Logo link target</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationLogoLinkWindow" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Open the linked page in the main window (<code>main</code>) or in a new one (<code>new</code>).</small> </th> <td> <select name="NavigationLogoLinkWindow" id="NavigationLogoLinkWindow" class="w-75"> <option value="main" selected>main</option> <option value="new">new</option> </select> <a class="restore-default hide" href="#NavigationLogoLinkWindow" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreePointerEnable">Enable highlighting</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreePointerEnable" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Highlight server under the mouse cursor.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreePointerEnable" id="NavigationTreePointerEnable" checked> </span> <a class="restore-default hide" href="#NavigationTreePointerEnable" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="FirstLevelNavigationItems">Maximum items on first level</label> <span class="doc"> <a href="./doc/html/config.html#cfg_FirstLevelNavigationItems" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>The number of items that can be displayed on each page on the first level of the navigation tree.</small> </th> <td> <input type="number" name="FirstLevelNavigationItems" id="FirstLevelNavigationItems" value="100" class=""> <a class="restore-default hide" href="#FirstLevelNavigationItems" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeDisplayItemFilterMinimum">Minimum number of items to display the filter box</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDisplayItemFilterMinimum" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Defines the minimum number of items (tables, views, routines and events) to display a filter box.</small> </th> <td> <input type="number" name="NavigationTreeDisplayItemFilterMinimum" id="NavigationTreeDisplayItemFilterMinimum" value="30" class=""> <a class="restore-default hide" href="#NavigationTreeDisplayItemFilterMinimum" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NumRecentTables">Recently used tables</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NumRecentTables" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Maximum number of recently used tables; set 0 to disable.</small> </th> <td> <input type="number" name="NumRecentTables" id="NumRecentTables" value="10" class=""> <a class="restore-default hide" href="#NumRecentTables" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NumFavoriteTables">Favorite tables</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NumFavoriteTables" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Maximum number of favorite tables; set 0 to disable.</small> </th> <td> <input type="number" name="NumFavoriteTables" id="NumFavoriteTables" value="10" class=""> <a class="restore-default hide" href="#NumFavoriteTables" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationWidth">Navigation panel width</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationWidth" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Set to 0 to collapse navigation panel.</small> </th> <td> <input type="number" name="NavigationWidth" id="NavigationWidth" value="0" class="custom"> <a class="restore-default hide" href="#NavigationWidth" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> <div class="tab-pane fade" id="Navi_tree" role="tabpanel" aria-labelledby="Navi_tree-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Navigation tree</h5> <h6 class="card-subtitle mb-2 text-muted">Customize the navigation tree.</h6> <fieldset class="optbox"> <legend>Navigation tree</legend> <table class="table table-borderless"> <tr> <th> <label for="MaxNavigationItems">Maximum items in branch</label> <span class="doc"> <a href="./doc/html/config.html#cfg_MaxNavigationItems" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>The number of items that can be displayed on each page of the navigation tree.</small> </th> <td> <input type="number" name="MaxNavigationItems" id="MaxNavigationItems" value="50" class=""> <a class="restore-default hide" href="#MaxNavigationItems" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeEnableGrouping">Group items in the tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeEnableGrouping" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Group items in the navigation tree (determined by the separator defined in the Databases and Tables tabs above).</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeEnableGrouping" id="NavigationTreeEnableGrouping" checked> </span> <a class="restore-default hide" href="#NavigationTreeEnableGrouping" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeEnableExpansion">Enable navigation tree expansion</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeEnableExpansion" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to offer the possibility of tree expansion in the navigation panel.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeEnableExpansion" id="NavigationTreeEnableExpansion" checked> </span> <a class="restore-default hide" href="#NavigationTreeEnableExpansion" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowTables">Show tables in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowTables" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show tables under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowTables" id="NavigationTreeShowTables" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowTables" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowViews">Show views in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowViews" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show views under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowViews" id="NavigationTreeShowViews" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowViews" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowFunctions">Show functions in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowFunctions" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show functions under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowFunctions" id="NavigationTreeShowFunctions" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowFunctions" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowProcedures">Show procedures in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowProcedures" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show procedures under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowProcedures" id="NavigationTreeShowProcedures" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowProcedures" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowEvents">Show events in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowEvents" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show events under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowEvents" id="NavigationTreeShowEvents" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowEvents" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeAutoexpandSingleDb">Expand single database</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeAutoexpandSingleDb" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to expand single database in the navigation tree automatically.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeAutoexpandSingleDb" id="NavigationTreeAutoexpandSingleDb" checked> </span> <a class="restore-default hide" href="#NavigationTreeAutoexpandSingleDb" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> <div class="tab-pane fade" id="Navi_servers" role="tabpanel" aria-labelledby="Navi_servers-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Servers</h5> <h6 class="card-subtitle mb-2 text-muted">Servers display options.</h6> <fieldset class="optbox"> <legend>Servers</legend> <table class="table table-borderless"> <tr> <th> <label for="NavigationDisplayServers">Display servers selection</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationDisplayServers" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Display server choice at the top of the navigation panel.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationDisplayServers" id="NavigationDisplayServers" checked> </span> <a class="restore-default hide" href="#NavigationDisplayServers" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="DisplayServersList">Display servers as a list</label> <span class="doc"> <a href="./doc/html/config.html#cfg_DisplayServersList" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Show server listing as a list instead of a drop down.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="DisplayServersList" id="DisplayServersList"> </span> <a class="restore-default hide" href="#DisplayServersList" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> <div class="tab-pane fade" id="Navi_databases" role="tabpanel" aria-labelledby="Navi_databases-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Databases</h5> <h6 class="card-subtitle mb-2 text-muted">Databases display options.</h6> <fieldset class="optbox"> <legend>Databases</legend> <table class="table table-borderless"> <tr> <th> <label for="NavigationTreeDisplayDbFilterMinimum">Minimum number of databases to display the database filter box</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDisplayDbFilterMinimum" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> </th> <td> <input type="number" name="NavigationTreeDisplayDbFilterMinimum" id="NavigationTreeDisplayDbFilterMinimum" value="30" class=""> <a class="restore-default hide" href="#NavigationTreeDisplayDbFilterMinimum" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeDbSeparator">Database tree separator</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDbSeparator" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>String that separates databases into different tree levels.</small> </th> <td> <input type="text" size="25" name="NavigationTreeDbSeparator" id="NavigationTreeDbSeparator" value="_" class=""> <a class="restore-default hide" href="#NavigationTreeDbSeparator" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> <div class="tab-pane fade" id="Navi_tables" role="tabpanel" aria-labelledby="Navi_tables-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Tables</h5> <h6 class="card-subtitle mb-2 text-muted">Tables display options.</h6> <fieldset class="optbox"> <legend>Tables</legend> <table class="table table-borderless"> <tr> <th> <label for="NavigationTreeDefaultTabTable">Target for quick access icon</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDefaultTabTable" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> </th> <td> <select name="NavigationTreeDefaultTabTable" id="NavigationTreeDefaultTabTable" class="w-75"> <option value="structure" selected>Structure</option> <option value="sql">SQL</option> <option value="search">Search</option> <option value="insert">Insert</option> <option value="browse">Browse</option> </select> <a class="restore-default hide" href="#NavigationTreeDefaultTabTable" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeDefaultTabTable2">Target for second quick access icon</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDefaultTabTable2" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> </th> <td> <select name="NavigationTreeDefaultTabTable2" id="NavigationTreeDefaultTabTable2" class="w-75"> <option value="" selected></option> <option value="structure">Structure</option> <option value="sql">SQL</option> <option value="search">Search</option> <option value="insert">Insert</option> <option value="browse">Browse</option> </select> <a class="restore-default hide" href="#NavigationTreeDefaultTabTable2" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeTableSeparator">Table tree separator</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeTableSeparator" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>String that separates tables into different tree levels.</small> </th> <td> <input type="text" size="25" name="NavigationTreeTableSeparator" id="NavigationTreeTableSeparator" value="__" class=""> <a class="restore-default hide" href="#NavigationTreeTableSeparator" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeTableLevel">Maximum table tree depth</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeTableLevel" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> </th> <td> <input type="number" name="NavigationTreeTableLevel" id="NavigationTreeTableLevel" value="1" class=""> <a class="restore-default hide" href="#NavigationTreeTableLevel" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> </div> </form> <script type="text/javascript"> if (typeof configInlineParams === 'undefined' || !Array.isArray(configInlineParams)) { configInlineParams = []; } configInlineParams.push(function () { registerFieldValidator('FirstLevelNavigationItems', 'validatePositiveNumber', true); registerFieldValidator('NavigationTreeDisplayItemFilterMinimum', 'validatePositiveNumber', true); registerFieldValidator('NumRecentTables', 'validateNonNegativeNumber', true); registerFieldValidator('NumFavoriteTables', 'validateNonNegativeNumber', true); registerFieldValidator('NavigationWidth', 'validateNonNegativeNumber', true); registerFieldValidator('MaxNavigationItems', 'validatePositiveNumber', true); registerFieldValidator('NavigationTreeTableLevel', 'validatePositiveNumber', true); $.extend(Messages, { 'error_nan_p': 'Not\u0020a\u0020positive\u0020number\u0021', 'error_nan_nneg': 'Not\u0020a\u0020non\u002Dnegative\u0020number\u0021', 'error_incorrect_port': 'Not\u0020a\u0020valid\u0020port\u0020number\u0021', 'error_invalid_value': 'Incorrect\u0020value\u0021', 'error_value_lte': 'Value\u0020must\u0020be\u0020less\u0020than\u0020or\u0020equal\u0020to\u0020\u0025s\u0021', }); $.extend(defaultValues, { 'ShowDatabasesNavigationAsTree': true, 'NavigationLinkWithMainPanel': true, 'NavigationDisplayLogo': true, 'NavigationLogoLink': 'index.php', 'NavigationLogoLinkWindow': ['main'], 'NavigationTreePointerEnable': true, 'FirstLevelNavigationItems': '100', 'NavigationTreeDisplayItemFilterMinimum': '30', 'NumRecentTables': '10', 'NumFavoriteTables': '10', 'NavigationWidth': '240', 'MaxNavigationItems': '50', 'NavigationTreeEnableGrouping': true, 'NavigationTreeEnableExpansion': true, 'NavigationTreeShowTables': true, 'NavigationTreeShowViews': true, 'NavigationTreeShowFunctions': true, 'NavigationTreeShowProcedures': true, 'NavigationTreeShowEvents': true, 'NavigationTreeAutoexpandSingleDb': true, 'NavigationDisplayServers': true, 'DisplayServersList': false, 'NavigationTreeDisplayDbFilterMinimum': '30', 'NavigationTreeDbSeparator': '_', 'NavigationTreeDefaultTabTable': ['structure'], 'NavigationTreeDefaultTabTable2': [''], 'NavigationTreeTableSeparator': '__', 'NavigationTreeTableLevel': '1' }); }); if (typeof configScriptLoaded !== 'undefined' && configInlineParams) { loadInlineConfig(); } </script> </div></div> </div> </div> <div class="pma_drop_handler"> Drop files here </div> <div class="pma_sql_import_status"> <h2> SQL upload ( <span class="pma_import_count">0</span> ) <span class="close">x</span> <span class="minimize">-</span> </h2> <div></div> </div> </div> <div class="modal fade" id="unhideNavItemModal" tabindex="-1" aria-labelledby="unhideNavItemModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="unhideNavItemModalLabel">Show hidden navigation tree items.</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"></div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> </div> </div> </div> </div> <noscript> <div class="alert alert-danger" role="alert"> <img src="themes/dot.gif" title="" alt="" class="icon ic_s_error"> Javascript must be enabled past this point! </div> </noscript> <div id="floating_menubar" class="d-print-none"></div> <nav id="server-breadcrumb" aria-label="breadcrumb"> <ol class="breadcrumb breadcrumb-navbar"> <li class="breadcrumb-item"> <img src="themes/dot.gif" title="" alt="" class="icon ic_s_host"> <a href="index.php?route=/&lang=en" data-raw-text="localhost" draggable="false"> Server: localhost </a> </li> </ol> </nav> <div id="topmenucontainer" class="menucontainer"> <nav class="navbar navbar-expand-lg navbar-light bg-light"> <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-label="Toggle navigation" aria-controls="navbarNav" aria-expanded="false"> <span class="navbar-toggler-icon"></span> </button> <div class="collapse navbar-collapse" id="navbarNav"> <ul id="topmenu" class="navbar-nav"> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/databases&lang=en"> <img src="themes/dot.gif" title="Databases" alt="Databases" class="icon ic_s_db"> Databases </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/sql&lang=en"> <img src="themes/dot.gif" title="SQL" alt="SQL" class="icon ic_b_sql"> SQL </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/status&lang=en"> <img src="themes/dot.gif" title="Status" alt="Status" class="icon ic_s_status"> Status </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/privileges&viewing_mode=server&lang=en"> <img src="themes/dot.gif" title="User accounts" alt="User accounts" class="icon ic_s_rights"> User accounts </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/export&lang=en"> <img src="themes/dot.gif" title="Export" alt="Export" class="icon ic_b_export"> Export </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/import&lang=en"> <img src="themes/dot.gif" title="Import" alt="Import" class="icon ic_b_import"> Import </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/preferences/manage&lang=en"> <img src="themes/dot.gif" title="Settings" alt="Settings" class="icon ic_b_tblops"> Settings </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/replication&lang=en"> <img src="themes/dot.gif" title="Replication" alt="Replication" class="icon ic_s_replication"> Replication </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/variables&lang=en"> <img src="themes/dot.gif" title="Variables" alt="Variables" class="icon ic_s_vars"> Variables </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/collations&lang=en"> <img src="themes/dot.gif" title="Charsets" alt="Charsets" class="icon ic_s_asci"> Charsets </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/engines&lang=en"> <img src="themes/dot.gif" title="Engines" alt="Engines" class="icon ic_b_engine"> Engines </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/plugins&lang=en"> <img src="themes/dot.gif" title="Plugins" alt="Plugins" class="icon ic_b_plugin"> Plugins </a> </li> </ul> </div> </nav> </div> <span id="page_nav_icons" class="d-print-none"> <span id="lock_page_icon"></span> <span id="page_settings_icon"> <img src="themes/dot.gif" title="Page-related settings" alt="Page-related settings" class="icon ic_s_cog"> </span> <a id="goto_pagetop" href="#"><img src="themes/dot.gif" title="Click on the bar to scroll to top of page" alt="Click on the bar to scroll to top of page" class="icon ic_s_top"></a> </span> <div id="pma_console_container" class="d-print-none"> <div id="pma_console"> <div class="toolbar collapsed"> <div class="switch_button console_switch"> <img src="themes/dot.gif" title="SQL Query Console" alt="SQL Query Console" class="icon ic_console"> <span>Console</span> </div> <div class="button clear"> <span>Clear</span> </div> <div class="button history"> <span>History</span> </div> <div class="button options"> <span>Options</span> </div> <div class="button bookmarks"> <span>Bookmarks</span> </div> <div class="button debug hide"> <span>Debug SQL</span> </div> </div> <div class="content"> <div class="console_message_container"> <div class="message welcome"> <span id="instructions-0"> Press Ctrl+Enter to execute query </span> <span class="hide" id="instructions-1"> Press Enter to execute query </span> </div> </div><!-- console_message_container --> <div class="query_input"> <span class="console_query_input"></span> </div> </div><!-- message end --> <div class="mid_layer"></div> <div class="card" id="debug_console"> <div class="toolbar "> <div class="button order order_asc"> <span>ascending</span> </div> <div class="button order order_desc"> <span>descending</span> </div> <div class="text"> <span>Order:</span> </div> <div class="switch_button"> <span>Debug SQL</span> </div> <div class="button order_by sort_count"> <span>Count</span> </div> <div class="button order_by sort_exec"> <span>Execution order</span> </div> <div class="button order_by sort_time"> <span>Time taken</span> </div> <div class="text"> <span>Order by:</span> </div> <div class="button group_queries"> <span>Group queries</span> </div> <div class="button ungroup_queries"> <span>Ungroup queries</span> </div> </div> <div class="content debug"> <div class="message welcome"></div> <div class="debugLog"></div> </div> <!-- Content --> <div class="templates"> <div class="debug_query action_content"> <span class="action collapse"> Collapse </span> <span class="action expand"> Expand </span> <span class="action dbg_show_trace"> Show trace </span> <span class="action dbg_hide_trace"> Hide trace </span> <span class="text count hide"> Count </span> <span class="text time"> Time taken </span> </div> </div> <!-- Template --> </div> <!-- Debug SQL card --> <div class="card" id="pma_bookmarks"> <div class="toolbar "> <div class="switch_button"> <span>Bookmarks</span> </div> <div class="button refresh"> <span>Refresh</span> </div> <div class="button add"> <span>Add</span> </div> </div> <div class="content bookmark"> <div class="message welcome"> <span>No bookmarks</span> </div> </div> <div class="mid_layer"></div> <div class="card add"> <div class="toolbar "> <div class="switch_button"> <span>Add bookmark</span> </div> </div> <div class="content add_bookmark"> <div class="options"> <label> Label: <input type="text" name="label"> </label> <label> Target database: <input type="text" name="targetdb"> </label> <label> <input type="checkbox" name="shared">Share this bookmark </label> <button class="btn btn-primary" type="submit" name="submit">OK</button> </div> <!-- options --> <div class="query_input"> <span class="bookmark_add_input"></span> </div> </div> </div> <!-- Add bookmark card --> </div> <!-- Bookmarks card --> <div class="card" id="pma_console_options"> <div class="toolbar "> <div class="switch_button"> <span>Options</span> </div> <div class="button default"> <span>Set default</span> </div> </div> <div class="content"> <label> <input type="checkbox" name="always_expand">Always expand query messages </label> <br> <label> <input type="checkbox" name="start_history">Show query history at start </label> <br> <label> <input type="checkbox" name="current_query">Show current browsing query </label> <br> <label> <input type="checkbox" name="enter_executes"> Execute queries on Enter and insert new line with Shift+Enter. To make this permanent, view settings. </label> <br> <label> <input type="checkbox" name="dark_theme">Switch to dark theme </label> <br> </div> </div> <!-- Options card --> <div class="templates"> <div class="query_actions"> <span class="action collapse"> Collapse </span> <span class="action expand"> Expand </span> <span class="action requery"> Requery </span> <span class="action edit"> Edit </span> <span class="action explain"> Explain </span> <span class="action profiling"> Profiling </span> <span class="action bookmark"> Bookmark </span> <span class="text failed"> Query failed </span> <span class="text targetdb"> Database : <span></span> </span> <span class="text query_time"> Queried time : <span></span> </span> </div> </div> </div> <!-- #console end --> </div> <!-- #console_container end --> <div id="page_content"> <div class="modal fade" id="previewSqlModal" tabindex="-1" aria-labelledby="previewSqlModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="previewSqlModalLabel">Loading</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"></div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> </div> </div> </div> </div> <div class="modal fade" id="enumEditorModal" tabindex="-1" aria-labelledby="enumEditorModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="enumEditorModalLabel">ENUM/SET editor</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"></div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" id="enumEditorGoButton" data-bs-dismiss="modal">Go</button> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> </div> </div> </div> </div> <div class="modal fade" id="createViewModal" tabindex="-1" aria-labelledby="createViewModalLabel" aria-hidden="true"> <div class="modal-dialog modal-lg" id="createViewModalDialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="createViewModalLabel">Create view</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"></div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" id="createViewModalGoButton">Go</button> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> </div> </div> </div> </div> <div id="maincontainer"> <a class="hide" id="sync_favorite_tables" href="index.php?route=/database/structure/favorite-table&ajax_request=1&favorite_table=1&sync_favorite_tables=1&lang=en"></a> <div class="container-fluid"> <div class="row"> <div class="col-lg-7 col-12"> <div class="card mt-4"> <div class="card-header"> General settings </div> <ul class="list-group list-group-flush"> <li id="li_select_mysql_collation" class="list-group-item"> <form method="post" action="index.php?route=/collation-connection&lang=en" class="row row-cols-lg-auto align-items-center disableAjax"> <input type="hidden" name="lang" value="en"><input type="hidden" name="token" value="68796d444825575e6d2d604f364a4658"> <div class="col-12"> <label for="collationConnectionSelect" class="col-form-label"> <img src="themes/dot.gif" title="" alt="" class="icon ic_s_asci"> Server connection collation: <a href="./url.php?url=https%3A%2F%2Fdev.mysql.com%2Fdoc%2Frefman%2F8.0%2Fen%2Fcharset-connection.html" target="mysql_doc"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </label> </div> <div class="col-12"> <select lang="en" dir="ltr" name="collation_connection" id="collationConnectionSelect" class="form-select autosubmit"> <option value="">Collation</option> <option value=""></option> <optgroup label="armscii8" title="ARMSCII-8 Armenian"> <option value="armscii8_bin" title="Armenian, binary">armscii8_bin</option> <option value="armscii8_general_ci" title="Armenian, case-insensitive">armscii8_general_ci</option> <option value="armscii8_general_nopad_ci" title="Armenian, no-pad, case-insensitive">armscii8_general_nopad_ci</option> <option value="armscii8_nopad_bin" title="Armenian, no-pad, binary">armscii8_nopad_bin</option> </optgroup> <optgroup label="ascii" title="US ASCII"> <option value="ascii_bin" title="West European, binary">ascii_bin</option> <option value="ascii_general_ci" title="West European, case-insensitive">ascii_general_ci</option> <option value="ascii_general_nopad_ci" title="West European, no-pad, case-insensitive">ascii_general_nopad_ci</option> <option value="ascii_nopad_bin" title="West European, no-pad, binary">ascii_nopad_bin</option> </optgroup> <optgroup label="big5" title="Big5 Traditional Chinese"> <option value="big5_bin" title="Traditional Chinese, binary">big5_bin</option> <option value="big5_chinese_ci" title="Traditional Chinese, case-insensitive">big5_chinese_ci</option> <option value="big5_chinese_nopad_ci" title="Traditional Chinese, no-pad, case-insensitive">big5_chinese_nopad_ci</option> <option value="big5_nopad_bin" title="Traditional Chinese, no-pad, binary">big5_nopad_bin</option> </optgroup> <optgroup label="binary" title="Binary pseudo charset"> <option value="binary" title="Binary">binary</option> </optgroup> <optgroup label="cp1250" title="Windows Central European"> <option value="cp1250_bin" title="Central European, binary">cp1250_bin</option> <option value="cp1250_croatian_ci" title="Croatian, case-insensitive">cp1250_croatian_ci</option> <option value="cp1250_czech_cs" title="Czech, case-sensitive">cp1250_czech_cs</option> <option value="cp1250_general_ci" title="Central European, case-insensitive">cp1250_general_ci</option> <option value="cp1250_general_nopad_ci" title="Central European, no-pad, case-insensitive">cp1250_general_nopad_ci</option> <option value="cp1250_nopad_bin" title="Central European, no-pad, binary">cp1250_nopad_bin</option> <option value="cp1250_polish_ci" title="Polish, case-insensitive">cp1250_polish_ci</option> </optgroup> <optgroup label="cp1251" title="Windows Cyrillic"> <option value="cp1251_bin" title="Cyrillic, binary">cp1251_bin</option> <option value="cp1251_bulgarian_ci" title="Bulgarian, case-insensitive">cp1251_bulgarian_ci</option> <option value="cp1251_general_ci" title="Cyrillic, case-insensitive">cp1251_general_ci</option> <option value="cp1251_general_cs" title="Cyrillic, case-sensitive">cp1251_general_cs</option> <option value="cp1251_general_nopad_ci" title="Cyrillic, no-pad, case-insensitive">cp1251_general_nopad_ci</option> <option value="cp1251_nopad_bin" title="Cyrillic, no-pad, binary">cp1251_nopad_bin</option> <option value="cp1251_ukrainian_ci" title="Ukrainian, case-insensitive">cp1251_ukrainian_ci</option> </optgroup> <optgroup label="cp1256" title="Windows Arabic"> <option value="cp1256_bin" title="Arabic, binary">cp1256_bin</option> <option value="cp1256_general_ci" title="Arabic, case-insensitive">cp1256_general_ci</option> <option value="cp1256_general_nopad_ci" title="Arabic, no-pad, case-insensitive">cp1256_general_nopad_ci</option> <option value="cp1256_nopad_bin" title="Arabic, no-pad, binary">cp1256_nopad_bin</option> </optgroup> <optgroup label="cp1257" title="Windows Baltic"> <option value="cp1257_bin" title="Baltic, binary">cp1257_bin</option> <option value="cp1257_general_ci" title="Baltic, case-insensitive">cp1257_general_ci</option> <option value="cp1257_general_nopad_ci" title="Baltic, no-pad, case-insensitive">cp1257_general_nopad_ci</option> <option value="cp1257_lithuanian_ci" title="Lithuanian, case-insensitive">cp1257_lithuanian_ci</option> <option value="cp1257_nopad_bin" title="Baltic, no-pad, binary">cp1257_nopad_bin</option> </optgroup> <optgroup label="cp850" title="DOS West European"> <option value="cp850_bin" title="West European, binary">cp850_bin</option> <option value="cp850_general_ci" title="West European, case-insensitive">cp850_general_ci</option> <option value="cp850_general_nopad_ci" title="West European, no-pad, case-insensitive">cp850_general_nopad_ci</option> <option value="cp850_nopad_bin" title="West European, no-pad, binary">cp850_nopad_bin</option> </optgroup> <optgroup label="cp852" title="DOS Central European"> <option value="cp852_bin" title="Central European, binary">cp852_bin</option> <option value="cp852_general_ci" title="Central European, case-insensitive">cp852_general_ci</option> <option value="cp852_general_nopad_ci" title="Central European, no-pad, case-insensitive">cp852_general_nopad_ci</option> <option value="cp852_nopad_bin" title="Central European, no-pad, binary">cp852_nopad_bin</option> </optgroup> <optgroup label="cp866" title="DOS Russian"> <option value="cp866_bin" title="Russian, binary">cp866_bin</option> <option value="cp866_general_ci" title="Russian, case-insensitive">cp866_general_ci</option> <option value="cp866_general_nopad_ci" title="Russian, no-pad, case-insensitive">cp866_general_nopad_ci</option> <option value="cp866_nopad_bin" title="Russian, no-pad, binary">cp866_nopad_bin</option> </optgroup> <optgroup label="cp932" title="SJIS for Windows Japanese"> <option value="cp932_bin" title="Japanese, binary">cp932_bin</option> <option value="cp932_japanese_ci" title="Japanese, case-insensitive">cp932_japanese_ci</option> <option value="cp932_japanese_nopad_ci" title="Japanese, no-pad, case-insensitive">cp932_japanese_nopad_ci</option> <option value="cp932_nopad_bin" title="Japanese, no-pad, binary">cp932_nopad_bin</option> </optgroup> <optgroup label="dec8" title="DEC West European"> <option value="dec8_bin" title="West European, binary">dec8_bin</option> <option value="dec8_nopad_bin" title="West European, no-pad, binary">dec8_nopad_bin</option> <option value="dec8_swedish_ci" title="Swedish, case-insensitive">dec8_swedish_ci</option> <option value="dec8_swedish_nopad_ci" title="Swedish, no-pad, case-insensitive">dec8_swedish_nopad_ci</option> </optgroup> <optgroup label="eucjpms" title="UJIS for Windows Japanese"> <option value="eucjpms_bin" title="Japanese, binary">eucjpms_bin</option> <option value="eucjpms_japanese_ci" title="Japanese, case-insensitive">eucjpms_japanese_ci</option> <option value="eucjpms_japanese_nopad_ci" title="Japanese, no-pad, case-insensitive">eucjpms_japanese_nopad_ci</option> <option value="eucjpms_nopad_bin" title="Japanese, no-pad, binary">eucjpms_nopad_bin</option> </optgroup> <optgroup label="euckr" title="EUC-KR Korean"> <option value="euckr_bin" title="Korean, binary">euckr_bin</option> <option value="euckr_korean_ci" title="Korean, case-insensitive">euckr_korean_ci</option> <option value="euckr_korean_nopad_ci" title="Korean, no-pad, case-insensitive">euckr_korean_nopad_ci</option> <option value="euckr_nopad_bin" title="Korean, no-pad, binary">euckr_nopad_bin</option> </optgroup> <optgroup label="gb2312" title="GB2312 Simplified Chinese"> <option value="gb2312_bin" title="Simplified Chinese, binary">gb2312_bin</option> <option value="gb2312_chinese_ci" title="Simplified Chinese, case-insensitive">gb2312_chinese_ci</option> <option value="gb2312_chinese_nopad_ci" title="Simplified Chinese, no-pad, case-insensitive">gb2312_chinese_nopad_ci</option> <option value="gb2312_nopad_bin" title="Simplified Chinese, no-pad, binary">gb2312_nopad_bin</option> </optgroup> <optgroup label="gbk" title="GBK Simplified Chinese"> <option value="gbk_bin" title="Simplified Chinese, binary">gbk_bin</option> <option value="gbk_chinese_ci" title="Simplified Chinese, case-insensitive">gbk_chinese_ci</option> <option value="gbk_chinese_nopad_ci" title="Simplified Chinese, no-pad, case-insensitive">gbk_chinese_nopad_ci</option> <option value="gbk_nopad_bin" title="Simplified Chinese, no-pad, binary">gbk_nopad_bin</option> </optgroup> <optgroup label="geostd8" title="GEOSTD8 Georgian"> <option value="geostd8_bin" title="Georgian, binary">geostd8_bin</option> <option value="geostd8_general_ci" title="Georgian, case-insensitive">geostd8_general_ci</option> <option value="geostd8_general_nopad_ci" title="Georgian, no-pad, case-insensitive">geostd8_general_nopad_ci</option> <option value="geostd8_nopad_bin" title="Georgian, no-pad, binary">geostd8_nopad_bin</option> </optgroup> <optgroup label="greek" title="ISO 8859-7 Greek"> <option value="greek_bin" title="Greek, binary">greek_bin</option> <option value="greek_general_ci" title="Greek, case-insensitive">greek_general_ci</option> <option value="greek_general_nopad_ci" title="Greek, no-pad, case-insensitive">greek_general_nopad_ci</option> <option value="greek_nopad_bin" title="Greek, no-pad, binary">greek_nopad_bin</option> </optgroup> <optgroup label="hebrew" title="ISO 8859-8 Hebrew"> <option value="hebrew_bin" title="Hebrew, binary">hebrew_bin</option> <option value="hebrew_general_ci" title="Hebrew, case-insensitive">hebrew_general_ci</option> <option value="hebrew_general_nopad_ci" title="Hebrew, no-pad, case-insensitive">hebrew_general_nopad_ci</option> <option value="hebrew_nopad_bin" title="Hebrew, no-pad, binary">hebrew_nopad_bin</option> </optgroup> <optgroup label="hp8" title="HP West European"> <option value="hp8_bin" title="West European, binary">hp8_bin</option> <option value="hp8_english_ci" title="English, case-insensitive">hp8_english_ci</option> <option value="hp8_english_nopad_ci" title="English, no-pad, case-insensitive">hp8_english_nopad_ci</option> <option value="hp8_nopad_bin" title="West European, no-pad, binary">hp8_nopad_bin</option> </optgroup> <optgroup label="keybcs2" title="DOS Kamenicky Czech-Slovak"> <option value="keybcs2_bin" title="Czech-Slovak, binary">keybcs2_bin</option> <option value="keybcs2_general_ci" title="Czech-Slovak, case-insensitive">keybcs2_general_ci</option> <option value="keybcs2_general_nopad_ci" title="Czech-Slovak, no-pad, case-insensitive">keybcs2_general_nopad_ci</option> <option value="keybcs2_nopad_bin" title="Czech-Slovak, no-pad, binary">keybcs2_nopad_bin</option> </optgroup> <optgroup label="koi8r" title="KOI8-R Relcom Russian"> <option value="koi8r_bin" title="Russian, binary">koi8r_bin</option> <option value="koi8r_general_ci" title="Russian, case-insensitive">koi8r_general_ci</option> <option value="koi8r_general_nopad_ci" title="Russian, no-pad, case-insensitive">koi8r_general_nopad_ci</option> <option value="koi8r_nopad_bin" title="Russian, no-pad, binary">koi8r_nopad_bin</option> </optgroup> <optgroup label="koi8u" title="KOI8-U Ukrainian"> <option value="koi8u_bin" title="Ukrainian, binary">koi8u_bin</option> <option value="koi8u_general_ci" title="Ukrainian, case-insensitive">koi8u_general_ci</option> <option value="koi8u_general_nopad_ci" title="Ukrainian, no-pad, case-insensitive">koi8u_general_nopad_ci</option> <option value="koi8u_nopad_bin" title="Ukrainian, no-pad, binary">koi8u_nopad_bin</option> </optgroup> <optgroup label="latin1" title="cp1252 West European"> <option value="latin1_bin" title="West European, binary">latin1_bin</option> <option value="latin1_danish_ci" title="Danish, case-insensitive">latin1_danish_ci</option> <option value="latin1_general_ci" title="West European, case-insensitive">latin1_general_ci</option> <option value="latin1_general_cs" title="West European, case-sensitive">latin1_general_cs</option> <option value="latin1_german1_ci" title="German (dictionary order), case-insensitive">latin1_german1_ci</option> <option value="latin1_german2_ci" title="German (phone book order), case-insensitive">latin1_german2_ci</option> <option value="latin1_nopad_bin" title="West European, no-pad, binary">latin1_nopad_bin</option> <option value="latin1_spanish_ci" title="Spanish (modern), case-insensitive">latin1_spanish_ci</option> <option value="latin1_swedish_ci" title="Swedish, case-insensitive">latin1_swedish_ci</option> <option value="latin1_swedish_nopad_ci" title="Swedish, no-pad, case-insensitive">latin1_swedish_nopad_ci</option> </optgroup> <optgroup label="latin2" title="ISO 8859-2 Central European"> <option value="latin2_bin" title="Central European, binary">latin2_bin</option> <option value="latin2_croatian_ci" title="Croatian, case-insensitive">latin2_croatian_ci</option> <option value="latin2_czech_cs" title="Czech, case-sensitive">latin2_czech_cs</option> <option value="latin2_general_ci" title="Central European, case-insensitive">latin2_general_ci</option> <option value="latin2_general_nopad_ci" title="Central European, no-pad, case-insensitive">latin2_general_nopad_ci</option> <option value="latin2_hungarian_ci" title="Hungarian, case-insensitive">latin2_hungarian_ci</option> <option value="latin2_nopad_bin" title="Central European, no-pad, binary">latin2_nopad_bin</option> </optgroup> <optgroup label="latin5" title="ISO 8859-9 Turkish"> <option value="latin5_bin" title="Turkish, binary">latin5_bin</option> <option value="latin5_nopad_bin" title="Turkish, no-pad, binary">latin5_nopad_bin</option> <option value="latin5_turkish_ci" title="Turkish, case-insensitive">latin5_turkish_ci</option> <option value="latin5_turkish_nopad_ci" title="Turkish, no-pad, case-insensitive">latin5_turkish_nopad_ci</option> </optgroup> <optgroup label="latin7" title="ISO 8859-13 Baltic"> <option value="latin7_bin" title="Baltic, binary">latin7_bin</option> <option value="latin7_estonian_cs" title="Estonian, case-sensitive">latin7_estonian_cs</option> <option value="latin7_general_ci" title="Baltic, case-insensitive">latin7_general_ci</option> <option value="latin7_general_cs" title="Baltic, case-sensitive">latin7_general_cs</option> <option value="latin7_general_nopad_ci" title="Baltic, no-pad, case-insensitive">latin7_general_nopad_ci</option> <option value="latin7_nopad_bin" title="Baltic, no-pad, binary">latin7_nopad_bin</option> </optgroup> <optgroup label="macce" title="Mac Central European"> <option value="macce_bin" title="Central European, binary">macce_bin</option> <option value="macce_general_ci" title="Central European, case-insensitive">macce_general_ci</option> <option value="macce_general_nopad_ci" title="Central European, no-pad, case-insensitive">macce_general_nopad_ci</option> <option value="macce_nopad_bin" title="Central European, no-pad, binary">macce_nopad_bin</option> </optgroup> <optgroup label="macroman" title="Mac West European"> <option value="macroman_bin" title="West European, binary">macroman_bin</option> <option value="macroman_general_ci" title="West European, case-insensitive">macroman_general_ci</option> <option value="macroman_general_nopad_ci" title="West European, no-pad, case-insensitive">macroman_general_nopad_ci</option> <option value="macroman_nopad_bin" title="West European, no-pad, binary">macroman_nopad_bin</option> </optgroup> <optgroup label="sjis" title="Shift-JIS Japanese"> <option value="sjis_bin" title="Japanese, binary">sjis_bin</option> <option value="sjis_japanese_ci" title="Japanese, case-insensitive">sjis_japanese_ci</option> <option value="sjis_japanese_nopad_ci" title="Japanese, no-pad, case-insensitive">sjis_japanese_nopad_ci</option> <option value="sjis_nopad_bin" title="Japanese, no-pad, binary">sjis_nopad_bin</option> </optgroup> <optgroup label="swe7" title="7bit Swedish"> <option value="swe7_bin" title="Swedish, binary">swe7_bin</option> <option value="swe7_nopad_bin" title="Swedish, no-pad, binary">swe7_nopad_bin</option> <option value="swe7_swedish_ci" title="Swedish, case-insensitive">swe7_swedish_ci</option> <option value="swe7_swedish_nopad_ci" title="Swedish, no-pad, case-insensitive">swe7_swedish_nopad_ci</option> </optgroup> <optgroup label="tis620" title="TIS620 Thai"> <option value="tis620_bin" title="Thai, binary">tis620_bin</option> <option value="tis620_nopad_bin" title="Thai, no-pad, binary">tis620_nopad_bin</option> <option value="tis620_thai_ci" title="Thai, case-insensitive">tis620_thai_ci</option> <option value="tis620_thai_nopad_ci" title="Thai, no-pad, case-insensitive">tis620_thai_nopad_ci</option> </optgroup> <optgroup label="ucs2" title="UCS-2 Unicode"> <option value="ucs2_bin" title="Unicode, binary">ucs2_bin</option> <option value="ucs2_croatian_ci" title="Croatian, case-insensitive">ucs2_croatian_ci</option> <option value="ucs2_croatian_mysql561_ci" title="Croatian (MySQL 5.6.1), case-insensitive">ucs2_croatian_mysql561_ci</option> <option value="ucs2_czech_ci" title="Czech, case-insensitive">ucs2_czech_ci</option> <option value="ucs2_danish_ci" title="Danish, case-insensitive">ucs2_danish_ci</option> <option value="ucs2_esperanto_ci" title="Esperanto, case-insensitive">ucs2_esperanto_ci</option> <option value="ucs2_estonian_ci" title="Estonian, case-insensitive">ucs2_estonian_ci</option> <option value="ucs2_general_ci" title="Unicode, case-insensitive">ucs2_general_ci</option> <option value="ucs2_general_mysql500_ci" title="Unicode (MySQL 5.0.0), case-insensitive">ucs2_general_mysql500_ci</option> <option value="ucs2_general_nopad_ci" title="Unicode, no-pad, case-insensitive">ucs2_general_nopad_ci</option> <option value="ucs2_german2_ci" title="German (phone book order), case-insensitive">ucs2_german2_ci</option> <option value="ucs2_hungarian_ci" title="Hungarian, case-insensitive">ucs2_hungarian_ci</option> <option value="ucs2_icelandic_ci" title="Icelandic, case-insensitive">ucs2_icelandic_ci</option> <option value="ucs2_latvian_ci" title="Latvian, case-insensitive">ucs2_latvian_ci</option> <option value="ucs2_lithuanian_ci" title="Lithuanian, case-insensitive">ucs2_lithuanian_ci</option> <option value="ucs2_myanmar_ci" title="Burmese, case-insensitive">ucs2_myanmar_ci</option> <option value="ucs2_nopad_bin" title="Unicode, no-pad, binary">ucs2_nopad_bin</option> <option value="ucs2_persian_ci" title="Persian, case-insensitive">ucs2_persian_ci</option> <option value="ucs2_polish_ci" title="Polish, case-insensitive">ucs2_polish_ci</option> <option value="ucs2_roman_ci" title="West European, case-insensitive">ucs2_roman_ci</option> <option value="ucs2_romanian_ci" title="Romanian, case-insensitive">ucs2_romanian_ci</option> <option value="ucs2_sinhala_ci" title="Sinhalese, case-insensitive">ucs2_sinhala_ci</option> <option value="ucs2_slovak_ci" title="Slovak, case-insensitive">ucs2_slovak_ci</option> <option value="ucs2_slovenian_ci" title="Slovenian, case-insensitive">ucs2_slovenian_ci</option> <option value="ucs2_spanish2_ci" title="Spanish (traditional), case-insensitive">ucs2_spanish2_ci</option> <option value="ucs2_spanish_ci" title="Spanish (modern), case-insensitive">ucs2_spanish_ci</option> <option value="ucs2_swedish_ci" title="Swedish, case-insensitive">ucs2_swedish_ci</option> <option value="ucs2_thai_520_w2" title="Thai (UCA 5.2.0), multi-level">ucs2_thai_520_w2</option> <option value="ucs2_turkish_ci" title="Turkish, case-insensitive">ucs2_turkish_ci</option> <option value="ucs2_unicode_520_ci" title="Unicode (UCA 5.2.0), case-insensitive">ucs2_unicode_520_ci</option> <option value="ucs2_unicode_520_nopad_ci" title="Unicode (UCA 5.2.0), no-pad, case-insensitive">ucs2_unicode_520_nopad_ci</option> <option value="ucs2_unicode_ci" title="Unicode, case-insensitive">ucs2_unicode_ci</option> <option value="ucs2_unicode_nopad_ci" title="Unicode, no-pad, case-insensitive">ucs2_unicode_nopad_ci</option> <option value="ucs2_vietnamese_ci" title="Vietnamese, case-insensitive">ucs2_vietnamese_ci</option> </optgroup> <optgroup label="ujis" title="EUC-JP Japanese"> <option value="ujis_bin" title="Japanese, binary">ujis_bin</option> <option value="ujis_japanese_ci" title="Japanese, case-insensitive">ujis_japanese_ci</option> <option value="ujis_japanese_nopad_ci" title="Japanese, no-pad, case-insensitive">ujis_japanese_nopad_ci</option> <option value="ujis_nopad_bin" title="Japanese, no-pad, binary">ujis_nopad_bin</option> </optgroup> <optgroup label="utf16" title="UTF-16 Unicode"> <option value="utf16_bin" title="Unicode, binary">utf16_bin</option> <option value="utf16_croatian_ci" title="Croatian, case-insensitive">utf16_croatian_ci</option> <option value="utf16_croatian_mysql561_ci" title="Croatian (MySQL 5.6.1), case-insensitive">utf16_croatian_mysql561_ci</option> <option value="utf16_czech_ci" title="Czech, case-insensitive">utf16_czech_ci</option> <option value="utf16_danish_ci" title="Danish, case-insensitive">utf16_danish_ci</option> <option value="utf16_esperanto_ci" title="Esperanto, case-insensitive">utf16_esperanto_ci</option> <option value="utf16_estonian_ci" title="Estonian, case-insensitive">utf16_estonian_ci</option> <option value="utf16_general_ci" title="Unicode, case-insensitive">utf16_general_ci</option> <option value="utf16_general_nopad_ci" title="Unicode, no-pad, case-insensitive">utf16_general_nopad_ci</option> <option value="utf16_german2_ci" title="German (phone book order), case-insensitive">utf16_german2_ci</option> <option value="utf16_hungarian_ci" title="Hungarian, case-insensitive">utf16_hungarian_ci</option> <option value="utf16_icelandic_ci" title="Icelandic, case-insensitive">utf16_icelandic_ci</option> <option value="utf16_latvian_ci" title="Latvian, case-insensitive">utf16_latvian_ci</option> <option value="utf16_lithuanian_ci" title="Lithuanian, case-insensitive">utf16_lithuanian_ci</option> <option value="utf16_myanmar_ci" title="Burmese, case-insensitive">utf16_myanmar_ci</option> <option value="utf16_nopad_bin" title="Unicode, no-pad, binary">utf16_nopad_bin</option> <option value="utf16_persian_ci" title="Persian, case-insensitive">utf16_persian_ci</option> <option value="utf16_polish_ci" title="Polish, case-insensitive">utf16_polish_ci</option> <option value="utf16_roman_ci" title="West European, case-insensitive">utf16_roman_ci</option> <option value="utf16_romanian_ci" title="Romanian, case-insensitive">utf16_romanian_ci</option> <option value="utf16_sinhala_ci" title="Sinhalese, case-insensitive">utf16_sinhala_ci</option> <option value="utf16_slovak_ci" title="Slovak, case-insensitive">utf16_slovak_ci</option> <option value="utf16_slovenian_ci" title="Slovenian, case-insensitive">utf16_slovenian_ci</option> <option value="utf16_spanish2_ci" title="Spanish (traditional), case-insensitive">utf16_spanish2_ci</option> <option value="utf16_spanish_ci" title="Spanish (modern), case-insensitive">utf16_spanish_ci</option> <option value="utf16_swedish_ci" title="Swedish, case-insensitive">utf16_swedish_ci</option> <option value="utf16_thai_520_w2" title="Thai (UCA 5.2.0), multi-level">utf16_thai_520_w2</option> <option value="utf16_turkish_ci" title="Turkish, case-insensitive">utf16_turkish_ci</option> <option value="utf16_unicode_520_ci" title="Unicode (UCA 5.2.0), case-insensitive">utf16_unicode_520_ci</option> <option value="utf16_unicode_520_nopad_ci" title="Unicode (UCA 5.2.0), no-pad, case-insensitive">utf16_unicode_520_nopad_ci</option> <option value="utf16_unicode_ci" title="Unicode, case-insensitive">utf16_unicode_ci</option> <option value="utf16_unicode_nopad_ci" title="Unicode, no-pad, case-insensitive">utf16_unicode_nopad_ci</option> <option value="utf16_vietnamese_ci" title="Vietnamese, case-insensitive">utf16_vietnamese_ci</option> </optgroup> <optgroup label="utf16le" title="UTF-16LE Unicode"> <option value="utf16le_bin" title="Unicode, binary">utf16le_bin</option> <option value="utf16le_general_ci" title="Unicode, case-insensitive">utf16le_general_ci</option> <option value="utf16le_general_nopad_ci" title="Unicode, no-pad, case-insensitive">utf16le_general_nopad_ci</option> <option value="utf16le_nopad_bin" title="Unicode, no-pad, binary">utf16le_nopad_bin</option> </optgroup> <optgroup label="utf32" title="UTF-32 Unicode"> <option value="utf32_bin" title="Unicode, binary">utf32_bin</option> <option value="utf32_croatian_ci" title="Croatian, case-insensitive">utf32_croatian_ci</option> <option value="utf32_croatian_mysql561_ci" title="Croatian (MySQL 5.6.1), case-insensitive">utf32_croatian_mysql561_ci</option> <option value="utf32_czech_ci" title="Czech, case-insensitive">utf32_czech_ci</option> <option value="utf32_danish_ci" title="Danish, case-insensitive">utf32_danish_ci</option> <option value="utf32_esperanto_ci" title="Esperanto, case-insensitive">utf32_esperanto_ci</option> <option value="utf32_estonian_ci" title="Estonian, case-insensitive">utf32_estonian_ci</option> <option value="utf32_general_ci" title="Unicode, case-insensitive">utf32_general_ci</option> <option value="utf32_general_nopad_ci" title="Unicode, no-pad, case-insensitive">utf32_general_nopad_ci</option> <option value="utf32_german2_ci" title="German (phone book order), case-insensitive">utf32_german2_ci</option> <option value="utf32_hungarian_ci" title="Hungarian, case-insensitive">utf32_hungarian_ci</option> <option value="utf32_icelandic_ci" title="Icelandic, case-insensitive">utf32_icelandic_ci</option> <option value="utf32_latvian_ci" title="Latvian, case-insensitive">utf32_latvian_ci</option> <option value="utf32_lithuanian_ci" title="Lithuanian, case-insensitive">utf32_lithuanian_ci</option> <option value="utf32_myanmar_ci" title="Burmese, case-insensitive">utf32_myanmar_ci</option> <option value="utf32_nopad_bin" title="Unicode, no-pad, binary">utf32_nopad_bin</option> <option value="utf32_persian_ci" title="Persian, case-insensitive">utf32_persian_ci</option> <option value="utf32_polish_ci" title="Polish, case-insensitive">utf32_polish_ci</option> <option value="utf32_roman_ci" title="West European, case-insensitive">utf32_roman_ci</option> <option value="utf32_romanian_ci" title="Romanian, case-insensitive">utf32_romanian_ci</option> <option value="utf32_sinhala_ci" title="Sinhalese, case-insensitive">utf32_sinhala_ci</option> <option value="utf32_slovak_ci" title="Slovak, case-insensitive">utf32_slovak_ci</option> <option value="utf32_slovenian_ci" title="Slovenian, case-insensitive">utf32_slovenian_ci</option> <option value="utf32_spanish2_ci" title="Spanish (traditional), case-insensitive">utf32_spanish2_ci</option> <option value="utf32_spanish_ci" title="Spanish (modern), case-insensitive">utf32_spanish_ci</option> <option value="utf32_swedish_ci" title="Swedish, case-insensitive">utf32_swedish_ci</option> <option value="utf32_thai_520_w2" title="Thai (UCA 5.2.0), multi-level">utf32_thai_520_w2</option> <option value="utf32_turkish_ci" title="Turkish, case-insensitive">utf32_turkish_ci</option> <option value="utf32_unicode_520_ci" title="Unicode (UCA 5.2.0), case-insensitive">utf32_unicode_520_ci</option> <option value="utf32_unicode_520_nopad_ci" title="Unicode (UCA 5.2.0), no-pad, case-insensitive">utf32_unicode_520_nopad_ci</option> <option value="utf32_unicode_ci" title="Unicode, case-insensitive">utf32_unicode_ci</option> <option value="utf32_unicode_nopad_ci" title="Unicode, no-pad, case-insensitive">utf32_unicode_nopad_ci</option> <option value="utf32_vietnamese_ci" title="Vietnamese, case-insensitive">utf32_vietnamese_ci</option> </optgroup> <optgroup label="utf8" title="UTF-8 Unicode"> <option value="utf8_bin" title="Unicode, binary">utf8_bin</option> <option value="utf8_croatian_ci" title="Croatian, case-insensitive">utf8_croatian_ci</option> <option value="utf8_croatian_mysql561_ci" title="Croatian (MySQL 5.6.1), case-insensitive">utf8_croatian_mysql561_ci</option> <option value="utf8_czech_ci" title="Czech, case-insensitive">utf8_czech_ci</option> <option value="utf8_danish_ci" title="Danish, case-insensitive">utf8_danish_ci</option> <option value="utf8_esperanto_ci" title="Esperanto, case-insensitive">utf8_esperanto_ci</option> <option value="utf8_estonian_ci" title="Estonian, case-insensitive">utf8_estonian_ci</option> <option value="utf8_general_ci" title="Unicode, case-insensitive">utf8_general_ci</option> <option value="utf8_general_mysql500_ci" title="Unicode (MySQL 5.0.0), case-insensitive">utf8_general_mysql500_ci</option> <option value="utf8_general_nopad_ci" title="Unicode, no-pad, case-insensitive">utf8_general_nopad_ci</option> <option value="utf8_german2_ci" title="German (phone book order), case-insensitive">utf8_german2_ci</option> <option value="utf8_hungarian_ci" title="Hungarian, case-insensitive">utf8_hungarian_ci</option> <option value="utf8_icelandic_ci" title="Icelandic, case-insensitive">utf8_icelandic_ci</option> <option value="utf8_latvian_ci" title="Latvian, case-insensitive">utf8_latvian_ci</option> <option value="utf8_lithuanian_ci" title="Lithuanian, case-insensitive">utf8_lithuanian_ci</option> <option value="utf8_myanmar_ci" title="Burmese, case-insensitive">utf8_myanmar_ci</option> <option value="utf8_nopad_bin" title="Unicode, no-pad, binary">utf8_nopad_bin</option> <option value="utf8_persian_ci" title="Persian, case-insensitive">utf8_persian_ci</option> <option value="utf8_polish_ci" title="Polish, case-insensitive">utf8_polish_ci</option> <option value="utf8_roman_ci" title="West European, case-insensitive">utf8_roman_ci</option> <option value="utf8_romanian_ci" title="Romanian, case-insensitive">utf8_romanian_ci</option> <option value="utf8_sinhala_ci" title="Sinhalese, case-insensitive">utf8_sinhala_ci</option> <option value="utf8_slovak_ci" title="Slovak, case-insensitive">utf8_slovak_ci</option> <option value="utf8_slovenian_ci" title="Slovenian, case-insensitive">utf8_slovenian_ci</option> <option value="utf8_spanish2_ci" title="Spanish (traditional), case-insensitive">utf8_spanish2_ci</option> <option value="utf8_spanish_ci" title="Spanish (modern), case-insensitive">utf8_spanish_ci</option> <option value="utf8_swedish_ci" title="Swedish, case-insensitive">utf8_swedish_ci</option> <option value="utf8_thai_520_w2" title="Thai (UCA 5.2.0), multi-level">utf8_thai_520_w2</option> <option value="utf8_turkish_ci" title="Turkish, case-insensitive">utf8_turkish_ci</option> <option value="utf8_unicode_520_ci" title="Unicode (UCA 5.2.0), case-insensitive">utf8_unicode_520_ci</option> <option value="utf8_unicode_520_nopad_ci" title="Unicode (UCA 5.2.0), no-pad, case-insensitive">utf8_unicode_520_nopad_ci</option> <option value="utf8_unicode_ci" title="Unicode, case-insensitive">utf8_unicode_ci</option> <option value="utf8_unicode_nopad_ci" title="Unicode, no-pad, case-insensitive">utf8_unicode_nopad_ci</option> <option value="utf8_vietnamese_ci" title="Vietnamese, case-insensitive">utf8_vietnamese_ci</option> </optgroup> <optgroup label="utf8mb4" title="UTF-8 Unicode"> <option value="utf8mb4_bin" title="Unicode (UCA 4.0.0), binary">utf8mb4_bin</option> <option value="utf8mb4_croatian_ci" title="Croatian (UCA 4.0.0), case-insensitive">utf8mb4_croatian_ci</option> <option value="utf8mb4_croatian_mysql561_ci" title="Croatian (MySQL 5.6.1), case-insensitive">utf8mb4_croatian_mysql561_ci</option> <option value="utf8mb4_czech_ci" title="Czech (UCA 4.0.0), case-insensitive">utf8mb4_czech_ci</option> <option value="utf8mb4_danish_ci" title="Danish (UCA 4.0.0), case-insensitive">utf8mb4_danish_ci</option> <option value="utf8mb4_esperanto_ci" title="Esperanto (UCA 4.0.0), case-insensitive">utf8mb4_esperanto_ci</option> <option value="utf8mb4_estonian_ci" title="Estonian (UCA 4.0.0), case-insensitive">utf8mb4_estonian_ci</option> <option value="utf8mb4_general_ci" title="Unicode (UCA 4.0.0), case-insensitive">utf8mb4_general_ci</option> <option value="utf8mb4_general_nopad_ci" title="Unicode (UCA 4.0.0), no-pad, case-insensitive">utf8mb4_general_nopad_ci</option> <option value="utf8mb4_german2_ci" title="German (phone book order) (UCA 4.0.0), case-insensitive">utf8mb4_german2_ci</option> <option value="utf8mb4_hungarian_ci" title="Hungarian (UCA 4.0.0), case-insensitive">utf8mb4_hungarian_ci</option> <option value="utf8mb4_icelandic_ci" title="Icelandic (UCA 4.0.0), case-insensitive">utf8mb4_icelandic_ci</option> <option value="utf8mb4_latvian_ci" title="Latvian (UCA 4.0.0), case-insensitive">utf8mb4_latvian_ci</option> <option value="utf8mb4_lithuanian_ci" title="Lithuanian (UCA 4.0.0), case-insensitive">utf8mb4_lithuanian_ci</option> <option value="utf8mb4_myanmar_ci" title="Burmese (UCA 4.0.0), case-insensitive">utf8mb4_myanmar_ci</option> <option value="utf8mb4_nopad_bin" title="Unicode (UCA 4.0.0), no-pad, binary">utf8mb4_nopad_bin</option> <option value="utf8mb4_persian_ci" title="Persian (UCA 4.0.0), case-insensitive">utf8mb4_persian_ci</option> <option value="utf8mb4_polish_ci" title="Polish (UCA 4.0.0), case-insensitive">utf8mb4_polish_ci</option> <option value="utf8mb4_roman_ci" title="West European (UCA 4.0.0), case-insensitive">utf8mb4_roman_ci</option> <option value="utf8mb4_romanian_ci" title="Romanian (UCA 4.0.0), case-insensitive">utf8mb4_romanian_ci</option> <option value="utf8mb4_sinhala_ci" title="Sinhalese (UCA 4.0.0), case-insensitive">utf8mb4_sinhala_ci</option> <option value="utf8mb4_slovak_ci" title="Slovak (UCA 4.0.0), case-insensitive">utf8mb4_slovak_ci</option> <option value="utf8mb4_slovenian_ci" title="Slovenian (UCA 4.0.0), case-insensitive">utf8mb4_slovenian_ci</option> <option value="utf8mb4_spanish2_ci" title="Spanish (traditional) (UCA 4.0.0), case-insensitive">utf8mb4_spanish2_ci</option> <option value="utf8mb4_spanish_ci" title="Spanish (modern) (UCA 4.0.0), case-insensitive">utf8mb4_spanish_ci</option> <option value="utf8mb4_swedish_ci" title="Swedish (UCA 4.0.0), case-insensitive">utf8mb4_swedish_ci</option> <option value="utf8mb4_thai_520_w2" title="Thai (UCA 5.2.0), multi-level">utf8mb4_thai_520_w2</option> <option value="utf8mb4_turkish_ci" title="Turkish (UCA 4.0.0), case-insensitive">utf8mb4_turkish_ci</option> <option value="utf8mb4_unicode_520_ci" title="Unicode (UCA 5.2.0), case-insensitive">utf8mb4_unicode_520_ci</option> <option value="utf8mb4_unicode_520_nopad_ci" title="Unicode (UCA 5.2.0), no-pad, case-insensitive">utf8mb4_unicode_520_nopad_ci</option> <option value="utf8mb4_unicode_ci" title="Unicode (UCA 4.0.0), case-insensitive" selected>utf8mb4_unicode_ci</option> <option value="utf8mb4_unicode_nopad_ci" title="Unicode (UCA 4.0.0), no-pad, case-insensitive">utf8mb4_unicode_nopad_ci</option> <option value="utf8mb4_vietnamese_ci" title="Vietnamese (UCA 4.0.0), case-insensitive">utf8mb4_vietnamese_ci</option> </optgroup> </select> </div> </form> </li> <li id="li_user_preferences" class="list-group-item"> <a href="index.php?route=/preferences/manage&lang=en"> <span class="text-nowrap"><img src="themes/dot.gif" title="More settings" alt="More settings" class="icon ic_b_tblops"> More settings</span> </a> </li> </ul> </div> <div class="card mt-4"> <div class="card-header"> Appearance settings </div> <ul class="list-group list-group-flush"> <li id="li_select_lang" class="list-group-item"> <form method="get" action="index.php?route=/&lang=en" class="row row-cols-lg-auto align-items-center disableAjax"> <input type="hidden" name="db" value=""><input type="hidden" name="table" value=""><input type="hidden" name="lang" value="en"><input type="hidden" name="token" value="68796d444825575e6d2d604f364a4658"> <div class="col-12"> <label for="languageSelect" class="col-form-label text-nowrap"> <img src="themes/dot.gif" title="" alt="" class="icon ic_s_lang"> Language <a href="./doc/html/faq.html#faq7-2" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </label> </div> <div class="col-12"> <select name="lang" class="form-select autosubmit w-auto" lang="en" dir="ltr" id="languageSelect"> <option value="sq">Shqip - Albanian</option> <option value="ar">العربية - Arabic</option> <option value="hy">Հայերէն - Armenian</option> <option value="az">Azərbaycanca - Azerbaijani</option> <option value="bn">বাংলা - Bangla</option> <option value="be">Беларуская - Belarusian</option> <option value="bg">Български - Bulgarian</option> <option value="ca">Català - Catalan</option> <option value="zh_cn">中文 - Chinese simplified</option> <option value="zh_tw">中文 - Chinese traditional</option> <option value="cs">Čeština - Czech</option> <option value="da">Dansk - Danish</option> <option value="nl">Nederlands - Dutch</option> <option value="en" selected>English</option> <option value="en_gb">English (United Kingdom)</option> <option value="et">Eesti - Estonian</option> <option value="fi">Suomi - Finnish</option> <option value="fr">Français - French</option> <option value="gl">Galego - Galician</option> <option value="de">Deutsch - German</option> <option value="el">Ελληνικά - Greek</option> <option value="he">עברית - Hebrew</option> <option value="hu">Magyar - Hungarian</option> <option value="id">Bahasa Indonesia - Indonesian</option> <option value="ia">Interlingua</option> <option value="it">Italiano - Italian</option> <option value="ja">日本語 - Japanese</option> <option value="kk">Қазақ - Kazakh</option> <option value="ko">한국어 - Korean</option> <option value="nb">Norsk - Norwegian</option> <option value="pl">Polski - Polish</option> <option value="pt">Português - Portuguese</option> <option value="pt_br">Português (Brasil) - Portuguese (Brazil)</option> <option value="ro">Română - Romanian</option> <option value="ru">Русский - Russian</option> <option value="si">සිංහල - Sinhala</option> <option value="sk">Slovenčina - Slovak</option> <option value="sl">Slovenščina - Slovenian</option> <option value="es">Español - Spanish</option> <option value="sv">Svenska - Swedish</option> <option value="tr">Türkçe - Turkish</option> <option value="uk">Українська - Ukrainian</option> <option value="vi">Tiếng Việt - Vietnamese</option> </select> </div> </form> </li> <li id="li_select_theme" class="list-group-item"> <form method="post" action="index.php?route=/themes/set&lang=en" class="row row-cols-lg-auto align-items-center disableAjax"> <input type="hidden" name="lang" value="en"><input type="hidden" name="token" value="68796d444825575e6d2d604f364a4658"> <div class="col-12"> <label for="themeSelect" class="col-form-label"> <span class="text-nowrap"><img src="themes/dot.gif" title="Theme" alt="Theme" class="icon ic_s_theme"> Theme</span> </label> </div> <div class="col-12"> <div class="input-group"> <select name="set_theme" class="form-select autosubmit" lang="en" dir="ltr" id="themeSelect"> <option value="bootstrap">Bootstrap</option> <option value="metro">Metro</option> <option value="original">Original</option> <option value="pmahomme" selected>pmahomme</option> </select> <button type="button" class="btn btn-outline-secondary" data-bs-toggle="modal" data-bs-target="#themesModal"> View all </button> </div> </div> </form> </li> </ul> </div> </div> <div class="col-lg-5 col-12"> <div class="card mt-4"> <div class="card-header"> Database server </div> <ul class="list-group list-group-flush"> <li class="list-group-item"> Server: Localhost via UNIX socket </li> <li class="list-group-item"> Server type: MariaDB </li> <li class="list-group-item"> Server connection: <span class="">SSL is not being used</span> <a href="./doc/html/setup.html#ssl" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </li> <li class="list-group-item"> Server version: 10.4.27-MariaDB - Source distribution </li> <li class="list-group-item"> Protocol version: 10 </li> <li class="list-group-item"> User: root@localhost </li> <li class="list-group-item"> Server charset: <span lang="en" dir="ltr"> UTF-8 Unicode (utf8mb4) </span> </li> </ul> </div> <div class="card mt-4"> <div class="card-header"> Web server </div> <ul class="list-group list-group-flush"> <li class="list-group-item"> Apache/2.4.54 (Unix) OpenSSL/1.1.1s PHP/7.4.33 mod_perl/2.0.12 Perl/v5.34.1 </li> <li class="list-group-item" id="li_mysql_client_version"> Database client version: libmysql - mysqlnd 7.4.33 </li> <li class="list-group-item"> PHP extension: mysqli <a href="./url.php?url=https%3A%2F%2Fwww.php.net%2Fmanual%2Fen%2Fbook.mysqli.php" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> curl <a href="./url.php?url=https%3A%2F%2Fwww.php.net%2Fmanual%2Fen%2Fbook.curl.php" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> mbstring <a href="./url.php?url=https%3A%2F%2Fwww.php.net%2Fmanual%2Fen%2Fbook.mbstring.php" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </li> <li class="list-group-item"> PHP version: 7.4.33 </li> </ul> </div> <div class="card mt-4"> <div class="card-header"> phpMyAdmin </div> <ul class="list-group list-group-flush"> <li id="li_pma_version" class="list-group-item jsversioncheck"> Version information: <span class="version">5.2.0</span> </li> <li class="list-group-item"> <a href="./doc/html/index.html" target="_blank" rel="noopener noreferrer"> Documentation </a> </li> <li class="list-group-item"> <a href="./url.php?url=https%3A%2F%2Fwww.phpmyadmin.net%2F" target="_blank" rel="noopener noreferrer"> Official Homepage </a> </li> <li class="list-group-item"> <a href="./url.php?url=https%3A%2F%2Fwww.phpmyadmin.net%2Fcontribute%2F" target="_blank" rel="noopener noreferrer"> Contribute </a> </li> <li class="list-group-item"> <a href="./url.php?url=https%3A%2F%2Fwww.phpmyadmin.net%2Fsupport%2F" target="_blank" rel="noopener noreferrer"> Get support </a> </li> <li class="list-group-item"> <a href="index.php?route=/changelog&lang=en" target="_blank"> List of changes </a> </li> <li class="list-group-item"> <a href="index.php?route=/license&lang=en" target="_blank"> License </a> </li> </ul> </div> </div> </div> </div> </div> <div class="modal fade" id="themesModal" tabindex="-1" aria-labelledby="themesModalLabel" aria-hidden="true"> <div class="modal-dialog modal-xl"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="themesModalLabel">phpMyAdmin Themes</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"> <div class="spinner-border" role="status"> <span class="visually-hidden">Loading…</span> </div> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> <a href="./url.php?url=https%3A%2F%2Fwww.phpmyadmin.net%2Fthemes%2F#pma_5_2" class="btn btn-primary" rel="noopener noreferrer" target="_blank"> Get more themes! </a> </div> </div> </div> </div> </div> <div id="selflink" class="d-print-none"> <a href="index.php?route=%2F&server=1&lang=en" title="Open new phpMyAdmin window" target="_blank" rel="noopener noreferrer"> <img src="themes/dot.gif" title="Open new phpMyAdmin window" alt="Open new phpMyAdmin window" class="icon ic_window-new"> </a> </div> <div class="clearfloat d-print-none" id="pma_errors"> </div> <script data-cfasync="false" type="text/javascript"> // <![CDATA[ var debugSQLInfo = 'null'; // ]]> </script> </body> </html>Parameter Content-Security-PolicyEvidence default-src 'self' ;script-src 'self' 'unsafe-inline' 'unsafe-eval' ;style-src 'self' 'unsafe-inline' ;img-src 'self' data: *.tile.openstreetmap.org;object-src 'none';Solution Ensure that your web server, application server, load balancer, etc. is properly configured to set the Content-Security-Policy header.
-
CSP: script-src unsafe-eval (1)
GET http://localhost/phpmyadmin/
Alert tags Alert description Content Security Policy (CSP) is an added layer of security that helps to detect and mitigate certain types of attacks. Including (but not limited to) Cross Site Scripting (XSS), and data injection attacks. These attacks are used for everything from data theft to site defacement or distribution of malware. CSP provides a set of standard HTTP headers that allow website owners to declare approved sources of content that browsers should be allowed to load on that page — covered types are JavaScript, CSS, HTML frames, fonts, images and embeddable objects such as Java applets, ActiveX, audio and video files.
Other info script-src includes unsafe-eval.
Request Request line and header section (268 bytes)
GET http://localhost/phpmyadmin/ HTTP/1.1 host: localhost user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 pragma: no-cache cache-control: no-cache referer: http://localhost/dashboard/Request body (0 bytes)
Response Status line and header section (1561 bytes)
HTTP/1.1 200 OK Date: Sat, 19 Apr 2025 15:17:44 GMT Server: Apache/2.4.54 (Unix) OpenSSL/1.1.1s PHP/7.4.33 mod_perl/2.0.12 Perl/v5.34.1 X-Powered-By: PHP/7.4.33 Set-Cookie: phpMyAdmin=610f86c60f00a8f4dc92fe660c217e62; path=/phpmyadmin/; HttpOnly; SameSite=Strict Expires: Sat, 19 Apr 2025 15:17:45 +0000 Cache-Control: no-store, no-cache, must-revalidate, pre-check=0, post-check=0, max-age=0 Last-Modified: Sat, 19 Apr 2025 15:17:45 +0000 Set-Cookie: phpMyAdmin=610f86c60f00a8f4dc92fe660c217e62; path=/phpmyadmin/; HttpOnly; SameSite=Strict Set-Cookie: pma_lang=en; expires=Mon, 19-May-2025 15:17:45 GMT; Max-Age=2592000; path=/phpmyadmin/; HttpOnly; SameSite=Strict X-ob_mode: 1 X-Frame-Options: DENY Referrer-Policy: no-referrer Content-Security-Policy: default-src 'self' ;script-src 'self' 'unsafe-inline' 'unsafe-eval' ;style-src 'self' 'unsafe-inline' ;img-src 'self' data: *.tile.openstreetmap.org;object-src 'none'; X-Content-Security-Policy: default-src 'self' ;options inline-script eval-script;referrer no-referrer;img-src 'self' data: *.tile.openstreetmap.org;object-src 'none'; X-WebKit-CSP: default-src 'self' ;script-src 'self' 'unsafe-inline' 'unsafe-eval';referrer no-referrer;style-src 'self' 'unsafe-inline' ;img-src 'self' data: *.tile.openstreetmap.org;object-src 'none'; X-XSS-Protection: 1; mode=block X-Content-Type-Options: nosniff X-Permitted-Cross-Domain-Policies: none X-Robots-Tag: noindex, nofollow Pragma: no-cache Vary: Accept-Encoding Content-Type: text/html; charset=utf-8 content-length: 145988Response body (145988 bytes)
<!doctype html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="referrer" content="no-referrer"> <meta name="robots" content="noindex,nofollow"> <style id="cfs-style">html{display: none;}</style> <link rel="icon" href="favicon.ico" type="image/x-icon"> <link rel="shortcut icon" href="favicon.ico" type="image/x-icon"> <link rel="stylesheet" type="text/css" href="./themes/pmahomme/jquery/jquery-ui.css"> <link rel="stylesheet" type="text/css" href="js/vendor/codemirror/lib/codemirror.css?v=5.2.0"> <link rel="stylesheet" type="text/css" href="js/vendor/codemirror/addon/hint/show-hint.css?v=5.2.0"> <link rel="stylesheet" type="text/css" href="js/vendor/codemirror/addon/lint/lint.css?v=5.2.0"> <link rel="stylesheet" type="text/css" href="./themes/pmahomme/css/theme.css?v=5.2.0"> <title>localhost / localhost | phpMyAdmin 5.2.0</title> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery.min.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery-migrate.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/sprintf.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/ajax.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/keyhandler.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery-ui.min.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/name-conflict-fixes.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/bootstrap/bootstrap.bundle.min.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/js.cookie.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery.validate.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery-ui-timepicker-addon.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery.debounce-1.0.6.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/menu_resizer.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/cross_framing_protection.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/messages.php?l=en&v=5.2.0&lang=en"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/config.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/doclinks.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/functions.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/navigation.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/indexes.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/common.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/page_settings.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/home.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/lib/codemirror.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/mode/sql/sql.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/addon/runmode/runmode.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/addon/hint/show-hint.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/addon/hint/sql-hint.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/addon/lint/lint.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/codemirror/addon/lint/sql-lint.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/tracekit.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/error_report.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/drag_drop_import.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/shortcuts_handler.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/console.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript"> // <![CDATA[ CommonParams.setAll({common_query:"lang=en",opendb_url:"index.php?route=/database/structure&lang=en",lang:"en",server:"1",table:"",db:"",token:"68796d444825575e6d2d604f364a4658",text_dir:"ltr",LimitChars:"50",pftext:"",confirm:true,LoginCookieValidity:"1440",session_gc_maxlifetime:"1440",logged_in:true,is_https:false,rootPath:"/phpmyadmin/",arg_separator:"&",version:"5.2.0",auth_type:"config",user:"root"}); var firstDayOfCalendar = '0'; var themeImagePath = '.\/themes\/pmahomme\/img\/'; var mysqlDocTemplate = '.\/url.php\u003Furl\u003Dhttps\u00253A\u00252F\u00252Fdev.mysql.com\u00252Fdoc\u00252Frefman\u00252F8.0\u00252Fen\u00252F\u002525s.html'; var maxInputVars = 1000; if ($.datepicker) { $.datepicker.regional[''].closeText = 'Done'; $.datepicker.regional[''].prevText = 'Prev'; $.datepicker.regional[''].nextText = 'Next'; $.datepicker.regional[''].currentText = 'Today'; $.datepicker.regional[''].monthNames = [ 'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December', ]; $.datepicker.regional[''].monthNamesShort = [ 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec', ]; $.datepicker.regional[''].dayNames = [ 'Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', ]; $.datepicker.regional[''].dayNamesShort = [ 'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', ]; $.datepicker.regional[''].dayNamesMin = [ 'Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa', ]; $.datepicker.regional[''].weekHeader = 'Wk'; $.datepicker.regional[''].showMonthAfterYear = false; $.datepicker.regional[''].yearSuffix = ''; $.extend($.datepicker._defaults, $.datepicker.regional['']); } if ($.timepicker) { $.timepicker.regional[''].timeText = 'Time'; $.timepicker.regional[''].hourText = 'Hour'; $.timepicker.regional[''].minuteText = 'Minute'; $.timepicker.regional[''].secondText = 'Second'; $.extend($.timepicker._defaults, $.timepicker.regional['']); } function extendingValidatorMessages () { $.extend($.validator.messages, { required: 'This\u0020field\u0020is\u0020required', remote: 'Please\u0020fix\u0020this\u0020field', email: 'Please\u0020enter\u0020a\u0020valid\u0020email\u0020address', url: 'Please\u0020enter\u0020a\u0020valid\u0020URL', date: 'Please\u0020enter\u0020a\u0020valid\u0020date', dateISO: 'Please\u0020enter\u0020a\u0020valid\u0020date\u0020\u0028\u0020ISO\u0020\u0029', number: 'Please\u0020enter\u0020a\u0020valid\u0020number', creditcard: 'Please\u0020enter\u0020a\u0020valid\u0020credit\u0020card\u0020number', digits: 'Please\u0020enter\u0020only\u0020digits', equalTo: 'Please\u0020enter\u0020the\u0020same\u0020value\u0020again', maxlength: $.validator.format('Please\u0020enter\u0020no\u0020more\u0020than\u0020\u007B0\u007D\u0020characters'), minlength: $.validator.format('Please\u0020enter\u0020at\u0020least\u0020\u007B0\u007D\u0020characters'), rangelength: $.validator.format('Please\u0020enter\u0020a\u0020value\u0020between\u0020\u007B0\u007D\u0020and\u0020\u007B1\u007D\u0020characters\u0020long'), range: $.validator.format('Please\u0020enter\u0020a\u0020value\u0020between\u0020\u007B0\u007D\u0020and\u0020\u007B1\u007D'), max: $.validator.format('Please\u0020enter\u0020a\u0020value\u0020less\u0020than\u0020or\u0020equal\u0020to\u0020\u007B0\u007D'), min: $.validator.format('Please\u0020enter\u0020a\u0020value\u0020greater\u0020than\u0020or\u0020equal\u0020to\u0020\u007B0\u007D'), validationFunctionForDateTime: $.validator.format('Please\u0020enter\u0020a\u0020valid\u0020date\u0020or\u0020time'), validationFunctionForHex: $.validator.format('Please\u0020enter\u0020a\u0020valid\u0020HEX\u0020input'), validationFunctionForMd5: $.validator.format('This\u0020column\u0020can\u0020not\u0020contain\u0020a\u002032\u0020chars\u0020value'), validationFunctionForAesDesEncrypt: $.validator.format('These\u0020functions\u0020are\u0020meant\u0020to\u0020return\u0020a\u0020binary\u0020result\u003B\u0020to\u0020avoid\u0020inconsistent\u0020results\u0020you\u0020should\u0020store\u0020it\u0020in\u0020a\u0020BINARY,\u0020VARBINARY,\u0020or\u0020BLOB\u0020column.') }); } ConsoleEnterExecutes=false AJAX.scriptHandler .add('vendor/jquery/jquery.min.js', 0) .add('vendor/jquery/jquery-migrate.js', 0) .add('vendor/sprintf.js', 1) .add('ajax.js', 0) .add('keyhandler.js', 1) .add('vendor/jquery/jquery-ui.min.js', 0) .add('name-conflict-fixes.js', 1) .add('vendor/bootstrap/bootstrap.bundle.min.js', 1) .add('vendor/js.cookie.js', 1) .add('vendor/jquery/jquery.validate.js', 0) .add('vendor/jquery/jquery-ui-timepicker-addon.js', 0) .add('vendor/jquery/jquery.debounce-1.0.6.js', 0) .add('menu_resizer.js', 1) .add('cross_framing_protection.js', 0) .add('messages.php', 0) .add('config.js', 1) .add('doclinks.js', 1) .add('functions.js', 1) .add('navigation.js', 1) .add('indexes.js', 1) .add('common.js', 1) .add('page_settings.js', 1) .add('home.js', 1) .add('vendor/codemirror/lib/codemirror.js', 0) .add('vendor/codemirror/mode/sql/sql.js', 0) .add('vendor/codemirror/addon/runmode/runmode.js', 0) .add('vendor/codemirror/addon/hint/show-hint.js', 0) .add('vendor/codemirror/addon/hint/sql-hint.js', 0) .add('vendor/codemirror/addon/lint/lint.js', 0) .add('codemirror/addon/lint/sql-lint.js', 0) .add('vendor/tracekit.js', 1) .add('error_report.js', 1) .add('drag_drop_import.js', 1) .add('shortcuts_handler.js', 1) .add('console.js', 1) ; $(function() { AJAX.fireOnload('vendor/sprintf.js'); AJAX.fireOnload('keyhandler.js'); AJAX.fireOnload('name-conflict-fixes.js'); AJAX.fireOnload('vendor/bootstrap/bootstrap.bundle.min.js'); AJAX.fireOnload('vendor/js.cookie.js'); AJAX.fireOnload('menu_resizer.js'); AJAX.fireOnload('config.js'); AJAX.fireOnload('doclinks.js'); AJAX.fireOnload('functions.js'); AJAX.fireOnload('navigation.js'); AJAX.fireOnload('indexes.js'); AJAX.fireOnload('common.js'); AJAX.fireOnload('page_settings.js'); AJAX.fireOnload('home.js'); AJAX.fireOnload('vendor/tracekit.js'); AJAX.fireOnload('error_report.js'); AJAX.fireOnload('drag_drop_import.js'); AJAX.fireOnload('shortcuts_handler.js'); AJAX.fireOnload('console.js'); }); // ]]> </script> <noscript><style>html{display:block}</style></noscript> </head> <body> <div id="pma_navigation" class="d-print-none" data-config-navigation-width="0"> <div id="pma_navigation_resizer"></div> <div id="pma_navigation_collapser"></div> <div id="pma_navigation_content"> <div id="pma_navigation_header"> <div id="pmalogo"> <a href="index.php?lang=en"> <img id="imgpmalogo" src="./themes/pmahomme/img/logo_left.png" alt="phpMyAdmin"> </a> </div> <div id="navipanellinks"> <a href="index.php?route=/&lang=en" title="Home"><img src="themes/dot.gif" title="Home" alt="Home" class="icon ic_b_home"></a> <a class="logout disableAjax" href="index.php?route=/logout&lang=en" title="Empty session data"><img src="themes/dot.gif" title="Empty session data" alt="Empty session data" class="icon ic_s_loggoff"></a> <a href="./doc/html/index.html" title="phpMyAdmin documentation" target="_blank" rel="noopener noreferrer"><img src="themes/dot.gif" title="phpMyAdmin documentation" alt="phpMyAdmin documentation" class="icon ic_b_docs"></a> <a href="./url.php?url=https%3A%2F%2Fmariadb.com%2Fkb%2Fen%2Fdocumentation%2F" title="MariaDB Documentation" target="_blank" rel="noopener noreferrer"><img src="themes/dot.gif" title="MariaDB Documentation" alt="MariaDB Documentation" class="icon ic_b_sqlhelp"></a> <a id="pma_navigation_settings_icon" href="#" title="Navigation panel settings"><img src="themes/dot.gif" title="Navigation panel settings" alt="Navigation panel settings" class="icon ic_s_cog"></a> <a id="pma_navigation_reload" href="#" title="Reload navigation panel"><img src="themes/dot.gif" title="Reload navigation panel" alt="Reload navigation panel" class="icon ic_s_reload"></a> </div> <img src="themes/dot.gif" title="Loading…" alt="Loading…" style="visibility: hidden; display:none" class="icon ic_ajax_clock_small throbber"> </div> <div id="pma_navigation_tree" class="list_container synced highlight autoexpand"> <div class="pma_quick_warp"> <div class="drop_list"><button title="Recent tables" class="drop_button btn">Recent</button><ul id="pma_recent_list"><li class="warp_link"> <a href="index.php?route=/table/recent-favorite&db=scan&table=wp_users&lang=en"> `scan`.`wp_users` </a> </li> <li class="warp_link"> <a href="index.php?route=/table/recent-favorite&db=attack&table=wp_users&lang=en"> `attack`.`wp_users` </a> </li> <li class="warp_link"> <a href="index.php?route=/table/recent-favorite&db=test&table=wp_users&lang=en"> `test`.`wp_users` </a> </li> </ul></div> <div class="drop_list"><button title="Favorite tables" class="drop_button btn">Favorites</button><ul id="pma_favorite_list"><li class="warp_link"> There are no favorite tables. </li> </ul></div> <div class="clearfloat"></div> </div> <div class="clearfloat"></div> <ul> <!-- CONTROLS START --> <li id="navigation_controls_outer"> <div id="navigation_controls"> <a href="#" id="pma_navigation_collapse" title="Collapse all"><img src="themes/dot.gif" title="Collapse all" alt="Collapse all" class="icon ic_s_collapseall"></a> <a href="#" id="pma_navigation_sync" title="Unlink from main panel"><img src="themes/dot.gif" title="Unlink from main panel" alt="Unlink from main panel" class="icon ic_s_link"></a> </div> </li> <!-- CONTROLS ENDS --> </ul> <div id='pma_navigation_tree_content'> <ul> <li class="first new_database italics"> <div class="block"> <i class="first"></i> </div> <div class="block second"> <a href="index.php?route=/server/databases&lang=en"><img src="themes/dot.gif" title="New" alt="New" class="icon ic_b_newdb"></a> </div> <a class="hover_show_full" href="index.php?route=/server/databases&lang=en" title="New">New</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.YXR0YWNr" data-vpath="cm9vdA==.YXR0YWNr" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=attack&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=attack&lang=en" title="Structure">attack</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.aW5mb3JtYXRpb25fc2NoZW1h" data-vpath="cm9vdA==.aW5mb3JtYXRpb25fc2NoZW1h" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=information_schema&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=information_schema&lang=en" title="Structure">information_schema</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.bXlzcWw=" data-vpath="cm9vdA==.bXlzcWw=" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=mysql&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=mysql&lang=en" title="Structure">mysql</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.cGVyZm9ybWFuY2Vfc2NoZW1h" data-vpath="cm9vdA==.cGVyZm9ybWFuY2Vfc2NoZW1h" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=performance_schema&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=performance_schema&lang=en" title="Structure">performance_schema</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.cGhwbXlhZG1pbg==" data-vpath="cm9vdA==.cGhwbXlhZG1pbg==" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=phpmyadmin&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=phpmyadmin&lang=en" title="Structure">phpmyadmin</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.c2Nhbg==" data-vpath="cm9vdA==.c2Nhbg==" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=scan&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=scan&lang=en" title="Structure">scan</a> <div class="clearfloat"></div> </li> <li class="last database"> <div class="block"> <i></i> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.dGVzdA==" data-vpath="cm9vdA==.dGVzdA==" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=test&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=test&lang=en" title="Structure">test</a> <div class="clearfloat"></div> </li> </ul> </div> </div> <div id="pma_navi_settings_container"> <div id="pma_navigation_settings"><div class="page_settings"><form method="post" action="index.php?route=%2F&server=1&lang=en" class="config-form disableAjax"> <input type="hidden" name="tab_hash" value=""> <input type="hidden" name="check_page_refresh" id="check_page_refresh" value=""> <input type="hidden" name="lang" value="en"><input type="hidden" name="token" value="68796d444825575e6d2d604f364a4658"> <input type="hidden" name="submit_save" value="Navi"> <ul class="nav nav-tabs" id="configFormDisplayTab" role="tablist"> <li class="nav-item" role="presentation"> <a class="nav-link active" id="Navi_panel-tab" href="#Navi_panel" data-bs-toggle="tab" role="tab" aria-controls="Navi_panel" aria-selected="true">Navigation panel</a> </li> <li class="nav-item" role="presentation"> <a class="nav-link" id="Navi_tree-tab" href="#Navi_tree" data-bs-toggle="tab" role="tab" aria-controls="Navi_tree" aria-selected="false">Navigation tree</a> </li> <li class="nav-item" role="presentation"> <a class="nav-link" id="Navi_servers-tab" href="#Navi_servers" data-bs-toggle="tab" role="tab" aria-controls="Navi_servers" aria-selected="false">Servers</a> </li> <li class="nav-item" role="presentation"> <a class="nav-link" id="Navi_databases-tab" href="#Navi_databases" data-bs-toggle="tab" role="tab" aria-controls="Navi_databases" aria-selected="false">Databases</a> </li> <li class="nav-item" role="presentation"> <a class="nav-link" id="Navi_tables-tab" href="#Navi_tables" data-bs-toggle="tab" role="tab" aria-controls="Navi_tables" aria-selected="false">Tables</a> </li> </ul> <div class="tab-content"> <div class="tab-pane fade show active" id="Navi_panel" role="tabpanel" aria-labelledby="Navi_panel-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Navigation panel</h5> <h6 class="card-subtitle mb-2 text-muted">Customize appearance of the navigation panel.</h6> <fieldset class="optbox"> <legend>Navigation panel</legend> <table class="table table-borderless"> <tr> <th> <label for="ShowDatabasesNavigationAsTree">Show databases navigation as tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_ShowDatabasesNavigationAsTree" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>In the navigation panel, replaces the database tree with a selector</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="ShowDatabasesNavigationAsTree" id="ShowDatabasesNavigationAsTree" checked> </span> <a class="restore-default hide" href="#ShowDatabasesNavigationAsTree" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationLinkWithMainPanel">Link with main panel</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationLinkWithMainPanel" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Link with main panel by highlighting the current database or table.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationLinkWithMainPanel" id="NavigationLinkWithMainPanel" checked> </span> <a class="restore-default hide" href="#NavigationLinkWithMainPanel" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationDisplayLogo">Display logo</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationDisplayLogo" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Show logo in navigation panel.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationDisplayLogo" id="NavigationDisplayLogo" checked> </span> <a class="restore-default hide" href="#NavigationDisplayLogo" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationLogoLink">Logo link URL</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationLogoLink" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>URL where logo in the navigation panel will point to.</small> </th> <td> <input type="text" name="NavigationLogoLink" id="NavigationLogoLink" value="index.php" class="w-75"> <a class="restore-default hide" href="#NavigationLogoLink" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationLogoLinkWindow">Logo link target</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationLogoLinkWindow" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Open the linked page in the main window (<code>main</code>) or in a new one (<code>new</code>).</small> </th> <td> <select name="NavigationLogoLinkWindow" id="NavigationLogoLinkWindow" class="w-75"> <option value="main" selected>main</option> <option value="new">new</option> </select> <a class="restore-default hide" href="#NavigationLogoLinkWindow" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreePointerEnable">Enable highlighting</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreePointerEnable" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Highlight server under the mouse cursor.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreePointerEnable" id="NavigationTreePointerEnable" checked> </span> <a class="restore-default hide" href="#NavigationTreePointerEnable" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="FirstLevelNavigationItems">Maximum items on first level</label> <span class="doc"> <a href="./doc/html/config.html#cfg_FirstLevelNavigationItems" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>The number of items that can be displayed on each page on the first level of the navigation tree.</small> </th> <td> <input type="number" name="FirstLevelNavigationItems" id="FirstLevelNavigationItems" value="100" class=""> <a class="restore-default hide" href="#FirstLevelNavigationItems" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeDisplayItemFilterMinimum">Minimum number of items to display the filter box</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDisplayItemFilterMinimum" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Defines the minimum number of items (tables, views, routines and events) to display a filter box.</small> </th> <td> <input type="number" name="NavigationTreeDisplayItemFilterMinimum" id="NavigationTreeDisplayItemFilterMinimum" value="30" class=""> <a class="restore-default hide" href="#NavigationTreeDisplayItemFilterMinimum" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NumRecentTables">Recently used tables</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NumRecentTables" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Maximum number of recently used tables; set 0 to disable.</small> </th> <td> <input type="number" name="NumRecentTables" id="NumRecentTables" value="10" class=""> <a class="restore-default hide" href="#NumRecentTables" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NumFavoriteTables">Favorite tables</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NumFavoriteTables" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Maximum number of favorite tables; set 0 to disable.</small> </th> <td> <input type="number" name="NumFavoriteTables" id="NumFavoriteTables" value="10" class=""> <a class="restore-default hide" href="#NumFavoriteTables" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationWidth">Navigation panel width</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationWidth" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Set to 0 to collapse navigation panel.</small> </th> <td> <input type="number" name="NavigationWidth" id="NavigationWidth" value="0" class="custom"> <a class="restore-default hide" href="#NavigationWidth" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> <div class="tab-pane fade" id="Navi_tree" role="tabpanel" aria-labelledby="Navi_tree-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Navigation tree</h5> <h6 class="card-subtitle mb-2 text-muted">Customize the navigation tree.</h6> <fieldset class="optbox"> <legend>Navigation tree</legend> <table class="table table-borderless"> <tr> <th> <label for="MaxNavigationItems">Maximum items in branch</label> <span class="doc"> <a href="./doc/html/config.html#cfg_MaxNavigationItems" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>The number of items that can be displayed on each page of the navigation tree.</small> </th> <td> <input type="number" name="MaxNavigationItems" id="MaxNavigationItems" value="50" class=""> <a class="restore-default hide" href="#MaxNavigationItems" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeEnableGrouping">Group items in the tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeEnableGrouping" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Group items in the navigation tree (determined by the separator defined in the Databases and Tables tabs above).</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeEnableGrouping" id="NavigationTreeEnableGrouping" checked> </span> <a class="restore-default hide" href="#NavigationTreeEnableGrouping" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeEnableExpansion">Enable navigation tree expansion</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeEnableExpansion" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to offer the possibility of tree expansion in the navigation panel.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeEnableExpansion" id="NavigationTreeEnableExpansion" checked> </span> <a class="restore-default hide" href="#NavigationTreeEnableExpansion" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowTables">Show tables in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowTables" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show tables under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowTables" id="NavigationTreeShowTables" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowTables" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowViews">Show views in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowViews" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show views under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowViews" id="NavigationTreeShowViews" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowViews" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowFunctions">Show functions in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowFunctions" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show functions under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowFunctions" id="NavigationTreeShowFunctions" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowFunctions" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowProcedures">Show procedures in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowProcedures" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show procedures under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowProcedures" id="NavigationTreeShowProcedures" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowProcedures" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowEvents">Show events in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowEvents" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show events under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowEvents" id="NavigationTreeShowEvents" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowEvents" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeAutoexpandSingleDb">Expand single database</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeAutoexpandSingleDb" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to expand single database in the navigation tree automatically.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeAutoexpandSingleDb" id="NavigationTreeAutoexpandSingleDb" checked> </span> <a class="restore-default hide" href="#NavigationTreeAutoexpandSingleDb" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> <div class="tab-pane fade" id="Navi_servers" role="tabpanel" aria-labelledby="Navi_servers-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Servers</h5> <h6 class="card-subtitle mb-2 text-muted">Servers display options.</h6> <fieldset class="optbox"> <legend>Servers</legend> <table class="table table-borderless"> <tr> <th> <label for="NavigationDisplayServers">Display servers selection</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationDisplayServers" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Display server choice at the top of the navigation panel.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationDisplayServers" id="NavigationDisplayServers" checked> </span> <a class="restore-default hide" href="#NavigationDisplayServers" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="DisplayServersList">Display servers as a list</label> <span class="doc"> <a href="./doc/html/config.html#cfg_DisplayServersList" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Show server listing as a list instead of a drop down.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="DisplayServersList" id="DisplayServersList"> </span> <a class="restore-default hide" href="#DisplayServersList" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> <div class="tab-pane fade" id="Navi_databases" role="tabpanel" aria-labelledby="Navi_databases-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Databases</h5> <h6 class="card-subtitle mb-2 text-muted">Databases display options.</h6> <fieldset class="optbox"> <legend>Databases</legend> <table class="table table-borderless"> <tr> <th> <label for="NavigationTreeDisplayDbFilterMinimum">Minimum number of databases to display the database filter box</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDisplayDbFilterMinimum" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> </th> <td> <input type="number" name="NavigationTreeDisplayDbFilterMinimum" id="NavigationTreeDisplayDbFilterMinimum" value="30" class=""> <a class="restore-default hide" href="#NavigationTreeDisplayDbFilterMinimum" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeDbSeparator">Database tree separator</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDbSeparator" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>String that separates databases into different tree levels.</small> </th> <td> <input type="text" size="25" name="NavigationTreeDbSeparator" id="NavigationTreeDbSeparator" value="_" class=""> <a class="restore-default hide" href="#NavigationTreeDbSeparator" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> <div class="tab-pane fade" id="Navi_tables" role="tabpanel" aria-labelledby="Navi_tables-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Tables</h5> <h6 class="card-subtitle mb-2 text-muted">Tables display options.</h6> <fieldset class="optbox"> <legend>Tables</legend> <table class="table table-borderless"> <tr> <th> <label for="NavigationTreeDefaultTabTable">Target for quick access icon</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDefaultTabTable" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> </th> <td> <select name="NavigationTreeDefaultTabTable" id="NavigationTreeDefaultTabTable" class="w-75"> <option value="structure" selected>Structure</option> <option value="sql">SQL</option> <option value="search">Search</option> <option value="insert">Insert</option> <option value="browse">Browse</option> </select> <a class="restore-default hide" href="#NavigationTreeDefaultTabTable" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeDefaultTabTable2">Target for second quick access icon</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDefaultTabTable2" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> </th> <td> <select name="NavigationTreeDefaultTabTable2" id="NavigationTreeDefaultTabTable2" class="w-75"> <option value="" selected></option> <option value="structure">Structure</option> <option value="sql">SQL</option> <option value="search">Search</option> <option value="insert">Insert</option> <option value="browse">Browse</option> </select> <a class="restore-default hide" href="#NavigationTreeDefaultTabTable2" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeTableSeparator">Table tree separator</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeTableSeparator" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>String that separates tables into different tree levels.</small> </th> <td> <input type="text" size="25" name="NavigationTreeTableSeparator" id="NavigationTreeTableSeparator" value="__" class=""> <a class="restore-default hide" href="#NavigationTreeTableSeparator" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeTableLevel">Maximum table tree depth</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeTableLevel" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> </th> <td> <input type="number" name="NavigationTreeTableLevel" id="NavigationTreeTableLevel" value="1" class=""> <a class="restore-default hide" href="#NavigationTreeTableLevel" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> </div> </form> <script type="text/javascript"> if (typeof configInlineParams === 'undefined' || !Array.isArray(configInlineParams)) { configInlineParams = []; } configInlineParams.push(function () { registerFieldValidator('FirstLevelNavigationItems', 'validatePositiveNumber', true); registerFieldValidator('NavigationTreeDisplayItemFilterMinimum', 'validatePositiveNumber', true); registerFieldValidator('NumRecentTables', 'validateNonNegativeNumber', true); registerFieldValidator('NumFavoriteTables', 'validateNonNegativeNumber', true); registerFieldValidator('NavigationWidth', 'validateNonNegativeNumber', true); registerFieldValidator('MaxNavigationItems', 'validatePositiveNumber', true); registerFieldValidator('NavigationTreeTableLevel', 'validatePositiveNumber', true); $.extend(Messages, { 'error_nan_p': 'Not\u0020a\u0020positive\u0020number\u0021', 'error_nan_nneg': 'Not\u0020a\u0020non\u002Dnegative\u0020number\u0021', 'error_incorrect_port': 'Not\u0020a\u0020valid\u0020port\u0020number\u0021', 'error_invalid_value': 'Incorrect\u0020value\u0021', 'error_value_lte': 'Value\u0020must\u0020be\u0020less\u0020than\u0020or\u0020equal\u0020to\u0020\u0025s\u0021', }); $.extend(defaultValues, { 'ShowDatabasesNavigationAsTree': true, 'NavigationLinkWithMainPanel': true, 'NavigationDisplayLogo': true, 'NavigationLogoLink': 'index.php', 'NavigationLogoLinkWindow': ['main'], 'NavigationTreePointerEnable': true, 'FirstLevelNavigationItems': '100', 'NavigationTreeDisplayItemFilterMinimum': '30', 'NumRecentTables': '10', 'NumFavoriteTables': '10', 'NavigationWidth': '240', 'MaxNavigationItems': '50', 'NavigationTreeEnableGrouping': true, 'NavigationTreeEnableExpansion': true, 'NavigationTreeShowTables': true, 'NavigationTreeShowViews': true, 'NavigationTreeShowFunctions': true, 'NavigationTreeShowProcedures': true, 'NavigationTreeShowEvents': true, 'NavigationTreeAutoexpandSingleDb': true, 'NavigationDisplayServers': true, 'DisplayServersList': false, 'NavigationTreeDisplayDbFilterMinimum': '30', 'NavigationTreeDbSeparator': '_', 'NavigationTreeDefaultTabTable': ['structure'], 'NavigationTreeDefaultTabTable2': [''], 'NavigationTreeTableSeparator': '__', 'NavigationTreeTableLevel': '1' }); }); if (typeof configScriptLoaded !== 'undefined' && configInlineParams) { loadInlineConfig(); } </script> </div></div> </div> </div> <div class="pma_drop_handler"> Drop files here </div> <div class="pma_sql_import_status"> <h2> SQL upload ( <span class="pma_import_count">0</span> ) <span class="close">x</span> <span class="minimize">-</span> </h2> <div></div> </div> </div> <div class="modal fade" id="unhideNavItemModal" tabindex="-1" aria-labelledby="unhideNavItemModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="unhideNavItemModalLabel">Show hidden navigation tree items.</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"></div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> </div> </div> </div> </div> <noscript> <div class="alert alert-danger" role="alert"> <img src="themes/dot.gif" title="" alt="" class="icon ic_s_error"> Javascript must be enabled past this point! </div> </noscript> <div id="floating_menubar" class="d-print-none"></div> <nav id="server-breadcrumb" aria-label="breadcrumb"> <ol class="breadcrumb breadcrumb-navbar"> <li class="breadcrumb-item"> <img src="themes/dot.gif" title="" alt="" class="icon ic_s_host"> <a href="index.php?route=/&lang=en" data-raw-text="localhost" draggable="false"> Server: localhost </a> </li> </ol> </nav> <div id="topmenucontainer" class="menucontainer"> <nav class="navbar navbar-expand-lg navbar-light bg-light"> <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-label="Toggle navigation" aria-controls="navbarNav" aria-expanded="false"> <span class="navbar-toggler-icon"></span> </button> <div class="collapse navbar-collapse" id="navbarNav"> <ul id="topmenu" class="navbar-nav"> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/databases&lang=en"> <img src="themes/dot.gif" title="Databases" alt="Databases" class="icon ic_s_db"> Databases </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/sql&lang=en"> <img src="themes/dot.gif" title="SQL" alt="SQL" class="icon ic_b_sql"> SQL </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/status&lang=en"> <img src="themes/dot.gif" title="Status" alt="Status" class="icon ic_s_status"> Status </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/privileges&viewing_mode=server&lang=en"> <img src="themes/dot.gif" title="User accounts" alt="User accounts" class="icon ic_s_rights"> User accounts </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/export&lang=en"> <img src="themes/dot.gif" title="Export" alt="Export" class="icon ic_b_export"> Export </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/import&lang=en"> <img src="themes/dot.gif" title="Import" alt="Import" class="icon ic_b_import"> Import </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/preferences/manage&lang=en"> <img src="themes/dot.gif" title="Settings" alt="Settings" class="icon ic_b_tblops"> Settings </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/replication&lang=en"> <img src="themes/dot.gif" title="Replication" alt="Replication" class="icon ic_s_replication"> Replication </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/variables&lang=en"> <img src="themes/dot.gif" title="Variables" alt="Variables" class="icon ic_s_vars"> Variables </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/collations&lang=en"> <img src="themes/dot.gif" title="Charsets" alt="Charsets" class="icon ic_s_asci"> Charsets </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/engines&lang=en"> <img src="themes/dot.gif" title="Engines" alt="Engines" class="icon ic_b_engine"> Engines </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/plugins&lang=en"> <img src="themes/dot.gif" title="Plugins" alt="Plugins" class="icon ic_b_plugin"> Plugins </a> </li> </ul> </div> </nav> </div> <span id="page_nav_icons" class="d-print-none"> <span id="lock_page_icon"></span> <span id="page_settings_icon"> <img src="themes/dot.gif" title="Page-related settings" alt="Page-related settings" class="icon ic_s_cog"> </span> <a id="goto_pagetop" href="#"><img src="themes/dot.gif" title="Click on the bar to scroll to top of page" alt="Click on the bar to scroll to top of page" class="icon ic_s_top"></a> </span> <div id="pma_console_container" class="d-print-none"> <div id="pma_console"> <div class="toolbar collapsed"> <div class="switch_button console_switch"> <img src="themes/dot.gif" title="SQL Query Console" alt="SQL Query Console" class="icon ic_console"> <span>Console</span> </div> <div class="button clear"> <span>Clear</span> </div> <div class="button history"> <span>History</span> </div> <div class="button options"> <span>Options</span> </div> <div class="button bookmarks"> <span>Bookmarks</span> </div> <div class="button debug hide"> <span>Debug SQL</span> </div> </div> <div class="content"> <div class="console_message_container"> <div class="message welcome"> <span id="instructions-0"> Press Ctrl+Enter to execute query </span> <span class="hide" id="instructions-1"> Press Enter to execute query </span> </div> </div><!-- console_message_container --> <div class="query_input"> <span class="console_query_input"></span> </div> </div><!-- message end --> <div class="mid_layer"></div> <div class="card" id="debug_console"> <div class="toolbar "> <div class="button order order_asc"> <span>ascending</span> </div> <div class="button order order_desc"> <span>descending</span> </div> <div class="text"> <span>Order:</span> </div> <div class="switch_button"> <span>Debug SQL</span> </div> <div class="button order_by sort_count"> <span>Count</span> </div> <div class="button order_by sort_exec"> <span>Execution order</span> </div> <div class="button order_by sort_time"> <span>Time taken</span> </div> <div class="text"> <span>Order by:</span> </div> <div class="button group_queries"> <span>Group queries</span> </div> <div class="button ungroup_queries"> <span>Ungroup queries</span> </div> </div> <div class="content debug"> <div class="message welcome"></div> <div class="debugLog"></div> </div> <!-- Content --> <div class="templates"> <div class="debug_query action_content"> <span class="action collapse"> Collapse </span> <span class="action expand"> Expand </span> <span class="action dbg_show_trace"> Show trace </span> <span class="action dbg_hide_trace"> Hide trace </span> <span class="text count hide"> Count </span> <span class="text time"> Time taken </span> </div> </div> <!-- Template --> </div> <!-- Debug SQL card --> <div class="card" id="pma_bookmarks"> <div class="toolbar "> <div class="switch_button"> <span>Bookmarks</span> </div> <div class="button refresh"> <span>Refresh</span> </div> <div class="button add"> <span>Add</span> </div> </div> <div class="content bookmark"> <div class="message welcome"> <span>No bookmarks</span> </div> </div> <div class="mid_layer"></div> <div class="card add"> <div class="toolbar "> <div class="switch_button"> <span>Add bookmark</span> </div> </div> <div class="content add_bookmark"> <div class="options"> <label> Label: <input type="text" name="label"> </label> <label> Target database: <input type="text" name="targetdb"> </label> <label> <input type="checkbox" name="shared">Share this bookmark </label> <button class="btn btn-primary" type="submit" name="submit">OK</button> </div> <!-- options --> <div class="query_input"> <span class="bookmark_add_input"></span> </div> </div> </div> <!-- Add bookmark card --> </div> <!-- Bookmarks card --> <div class="card" id="pma_console_options"> <div class="toolbar "> <div class="switch_button"> <span>Options</span> </div> <div class="button default"> <span>Set default</span> </div> </div> <div class="content"> <label> <input type="checkbox" name="always_expand">Always expand query messages </label> <br> <label> <input type="checkbox" name="start_history">Show query history at start </label> <br> <label> <input type="checkbox" name="current_query">Show current browsing query </label> <br> <label> <input type="checkbox" name="enter_executes"> Execute queries on Enter and insert new line with Shift+Enter. To make this permanent, view settings. </label> <br> <label> <input type="checkbox" name="dark_theme">Switch to dark theme </label> <br> </div> </div> <!-- Options card --> <div class="templates"> <div class="query_actions"> <span class="action collapse"> Collapse </span> <span class="action expand"> Expand </span> <span class="action requery"> Requery </span> <span class="action edit"> Edit </span> <span class="action explain"> Explain </span> <span class="action profiling"> Profiling </span> <span class="action bookmark"> Bookmark </span> <span class="text failed"> Query failed </span> <span class="text targetdb"> Database : <span></span> </span> <span class="text query_time"> Queried time : <span></span> </span> </div> </div> </div> <!-- #console end --> </div> <!-- #console_container end --> <div id="page_content"> <div class="modal fade" id="previewSqlModal" tabindex="-1" aria-labelledby="previewSqlModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="previewSqlModalLabel">Loading</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"></div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> </div> </div> </div> </div> <div class="modal fade" id="enumEditorModal" tabindex="-1" aria-labelledby="enumEditorModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="enumEditorModalLabel">ENUM/SET editor</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"></div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" id="enumEditorGoButton" data-bs-dismiss="modal">Go</button> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> </div> </div> </div> </div> <div class="modal fade" id="createViewModal" tabindex="-1" aria-labelledby="createViewModalLabel" aria-hidden="true"> <div class="modal-dialog modal-lg" id="createViewModalDialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="createViewModalLabel">Create view</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"></div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" id="createViewModalGoButton">Go</button> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> </div> </div> </div> </div> <div id="maincontainer"> <a class="hide" id="sync_favorite_tables" href="index.php?route=/database/structure/favorite-table&ajax_request=1&favorite_table=1&sync_favorite_tables=1&lang=en"></a> <div class="container-fluid"> <div class="row"> <div class="col-lg-7 col-12"> <div class="card mt-4"> <div class="card-header"> General settings </div> <ul class="list-group list-group-flush"> <li id="li_select_mysql_collation" class="list-group-item"> <form method="post" action="index.php?route=/collation-connection&lang=en" class="row row-cols-lg-auto align-items-center disableAjax"> <input type="hidden" name="lang" value="en"><input type="hidden" name="token" value="68796d444825575e6d2d604f364a4658"> <div class="col-12"> <label for="collationConnectionSelect" class="col-form-label"> <img src="themes/dot.gif" title="" alt="" class="icon ic_s_asci"> Server connection collation: <a href="./url.php?url=https%3A%2F%2Fdev.mysql.com%2Fdoc%2Frefman%2F8.0%2Fen%2Fcharset-connection.html" target="mysql_doc"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </label> </div> <div class="col-12"> <select lang="en" dir="ltr" name="collation_connection" id="collationConnectionSelect" class="form-select autosubmit"> <option value="">Collation</option> <option value=""></option> <optgroup label="armscii8" title="ARMSCII-8 Armenian"> <option value="armscii8_bin" title="Armenian, binary">armscii8_bin</option> <option value="armscii8_general_ci" title="Armenian, case-insensitive">armscii8_general_ci</option> <option value="armscii8_general_nopad_ci" title="Armenian, no-pad, case-insensitive">armscii8_general_nopad_ci</option> <option value="armscii8_nopad_bin" title="Armenian, no-pad, binary">armscii8_nopad_bin</option> </optgroup> <optgroup label="ascii" title="US ASCII"> <option value="ascii_bin" title="West European, binary">ascii_bin</option> <option value="ascii_general_ci" title="West European, case-insensitive">ascii_general_ci</option> <option value="ascii_general_nopad_ci" title="West European, no-pad, case-insensitive">ascii_general_nopad_ci</option> <option value="ascii_nopad_bin" title="West European, no-pad, binary">ascii_nopad_bin</option> </optgroup> <optgroup label="big5" title="Big5 Traditional Chinese"> <option value="big5_bin" title="Traditional Chinese, binary">big5_bin</option> <option value="big5_chinese_ci" title="Traditional Chinese, case-insensitive">big5_chinese_ci</option> <option value="big5_chinese_nopad_ci" title="Traditional Chinese, no-pad, case-insensitive">big5_chinese_nopad_ci</option> <option value="big5_nopad_bin" title="Traditional Chinese, no-pad, binary">big5_nopad_bin</option> </optgroup> <optgroup label="binary" title="Binary pseudo charset"> <option value="binary" title="Binary">binary</option> </optgroup> <optgroup label="cp1250" title="Windows Central European"> <option value="cp1250_bin" title="Central European, binary">cp1250_bin</option> <option value="cp1250_croatian_ci" title="Croatian, case-insensitive">cp1250_croatian_ci</option> <option value="cp1250_czech_cs" title="Czech, case-sensitive">cp1250_czech_cs</option> <option value="cp1250_general_ci" title="Central European, case-insensitive">cp1250_general_ci</option> <option value="cp1250_general_nopad_ci" title="Central European, no-pad, case-insensitive">cp1250_general_nopad_ci</option> <option value="cp1250_nopad_bin" title="Central European, no-pad, binary">cp1250_nopad_bin</option> <option value="cp1250_polish_ci" title="Polish, case-insensitive">cp1250_polish_ci</option> </optgroup> <optgroup label="cp1251" title="Windows Cyrillic"> <option value="cp1251_bin" title="Cyrillic, binary">cp1251_bin</option> <option value="cp1251_bulgarian_ci" title="Bulgarian, case-insensitive">cp1251_bulgarian_ci</option> <option value="cp1251_general_ci" title="Cyrillic, case-insensitive">cp1251_general_ci</option> <option value="cp1251_general_cs" title="Cyrillic, case-sensitive">cp1251_general_cs</option> <option value="cp1251_general_nopad_ci" title="Cyrillic, no-pad, case-insensitive">cp1251_general_nopad_ci</option> <option value="cp1251_nopad_bin" title="Cyrillic, no-pad, binary">cp1251_nopad_bin</option> <option value="cp1251_ukrainian_ci" title="Ukrainian, case-insensitive">cp1251_ukrainian_ci</option> </optgroup> <optgroup label="cp1256" title="Windows Arabic"> <option value="cp1256_bin" title="Arabic, binary">cp1256_bin</option> <option value="cp1256_general_ci" title="Arabic, case-insensitive">cp1256_general_ci</option> <option value="cp1256_general_nopad_ci" title="Arabic, no-pad, case-insensitive">cp1256_general_nopad_ci</option> <option value="cp1256_nopad_bin" title="Arabic, no-pad, binary">cp1256_nopad_bin</option> </optgroup> <optgroup label="cp1257" title="Windows Baltic"> <option value="cp1257_bin" title="Baltic, binary">cp1257_bin</option> <option value="cp1257_general_ci" title="Baltic, case-insensitive">cp1257_general_ci</option> <option value="cp1257_general_nopad_ci" title="Baltic, no-pad, case-insensitive">cp1257_general_nopad_ci</option> <option value="cp1257_lithuanian_ci" title="Lithuanian, case-insensitive">cp1257_lithuanian_ci</option> <option value="cp1257_nopad_bin" title="Baltic, no-pad, binary">cp1257_nopad_bin</option> </optgroup> <optgroup label="cp850" title="DOS West European"> <option value="cp850_bin" title="West European, binary">cp850_bin</option> <option value="cp850_general_ci" title="West European, case-insensitive">cp850_general_ci</option> <option value="cp850_general_nopad_ci" title="West European, no-pad, case-insensitive">cp850_general_nopad_ci</option> <option value="cp850_nopad_bin" title="West European, no-pad, binary">cp850_nopad_bin</option> </optgroup> <optgroup label="cp852" title="DOS Central European"> <option value="cp852_bin" title="Central European, binary">cp852_bin</option> <option value="cp852_general_ci" title="Central European, case-insensitive">cp852_general_ci</option> <option value="cp852_general_nopad_ci" title="Central European, no-pad, case-insensitive">cp852_general_nopad_ci</option> <option value="cp852_nopad_bin" title="Central European, no-pad, binary">cp852_nopad_bin</option> </optgroup> <optgroup label="cp866" title="DOS Russian"> <option value="cp866_bin" title="Russian, binary">cp866_bin</option> <option value="cp866_general_ci" title="Russian, case-insensitive">cp866_general_ci</option> <option value="cp866_general_nopad_ci" title="Russian, no-pad, case-insensitive">cp866_general_nopad_ci</option> <option value="cp866_nopad_bin" title="Russian, no-pad, binary">cp866_nopad_bin</option> </optgroup> <optgroup label="cp932" title="SJIS for Windows Japanese"> <option value="cp932_bin" title="Japanese, binary">cp932_bin</option> <option value="cp932_japanese_ci" title="Japanese, case-insensitive">cp932_japanese_ci</option> <option value="cp932_japanese_nopad_ci" title="Japanese, no-pad, case-insensitive">cp932_japanese_nopad_ci</option> <option value="cp932_nopad_bin" title="Japanese, no-pad, binary">cp932_nopad_bin</option> </optgroup> <optgroup label="dec8" title="DEC West European"> <option value="dec8_bin" title="West European, binary">dec8_bin</option> <option value="dec8_nopad_bin" title="West European, no-pad, binary">dec8_nopad_bin</option> <option value="dec8_swedish_ci" title="Swedish, case-insensitive">dec8_swedish_ci</option> <option value="dec8_swedish_nopad_ci" title="Swedish, no-pad, case-insensitive">dec8_swedish_nopad_ci</option> </optgroup> <optgroup label="eucjpms" title="UJIS for Windows Japanese"> <option value="eucjpms_bin" title="Japanese, binary">eucjpms_bin</option> <option value="eucjpms_japanese_ci" title="Japanese, case-insensitive">eucjpms_japanese_ci</option> <option value="eucjpms_japanese_nopad_ci" title="Japanese, no-pad, case-insensitive">eucjpms_japanese_nopad_ci</option> <option value="eucjpms_nopad_bin" title="Japanese, no-pad, binary">eucjpms_nopad_bin</option> </optgroup> <optgroup label="euckr" title="EUC-KR Korean"> <option value="euckr_bin" title="Korean, binary">euckr_bin</option> <option value="euckr_korean_ci" title="Korean, case-insensitive">euckr_korean_ci</option> <option value="euckr_korean_nopad_ci" title="Korean, no-pad, case-insensitive">euckr_korean_nopad_ci</option> <option value="euckr_nopad_bin" title="Korean, no-pad, binary">euckr_nopad_bin</option> </optgroup> <optgroup label="gb2312" title="GB2312 Simplified Chinese"> <option value="gb2312_bin" title="Simplified Chinese, binary">gb2312_bin</option> <option value="gb2312_chinese_ci" title="Simplified Chinese, case-insensitive">gb2312_chinese_ci</option> <option value="gb2312_chinese_nopad_ci" title="Simplified Chinese, no-pad, case-insensitive">gb2312_chinese_nopad_ci</option> <option value="gb2312_nopad_bin" title="Simplified Chinese, no-pad, binary">gb2312_nopad_bin</option> </optgroup> <optgroup label="gbk" title="GBK Simplified Chinese"> <option value="gbk_bin" title="Simplified Chinese, binary">gbk_bin</option> <option value="gbk_chinese_ci" title="Simplified Chinese, case-insensitive">gbk_chinese_ci</option> <option value="gbk_chinese_nopad_ci" title="Simplified Chinese, no-pad, case-insensitive">gbk_chinese_nopad_ci</option> <option value="gbk_nopad_bin" title="Simplified Chinese, no-pad, binary">gbk_nopad_bin</option> </optgroup> <optgroup label="geostd8" title="GEOSTD8 Georgian"> <option value="geostd8_bin" title="Georgian, binary">geostd8_bin</option> <option value="geostd8_general_ci" title="Georgian, case-insensitive">geostd8_general_ci</option> <option value="geostd8_general_nopad_ci" title="Georgian, no-pad, case-insensitive">geostd8_general_nopad_ci</option> <option value="geostd8_nopad_bin" title="Georgian, no-pad, binary">geostd8_nopad_bin</option> </optgroup> <optgroup label="greek" title="ISO 8859-7 Greek"> <option value="greek_bin" title="Greek, binary">greek_bin</option> <option value="greek_general_ci" title="Greek, case-insensitive">greek_general_ci</option> <option value="greek_general_nopad_ci" title="Greek, no-pad, case-insensitive">greek_general_nopad_ci</option> <option value="greek_nopad_bin" title="Greek, no-pad, binary">greek_nopad_bin</option> </optgroup> <optgroup label="hebrew" title="ISO 8859-8 Hebrew"> <option value="hebrew_bin" title="Hebrew, binary">hebrew_bin</option> <option value="hebrew_general_ci" title="Hebrew, case-insensitive">hebrew_general_ci</option> <option value="hebrew_general_nopad_ci" title="Hebrew, no-pad, case-insensitive">hebrew_general_nopad_ci</option> <option value="hebrew_nopad_bin" title="Hebrew, no-pad, binary">hebrew_nopad_bin</option> </optgroup> <optgroup label="hp8" title="HP West European"> <option value="hp8_bin" title="West European, binary">hp8_bin</option> <option value="hp8_english_ci" title="English, case-insensitive">hp8_english_ci</option> <option value="hp8_english_nopad_ci" title="English, no-pad, case-insensitive">hp8_english_nopad_ci</option> <option value="hp8_nopad_bin" title="West European, no-pad, binary">hp8_nopad_bin</option> </optgroup> <optgroup label="keybcs2" title="DOS Kamenicky Czech-Slovak"> <option value="keybcs2_bin" title="Czech-Slovak, binary">keybcs2_bin</option> <option value="keybcs2_general_ci" title="Czech-Slovak, case-insensitive">keybcs2_general_ci</option> <option value="keybcs2_general_nopad_ci" title="Czech-Slovak, no-pad, case-insensitive">keybcs2_general_nopad_ci</option> <option value="keybcs2_nopad_bin" title="Czech-Slovak, no-pad, binary">keybcs2_nopad_bin</option> </optgroup> <optgroup label="koi8r" title="KOI8-R Relcom Russian"> <option value="koi8r_bin" title="Russian, binary">koi8r_bin</option> <option value="koi8r_general_ci" title="Russian, case-insensitive">koi8r_general_ci</option> <option value="koi8r_general_nopad_ci" title="Russian, no-pad, case-insensitive">koi8r_general_nopad_ci</option> <option value="koi8r_nopad_bin" title="Russian, no-pad, binary">koi8r_nopad_bin</option> </optgroup> <optgroup label="koi8u" title="KOI8-U Ukrainian"> <option value="koi8u_bin" title="Ukrainian, binary">koi8u_bin</option> <option value="koi8u_general_ci" title="Ukrainian, case-insensitive">koi8u_general_ci</option> <option value="koi8u_general_nopad_ci" title="Ukrainian, no-pad, case-insensitive">koi8u_general_nopad_ci</option> <option value="koi8u_nopad_bin" title="Ukrainian, no-pad, binary">koi8u_nopad_bin</option> </optgroup> <optgroup label="latin1" title="cp1252 West European"> <option value="latin1_bin" title="West European, binary">latin1_bin</option> <option value="latin1_danish_ci" title="Danish, case-insensitive">latin1_danish_ci</option> <option value="latin1_general_ci" title="West European, case-insensitive">latin1_general_ci</option> <option value="latin1_general_cs" title="West European, case-sensitive">latin1_general_cs</option> <option value="latin1_german1_ci" title="German (dictionary order), case-insensitive">latin1_german1_ci</option> <option value="latin1_german2_ci" title="German (phone book order), case-insensitive">latin1_german2_ci</option> <option value="latin1_nopad_bin" title="West European, no-pad, binary">latin1_nopad_bin</option> <option value="latin1_spanish_ci" title="Spanish (modern), case-insensitive">latin1_spanish_ci</option> <option value="latin1_swedish_ci" title="Swedish, case-insensitive">latin1_swedish_ci</option> <option value="latin1_swedish_nopad_ci" title="Swedish, no-pad, case-insensitive">latin1_swedish_nopad_ci</option> </optgroup> <optgroup label="latin2" title="ISO 8859-2 Central European"> <option value="latin2_bin" title="Central European, binary">latin2_bin</option> <option value="latin2_croatian_ci" title="Croatian, case-insensitive">latin2_croatian_ci</option> <option value="latin2_czech_cs" title="Czech, case-sensitive">latin2_czech_cs</option> <option value="latin2_general_ci" title="Central European, case-insensitive">latin2_general_ci</option> <option value="latin2_general_nopad_ci" title="Central European, no-pad, case-insensitive">latin2_general_nopad_ci</option> <option value="latin2_hungarian_ci" title="Hungarian, case-insensitive">latin2_hungarian_ci</option> <option value="latin2_nopad_bin" title="Central European, no-pad, binary">latin2_nopad_bin</option> </optgroup> <optgroup label="latin5" title="ISO 8859-9 Turkish"> <option value="latin5_bin" title="Turkish, binary">latin5_bin</option> <option value="latin5_nopad_bin" title="Turkish, no-pad, binary">latin5_nopad_bin</option> <option value="latin5_turkish_ci" title="Turkish, case-insensitive">latin5_turkish_ci</option> <option value="latin5_turkish_nopad_ci" title="Turkish, no-pad, case-insensitive">latin5_turkish_nopad_ci</option> </optgroup> <optgroup label="latin7" title="ISO 8859-13 Baltic"> <option value="latin7_bin" title="Baltic, binary">latin7_bin</option> <option value="latin7_estonian_cs" title="Estonian, case-sensitive">latin7_estonian_cs</option> <option value="latin7_general_ci" title="Baltic, case-insensitive">latin7_general_ci</option> <option value="latin7_general_cs" title="Baltic, case-sensitive">latin7_general_cs</option> <option value="latin7_general_nopad_ci" title="Baltic, no-pad, case-insensitive">latin7_general_nopad_ci</option> <option value="latin7_nopad_bin" title="Baltic, no-pad, binary">latin7_nopad_bin</option> </optgroup> <optgroup label="macce" title="Mac Central European"> <option value="macce_bin" title="Central European, binary">macce_bin</option> <option value="macce_general_ci" title="Central European, case-insensitive">macce_general_ci</option> <option value="macce_general_nopad_ci" title="Central European, no-pad, case-insensitive">macce_general_nopad_ci</option> <option value="macce_nopad_bin" title="Central European, no-pad, binary">macce_nopad_bin</option> </optgroup> <optgroup label="macroman" title="Mac West European"> <option value="macroman_bin" title="West European, binary">macroman_bin</option> <option value="macroman_general_ci" title="West European, case-insensitive">macroman_general_ci</option> <option value="macroman_general_nopad_ci" title="West European, no-pad, case-insensitive">macroman_general_nopad_ci</option> <option value="macroman_nopad_bin" title="West European, no-pad, binary">macroman_nopad_bin</option> </optgroup> <optgroup label="sjis" title="Shift-JIS Japanese"> <option value="sjis_bin" title="Japanese, binary">sjis_bin</option> <option value="sjis_japanese_ci" title="Japanese, case-insensitive">sjis_japanese_ci</option> <option value="sjis_japanese_nopad_ci" title="Japanese, no-pad, case-insensitive">sjis_japanese_nopad_ci</option> <option value="sjis_nopad_bin" title="Japanese, no-pad, binary">sjis_nopad_bin</option> </optgroup> <optgroup label="swe7" title="7bit Swedish"> <option value="swe7_bin" title="Swedish, binary">swe7_bin</option> <option value="swe7_nopad_bin" title="Swedish, no-pad, binary">swe7_nopad_bin</option> <option value="swe7_swedish_ci" title="Swedish, case-insensitive">swe7_swedish_ci</option> <option value="swe7_swedish_nopad_ci" title="Swedish, no-pad, case-insensitive">swe7_swedish_nopad_ci</option> </optgroup> <optgroup label="tis620" title="TIS620 Thai"> <option value="tis620_bin" title="Thai, binary">tis620_bin</option> <option value="tis620_nopad_bin" title="Thai, no-pad, binary">tis620_nopad_bin</option> <option value="tis620_thai_ci" title="Thai, case-insensitive">tis620_thai_ci</option> <option value="tis620_thai_nopad_ci" title="Thai, no-pad, case-insensitive">tis620_thai_nopad_ci</option> </optgroup> <optgroup label="ucs2" title="UCS-2 Unicode"> <option value="ucs2_bin" title="Unicode, binary">ucs2_bin</option> <option value="ucs2_croatian_ci" title="Croatian, case-insensitive">ucs2_croatian_ci</option> <option value="ucs2_croatian_mysql561_ci" title="Croatian (MySQL 5.6.1), case-insensitive">ucs2_croatian_mysql561_ci</option> <option value="ucs2_czech_ci" title="Czech, case-insensitive">ucs2_czech_ci</option> <option value="ucs2_danish_ci" title="Danish, case-insensitive">ucs2_danish_ci</option> <option value="ucs2_esperanto_ci" title="Esperanto, case-insensitive">ucs2_esperanto_ci</option> <option value="ucs2_estonian_ci" title="Estonian, case-insensitive">ucs2_estonian_ci</option> <option value="ucs2_general_ci" title="Unicode, case-insensitive">ucs2_general_ci</option> <option value="ucs2_general_mysql500_ci" title="Unicode (MySQL 5.0.0), case-insensitive">ucs2_general_mysql500_ci</option> <option value="ucs2_general_nopad_ci" title="Unicode, no-pad, case-insensitive">ucs2_general_nopad_ci</option> <option value="ucs2_german2_ci" title="German (phone book order), case-insensitive">ucs2_german2_ci</option> <option value="ucs2_hungarian_ci" title="Hungarian, case-insensitive">ucs2_hungarian_ci</option> <option value="ucs2_icelandic_ci" title="Icelandic, case-insensitive">ucs2_icelandic_ci</option> <option value="ucs2_latvian_ci" title="Latvian, case-insensitive">ucs2_latvian_ci</option> <option value="ucs2_lithuanian_ci" title="Lithuanian, case-insensitive">ucs2_lithuanian_ci</option> <option value="ucs2_myanmar_ci" title="Burmese, case-insensitive">ucs2_myanmar_ci</option> <option value="ucs2_nopad_bin" title="Unicode, no-pad, binary">ucs2_nopad_bin</option> <option value="ucs2_persian_ci" title="Persian, case-insensitive">ucs2_persian_ci</option> <option value="ucs2_polish_ci" title="Polish, case-insensitive">ucs2_polish_ci</option> <option value="ucs2_roman_ci" title="West European, case-insensitive">ucs2_roman_ci</option> <option value="ucs2_romanian_ci" title="Romanian, case-insensitive">ucs2_romanian_ci</option> <option value="ucs2_sinhala_ci" title="Sinhalese, case-insensitive">ucs2_sinhala_ci</option> <option value="ucs2_slovak_ci" title="Slovak, case-insensitive">ucs2_slovak_ci</option> <option value="ucs2_slovenian_ci" title="Slovenian, case-insensitive">ucs2_slovenian_ci</option> <option value="ucs2_spanish2_ci" title="Spanish (traditional), case-insensitive">ucs2_spanish2_ci</option> <option value="ucs2_spanish_ci" title="Spanish (modern), case-insensitive">ucs2_spanish_ci</option> <option value="ucs2_swedish_ci" title="Swedish, case-insensitive">ucs2_swedish_ci</option> <option value="ucs2_thai_520_w2" title="Thai (UCA 5.2.0), multi-level">ucs2_thai_520_w2</option> <option value="ucs2_turkish_ci" title="Turkish, case-insensitive">ucs2_turkish_ci</option> <option value="ucs2_unicode_520_ci" title="Unicode (UCA 5.2.0), case-insensitive">ucs2_unicode_520_ci</option> <option value="ucs2_unicode_520_nopad_ci" title="Unicode (UCA 5.2.0), no-pad, case-insensitive">ucs2_unicode_520_nopad_ci</option> <option value="ucs2_unicode_ci" title="Unicode, case-insensitive">ucs2_unicode_ci</option> <option value="ucs2_unicode_nopad_ci" title="Unicode, no-pad, case-insensitive">ucs2_unicode_nopad_ci</option> <option value="ucs2_vietnamese_ci" title="Vietnamese, case-insensitive">ucs2_vietnamese_ci</option> </optgroup> <optgroup label="ujis" title="EUC-JP Japanese"> <option value="ujis_bin" title="Japanese, binary">ujis_bin</option> <option value="ujis_japanese_ci" title="Japanese, case-insensitive">ujis_japanese_ci</option> <option value="ujis_japanese_nopad_ci" title="Japanese, no-pad, case-insensitive">ujis_japanese_nopad_ci</option> <option value="ujis_nopad_bin" title="Japanese, no-pad, binary">ujis_nopad_bin</option> </optgroup> <optgroup label="utf16" title="UTF-16 Unicode"> <option value="utf16_bin" title="Unicode, binary">utf16_bin</option> <option value="utf16_croatian_ci" title="Croatian, case-insensitive">utf16_croatian_ci</option> <option value="utf16_croatian_mysql561_ci" title="Croatian (MySQL 5.6.1), case-insensitive">utf16_croatian_mysql561_ci</option> <option value="utf16_czech_ci" title="Czech, case-insensitive">utf16_czech_ci</option> <option value="utf16_danish_ci" title="Danish, case-insensitive">utf16_danish_ci</option> <option value="utf16_esperanto_ci" title="Esperanto, case-insensitive">utf16_esperanto_ci</option> <option value="utf16_estonian_ci" title="Estonian, case-insensitive">utf16_estonian_ci</option> <option value="utf16_general_ci" title="Unicode, case-insensitive">utf16_general_ci</option> <option value="utf16_general_nopad_ci" title="Unicode, no-pad, case-insensitive">utf16_general_nopad_ci</option> <option value="utf16_german2_ci" title="German (phone book order), case-insensitive">utf16_german2_ci</option> <option value="utf16_hungarian_ci" title="Hungarian, case-insensitive">utf16_hungarian_ci</option> <option value="utf16_icelandic_ci" title="Icelandic, case-insensitive">utf16_icelandic_ci</option> <option value="utf16_latvian_ci" title="Latvian, case-insensitive">utf16_latvian_ci</option> <option value="utf16_lithuanian_ci" title="Lithuanian, case-insensitive">utf16_lithuanian_ci</option> <option value="utf16_myanmar_ci" title="Burmese, case-insensitive">utf16_myanmar_ci</option> <option value="utf16_nopad_bin" title="Unicode, no-pad, binary">utf16_nopad_bin</option> <option value="utf16_persian_ci" title="Persian, case-insensitive">utf16_persian_ci</option> <option value="utf16_polish_ci" title="Polish, case-insensitive">utf16_polish_ci</option> <option value="utf16_roman_ci" title="West European, case-insensitive">utf16_roman_ci</option> <option value="utf16_romanian_ci" title="Romanian, case-insensitive">utf16_romanian_ci</option> <option value="utf16_sinhala_ci" title="Sinhalese, case-insensitive">utf16_sinhala_ci</option> <option value="utf16_slovak_ci" title="Slovak, case-insensitive">utf16_slovak_ci</option> <option value="utf16_slovenian_ci" title="Slovenian, case-insensitive">utf16_slovenian_ci</option> <option value="utf16_spanish2_ci" title="Spanish (traditional), case-insensitive">utf16_spanish2_ci</option> <option value="utf16_spanish_ci" title="Spanish (modern), case-insensitive">utf16_spanish_ci</option> <option value="utf16_swedish_ci" title="Swedish, case-insensitive">utf16_swedish_ci</option> <option value="utf16_thai_520_w2" title="Thai (UCA 5.2.0), multi-level">utf16_thai_520_w2</option> <option value="utf16_turkish_ci" title="Turkish, case-insensitive">utf16_turkish_ci</option> <option value="utf16_unicode_520_ci" title="Unicode (UCA 5.2.0), case-insensitive">utf16_unicode_520_ci</option> <option value="utf16_unicode_520_nopad_ci" title="Unicode (UCA 5.2.0), no-pad, case-insensitive">utf16_unicode_520_nopad_ci</option> <option value="utf16_unicode_ci" title="Unicode, case-insensitive">utf16_unicode_ci</option> <option value="utf16_unicode_nopad_ci" title="Unicode, no-pad, case-insensitive">utf16_unicode_nopad_ci</option> <option value="utf16_vietnamese_ci" title="Vietnamese, case-insensitive">utf16_vietnamese_ci</option> </optgroup> <optgroup label="utf16le" title="UTF-16LE Unicode"> <option value="utf16le_bin" title="Unicode, binary">utf16le_bin</option> <option value="utf16le_general_ci" title="Unicode, case-insensitive">utf16le_general_ci</option> <option value="utf16le_general_nopad_ci" title="Unicode, no-pad, case-insensitive">utf16le_general_nopad_ci</option> <option value="utf16le_nopad_bin" title="Unicode, no-pad, binary">utf16le_nopad_bin</option> </optgroup> <optgroup label="utf32" title="UTF-32 Unicode"> <option value="utf32_bin" title="Unicode, binary">utf32_bin</option> <option value="utf32_croatian_ci" title="Croatian, case-insensitive">utf32_croatian_ci</option> <option value="utf32_croatian_mysql561_ci" title="Croatian (MySQL 5.6.1), case-insensitive">utf32_croatian_mysql561_ci</option> <option value="utf32_czech_ci" title="Czech, case-insensitive">utf32_czech_ci</option> <option value="utf32_danish_ci" title="Danish, case-insensitive">utf32_danish_ci</option> <option value="utf32_esperanto_ci" title="Esperanto, case-insensitive">utf32_esperanto_ci</option> <option value="utf32_estonian_ci" title="Estonian, case-insensitive">utf32_estonian_ci</option> <option value="utf32_general_ci" title="Unicode, case-insensitive">utf32_general_ci</option> <option value="utf32_general_nopad_ci" title="Unicode, no-pad, case-insensitive">utf32_general_nopad_ci</option> <option value="utf32_german2_ci" title="German (phone book order), case-insensitive">utf32_german2_ci</option> <option value="utf32_hungarian_ci" title="Hungarian, case-insensitive">utf32_hungarian_ci</option> <option value="utf32_icelandic_ci" title="Icelandic, case-insensitive">utf32_icelandic_ci</option> <option value="utf32_latvian_ci" title="Latvian, case-insensitive">utf32_latvian_ci</option> <option value="utf32_lithuanian_ci" title="Lithuanian, case-insensitive">utf32_lithuanian_ci</option> <option value="utf32_myanmar_ci" title="Burmese, case-insensitive">utf32_myanmar_ci</option> <option value="utf32_nopad_bin" title="Unicode, no-pad, binary">utf32_nopad_bin</option> <option value="utf32_persian_ci" title="Persian, case-insensitive">utf32_persian_ci</option> <option value="utf32_polish_ci" title="Polish, case-insensitive">utf32_polish_ci</option> <option value="utf32_roman_ci" title="West European, case-insensitive">utf32_roman_ci</option> <option value="utf32_romanian_ci" title="Romanian, case-insensitive">utf32_romanian_ci</option> <option value="utf32_sinhala_ci" title="Sinhalese, case-insensitive">utf32_sinhala_ci</option> <option value="utf32_slovak_ci" title="Slovak, case-insensitive">utf32_slovak_ci</option> <option value="utf32_slovenian_ci" title="Slovenian, case-insensitive">utf32_slovenian_ci</option> <option value="utf32_spanish2_ci" title="Spanish (traditional), case-insensitive">utf32_spanish2_ci</option> <option value="utf32_spanish_ci" title="Spanish (modern), case-insensitive">utf32_spanish_ci</option> <option value="utf32_swedish_ci" title="Swedish, case-insensitive">utf32_swedish_ci</option> <option value="utf32_thai_520_w2" title="Thai (UCA 5.2.0), multi-level">utf32_thai_520_w2</option> <option value="utf32_turkish_ci" title="Turkish, case-insensitive">utf32_turkish_ci</option> <option value="utf32_unicode_520_ci" title="Unicode (UCA 5.2.0), case-insensitive">utf32_unicode_520_ci</option> <option value="utf32_unicode_520_nopad_ci" title="Unicode (UCA 5.2.0), no-pad, case-insensitive">utf32_unicode_520_nopad_ci</option> <option value="utf32_unicode_ci" title="Unicode, case-insensitive">utf32_unicode_ci</option> <option value="utf32_unicode_nopad_ci" title="Unicode, no-pad, case-insensitive">utf32_unicode_nopad_ci</option> <option value="utf32_vietnamese_ci" title="Vietnamese, case-insensitive">utf32_vietnamese_ci</option> </optgroup> <optgroup label="utf8" title="UTF-8 Unicode"> <option value="utf8_bin" title="Unicode, binary">utf8_bin</option> <option value="utf8_croatian_ci" title="Croatian, case-insensitive">utf8_croatian_ci</option> <option value="utf8_croatian_mysql561_ci" title="Croatian (MySQL 5.6.1), case-insensitive">utf8_croatian_mysql561_ci</option> <option value="utf8_czech_ci" title="Czech, case-insensitive">utf8_czech_ci</option> <option value="utf8_danish_ci" title="Danish, case-insensitive">utf8_danish_ci</option> <option value="utf8_esperanto_ci" title="Esperanto, case-insensitive">utf8_esperanto_ci</option> <option value="utf8_estonian_ci" title="Estonian, case-insensitive">utf8_estonian_ci</option> <option value="utf8_general_ci" title="Unicode, case-insensitive">utf8_general_ci</option> <option value="utf8_general_mysql500_ci" title="Unicode (MySQL 5.0.0), case-insensitive">utf8_general_mysql500_ci</option> <option value="utf8_general_nopad_ci" title="Unicode, no-pad, case-insensitive">utf8_general_nopad_ci</option> <option value="utf8_german2_ci" title="German (phone book order), case-insensitive">utf8_german2_ci</option> <option value="utf8_hungarian_ci" title="Hungarian, case-insensitive">utf8_hungarian_ci</option> <option value="utf8_icelandic_ci" title="Icelandic, case-insensitive">utf8_icelandic_ci</option> <option value="utf8_latvian_ci" title="Latvian, case-insensitive">utf8_latvian_ci</option> <option value="utf8_lithuanian_ci" title="Lithuanian, case-insensitive">utf8_lithuanian_ci</option> <option value="utf8_myanmar_ci" title="Burmese, case-insensitive">utf8_myanmar_ci</option> <option value="utf8_nopad_bin" title="Unicode, no-pad, binary">utf8_nopad_bin</option> <option value="utf8_persian_ci" title="Persian, case-insensitive">utf8_persian_ci</option> <option value="utf8_polish_ci" title="Polish, case-insensitive">utf8_polish_ci</option> <option value="utf8_roman_ci" title="West European, case-insensitive">utf8_roman_ci</option> <option value="utf8_romanian_ci" title="Romanian, case-insensitive">utf8_romanian_ci</option> <option value="utf8_sinhala_ci" title="Sinhalese, case-insensitive">utf8_sinhala_ci</option> <option value="utf8_slovak_ci" title="Slovak, case-insensitive">utf8_slovak_ci</option> <option value="utf8_slovenian_ci" title="Slovenian, case-insensitive">utf8_slovenian_ci</option> <option value="utf8_spanish2_ci" title="Spanish (traditional), case-insensitive">utf8_spanish2_ci</option> <option value="utf8_spanish_ci" title="Spanish (modern), case-insensitive">utf8_spanish_ci</option> <option value="utf8_swedish_ci" title="Swedish, case-insensitive">utf8_swedish_ci</option> <option value="utf8_thai_520_w2" title="Thai (UCA 5.2.0), multi-level">utf8_thai_520_w2</option> <option value="utf8_turkish_ci" title="Turkish, case-insensitive">utf8_turkish_ci</option> <option value="utf8_unicode_520_ci" title="Unicode (UCA 5.2.0), case-insensitive">utf8_unicode_520_ci</option> <option value="utf8_unicode_520_nopad_ci" title="Unicode (UCA 5.2.0), no-pad, case-insensitive">utf8_unicode_520_nopad_ci</option> <option value="utf8_unicode_ci" title="Unicode, case-insensitive">utf8_unicode_ci</option> <option value="utf8_unicode_nopad_ci" title="Unicode, no-pad, case-insensitive">utf8_unicode_nopad_ci</option> <option value="utf8_vietnamese_ci" title="Vietnamese, case-insensitive">utf8_vietnamese_ci</option> </optgroup> <optgroup label="utf8mb4" title="UTF-8 Unicode"> <option value="utf8mb4_bin" title="Unicode (UCA 4.0.0), binary">utf8mb4_bin</option> <option value="utf8mb4_croatian_ci" title="Croatian (UCA 4.0.0), case-insensitive">utf8mb4_croatian_ci</option> <option value="utf8mb4_croatian_mysql561_ci" title="Croatian (MySQL 5.6.1), case-insensitive">utf8mb4_croatian_mysql561_ci</option> <option value="utf8mb4_czech_ci" title="Czech (UCA 4.0.0), case-insensitive">utf8mb4_czech_ci</option> <option value="utf8mb4_danish_ci" title="Danish (UCA 4.0.0), case-insensitive">utf8mb4_danish_ci</option> <option value="utf8mb4_esperanto_ci" title="Esperanto (UCA 4.0.0), case-insensitive">utf8mb4_esperanto_ci</option> <option value="utf8mb4_estonian_ci" title="Estonian (UCA 4.0.0), case-insensitive">utf8mb4_estonian_ci</option> <option value="utf8mb4_general_ci" title="Unicode (UCA 4.0.0), case-insensitive">utf8mb4_general_ci</option> <option value="utf8mb4_general_nopad_ci" title="Unicode (UCA 4.0.0), no-pad, case-insensitive">utf8mb4_general_nopad_ci</option> <option value="utf8mb4_german2_ci" title="German (phone book order) (UCA 4.0.0), case-insensitive">utf8mb4_german2_ci</option> <option value="utf8mb4_hungarian_ci" title="Hungarian (UCA 4.0.0), case-insensitive">utf8mb4_hungarian_ci</option> <option value="utf8mb4_icelandic_ci" title="Icelandic (UCA 4.0.0), case-insensitive">utf8mb4_icelandic_ci</option> <option value="utf8mb4_latvian_ci" title="Latvian (UCA 4.0.0), case-insensitive">utf8mb4_latvian_ci</option> <option value="utf8mb4_lithuanian_ci" title="Lithuanian (UCA 4.0.0), case-insensitive">utf8mb4_lithuanian_ci</option> <option value="utf8mb4_myanmar_ci" title="Burmese (UCA 4.0.0), case-insensitive">utf8mb4_myanmar_ci</option> <option value="utf8mb4_nopad_bin" title="Unicode (UCA 4.0.0), no-pad, binary">utf8mb4_nopad_bin</option> <option value="utf8mb4_persian_ci" title="Persian (UCA 4.0.0), case-insensitive">utf8mb4_persian_ci</option> <option value="utf8mb4_polish_ci" title="Polish (UCA 4.0.0), case-insensitive">utf8mb4_polish_ci</option> <option value="utf8mb4_roman_ci" title="West European (UCA 4.0.0), case-insensitive">utf8mb4_roman_ci</option> <option value="utf8mb4_romanian_ci" title="Romanian (UCA 4.0.0), case-insensitive">utf8mb4_romanian_ci</option> <option value="utf8mb4_sinhala_ci" title="Sinhalese (UCA 4.0.0), case-insensitive">utf8mb4_sinhala_ci</option> <option value="utf8mb4_slovak_ci" title="Slovak (UCA 4.0.0), case-insensitive">utf8mb4_slovak_ci</option> <option value="utf8mb4_slovenian_ci" title="Slovenian (UCA 4.0.0), case-insensitive">utf8mb4_slovenian_ci</option> <option value="utf8mb4_spanish2_ci" title="Spanish (traditional) (UCA 4.0.0), case-insensitive">utf8mb4_spanish2_ci</option> <option value="utf8mb4_spanish_ci" title="Spanish (modern) (UCA 4.0.0), case-insensitive">utf8mb4_spanish_ci</option> <option value="utf8mb4_swedish_ci" title="Swedish (UCA 4.0.0), case-insensitive">utf8mb4_swedish_ci</option> <option value="utf8mb4_thai_520_w2" title="Thai (UCA 5.2.0), multi-level">utf8mb4_thai_520_w2</option> <option value="utf8mb4_turkish_ci" title="Turkish (UCA 4.0.0), case-insensitive">utf8mb4_turkish_ci</option> <option value="utf8mb4_unicode_520_ci" title="Unicode (UCA 5.2.0), case-insensitive">utf8mb4_unicode_520_ci</option> <option value="utf8mb4_unicode_520_nopad_ci" title="Unicode (UCA 5.2.0), no-pad, case-insensitive">utf8mb4_unicode_520_nopad_ci</option> <option value="utf8mb4_unicode_ci" title="Unicode (UCA 4.0.0), case-insensitive" selected>utf8mb4_unicode_ci</option> <option value="utf8mb4_unicode_nopad_ci" title="Unicode (UCA 4.0.0), no-pad, case-insensitive">utf8mb4_unicode_nopad_ci</option> <option value="utf8mb4_vietnamese_ci" title="Vietnamese (UCA 4.0.0), case-insensitive">utf8mb4_vietnamese_ci</option> </optgroup> </select> </div> </form> </li> <li id="li_user_preferences" class="list-group-item"> <a href="index.php?route=/preferences/manage&lang=en"> <span class="text-nowrap"><img src="themes/dot.gif" title="More settings" alt="More settings" class="icon ic_b_tblops"> More settings</span> </a> </li> </ul> </div> <div class="card mt-4"> <div class="card-header"> Appearance settings </div> <ul class="list-group list-group-flush"> <li id="li_select_lang" class="list-group-item"> <form method="get" action="index.php?route=/&lang=en" class="row row-cols-lg-auto align-items-center disableAjax"> <input type="hidden" name="db" value=""><input type="hidden" name="table" value=""><input type="hidden" name="lang" value="en"><input type="hidden" name="token" value="68796d444825575e6d2d604f364a4658"> <div class="col-12"> <label for="languageSelect" class="col-form-label text-nowrap"> <img src="themes/dot.gif" title="" alt="" class="icon ic_s_lang"> Language <a href="./doc/html/faq.html#faq7-2" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </label> </div> <div class="col-12"> <select name="lang" class="form-select autosubmit w-auto" lang="en" dir="ltr" id="languageSelect"> <option value="sq">Shqip - Albanian</option> <option value="ar">العربية - Arabic</option> <option value="hy">Հայերէն - Armenian</option> <option value="az">Azərbaycanca - Azerbaijani</option> <option value="bn">বাংলা - Bangla</option> <option value="be">Беларуская - Belarusian</option> <option value="bg">Български - Bulgarian</option> <option value="ca">Català - Catalan</option> <option value="zh_cn">中文 - Chinese simplified</option> <option value="zh_tw">中文 - Chinese traditional</option> <option value="cs">Čeština - Czech</option> <option value="da">Dansk - Danish</option> <option value="nl">Nederlands - Dutch</option> <option value="en" selected>English</option> <option value="en_gb">English (United Kingdom)</option> <option value="et">Eesti - Estonian</option> <option value="fi">Suomi - Finnish</option> <option value="fr">Français - French</option> <option value="gl">Galego - Galician</option> <option value="de">Deutsch - German</option> <option value="el">Ελληνικά - Greek</option> <option value="he">עברית - Hebrew</option> <option value="hu">Magyar - Hungarian</option> <option value="id">Bahasa Indonesia - Indonesian</option> <option value="ia">Interlingua</option> <option value="it">Italiano - Italian</option> <option value="ja">日本語 - Japanese</option> <option value="kk">Қазақ - Kazakh</option> <option value="ko">한국어 - Korean</option> <option value="nb">Norsk - Norwegian</option> <option value="pl">Polski - Polish</option> <option value="pt">Português - Portuguese</option> <option value="pt_br">Português (Brasil) - Portuguese (Brazil)</option> <option value="ro">Română - Romanian</option> <option value="ru">Русский - Russian</option> <option value="si">සිංහල - Sinhala</option> <option value="sk">Slovenčina - Slovak</option> <option value="sl">Slovenščina - Slovenian</option> <option value="es">Español - Spanish</option> <option value="sv">Svenska - Swedish</option> <option value="tr">Türkçe - Turkish</option> <option value="uk">Українська - Ukrainian</option> <option value="vi">Tiếng Việt - Vietnamese</option> </select> </div> </form> </li> <li id="li_select_theme" class="list-group-item"> <form method="post" action="index.php?route=/themes/set&lang=en" class="row row-cols-lg-auto align-items-center disableAjax"> <input type="hidden" name="lang" value="en"><input type="hidden" name="token" value="68796d444825575e6d2d604f364a4658"> <div class="col-12"> <label for="themeSelect" class="col-form-label"> <span class="text-nowrap"><img src="themes/dot.gif" title="Theme" alt="Theme" class="icon ic_s_theme"> Theme</span> </label> </div> <div class="col-12"> <div class="input-group"> <select name="set_theme" class="form-select autosubmit" lang="en" dir="ltr" id="themeSelect"> <option value="bootstrap">Bootstrap</option> <option value="metro">Metro</option> <option value="original">Original</option> <option value="pmahomme" selected>pmahomme</option> </select> <button type="button" class="btn btn-outline-secondary" data-bs-toggle="modal" data-bs-target="#themesModal"> View all </button> </div> </div> </form> </li> </ul> </div> </div> <div class="col-lg-5 col-12"> <div class="card mt-4"> <div class="card-header"> Database server </div> <ul class="list-group list-group-flush"> <li class="list-group-item"> Server: Localhost via UNIX socket </li> <li class="list-group-item"> Server type: MariaDB </li> <li class="list-group-item"> Server connection: <span class="">SSL is not being used</span> <a href="./doc/html/setup.html#ssl" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </li> <li class="list-group-item"> Server version: 10.4.27-MariaDB - Source distribution </li> <li class="list-group-item"> Protocol version: 10 </li> <li class="list-group-item"> User: root@localhost </li> <li class="list-group-item"> Server charset: <span lang="en" dir="ltr"> UTF-8 Unicode (utf8mb4) </span> </li> </ul> </div> <div class="card mt-4"> <div class="card-header"> Web server </div> <ul class="list-group list-group-flush"> <li class="list-group-item"> Apache/2.4.54 (Unix) OpenSSL/1.1.1s PHP/7.4.33 mod_perl/2.0.12 Perl/v5.34.1 </li> <li class="list-group-item" id="li_mysql_client_version"> Database client version: libmysql - mysqlnd 7.4.33 </li> <li class="list-group-item"> PHP extension: mysqli <a href="./url.php?url=https%3A%2F%2Fwww.php.net%2Fmanual%2Fen%2Fbook.mysqli.php" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> curl <a href="./url.php?url=https%3A%2F%2Fwww.php.net%2Fmanual%2Fen%2Fbook.curl.php" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> mbstring <a href="./url.php?url=https%3A%2F%2Fwww.php.net%2Fmanual%2Fen%2Fbook.mbstring.php" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </li> <li class="list-group-item"> PHP version: 7.4.33 </li> </ul> </div> <div class="card mt-4"> <div class="card-header"> phpMyAdmin </div> <ul class="list-group list-group-flush"> <li id="li_pma_version" class="list-group-item jsversioncheck"> Version information: <span class="version">5.2.0</span> </li> <li class="list-group-item"> <a href="./doc/html/index.html" target="_blank" rel="noopener noreferrer"> Documentation </a> </li> <li class="list-group-item"> <a href="./url.php?url=https%3A%2F%2Fwww.phpmyadmin.net%2F" target="_blank" rel="noopener noreferrer"> Official Homepage </a> </li> <li class="list-group-item"> <a href="./url.php?url=https%3A%2F%2Fwww.phpmyadmin.net%2Fcontribute%2F" target="_blank" rel="noopener noreferrer"> Contribute </a> </li> <li class="list-group-item"> <a href="./url.php?url=https%3A%2F%2Fwww.phpmyadmin.net%2Fsupport%2F" target="_blank" rel="noopener noreferrer"> Get support </a> </li> <li class="list-group-item"> <a href="index.php?route=/changelog&lang=en" target="_blank"> List of changes </a> </li> <li class="list-group-item"> <a href="index.php?route=/license&lang=en" target="_blank"> License </a> </li> </ul> </div> </div> </div> </div> </div> <div class="modal fade" id="themesModal" tabindex="-1" aria-labelledby="themesModalLabel" aria-hidden="true"> <div class="modal-dialog modal-xl"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="themesModalLabel">phpMyAdmin Themes</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"> <div class="spinner-border" role="status"> <span class="visually-hidden">Loading…</span> </div> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> <a href="./url.php?url=https%3A%2F%2Fwww.phpmyadmin.net%2Fthemes%2F#pma_5_2" class="btn btn-primary" rel="noopener noreferrer" target="_blank"> Get more themes! </a> </div> </div> </div> </div> </div> <div id="selflink" class="d-print-none"> <a href="index.php?route=%2F&server=1&lang=en" title="Open new phpMyAdmin window" target="_blank" rel="noopener noreferrer"> <img src="themes/dot.gif" title="Open new phpMyAdmin window" alt="Open new phpMyAdmin window" class="icon ic_window-new"> </a> </div> <div class="clearfloat d-print-none" id="pma_errors"> </div> <script data-cfasync="false" type="text/javascript"> // <![CDATA[ var debugSQLInfo = 'null'; // ]]> </script> </body> </html>Parameter Content-Security-PolicyEvidence default-src 'self' ;script-src 'self' 'unsafe-inline' 'unsafe-eval' ;style-src 'self' 'unsafe-inline' ;img-src 'self' data: *.tile.openstreetmap.org;object-src 'none';Solution Ensure that your web server, application server, load balancer, etc. is properly configured to set the Content-Security-Policy header.
-
CSP: script-src unsafe-inline (1)
GET http://localhost/phpmyadmin/
Alert tags Alert description Content Security Policy (CSP) is an added layer of security that helps to detect and mitigate certain types of attacks. Including (but not limited to) Cross Site Scripting (XSS), and data injection attacks. These attacks are used for everything from data theft to site defacement or distribution of malware. CSP provides a set of standard HTTP headers that allow website owners to declare approved sources of content that browsers should be allowed to load on that page — covered types are JavaScript, CSS, HTML frames, fonts, images and embeddable objects such as Java applets, ActiveX, audio and video files.
Other info script-src includes unsafe-inline.
Request Request line and header section (268 bytes)
GET http://localhost/phpmyadmin/ HTTP/1.1 host: localhost user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 pragma: no-cache cache-control: no-cache referer: http://localhost/dashboard/Request body (0 bytes)
Response Status line and header section (1561 bytes)
HTTP/1.1 200 OK Date: Sat, 19 Apr 2025 15:17:44 GMT Server: Apache/2.4.54 (Unix) OpenSSL/1.1.1s PHP/7.4.33 mod_perl/2.0.12 Perl/v5.34.1 X-Powered-By: PHP/7.4.33 Set-Cookie: phpMyAdmin=610f86c60f00a8f4dc92fe660c217e62; path=/phpmyadmin/; HttpOnly; SameSite=Strict Expires: Sat, 19 Apr 2025 15:17:45 +0000 Cache-Control: no-store, no-cache, must-revalidate, pre-check=0, post-check=0, max-age=0 Last-Modified: Sat, 19 Apr 2025 15:17:45 +0000 Set-Cookie: phpMyAdmin=610f86c60f00a8f4dc92fe660c217e62; path=/phpmyadmin/; HttpOnly; SameSite=Strict Set-Cookie: pma_lang=en; expires=Mon, 19-May-2025 15:17:45 GMT; Max-Age=2592000; path=/phpmyadmin/; HttpOnly; SameSite=Strict X-ob_mode: 1 X-Frame-Options: DENY Referrer-Policy: no-referrer Content-Security-Policy: default-src 'self' ;script-src 'self' 'unsafe-inline' 'unsafe-eval' ;style-src 'self' 'unsafe-inline' ;img-src 'self' data: *.tile.openstreetmap.org;object-src 'none'; X-Content-Security-Policy: default-src 'self' ;options inline-script eval-script;referrer no-referrer;img-src 'self' data: *.tile.openstreetmap.org;object-src 'none'; X-WebKit-CSP: default-src 'self' ;script-src 'self' 'unsafe-inline' 'unsafe-eval';referrer no-referrer;style-src 'self' 'unsafe-inline' ;img-src 'self' data: *.tile.openstreetmap.org;object-src 'none'; X-XSS-Protection: 1; mode=block X-Content-Type-Options: nosniff X-Permitted-Cross-Domain-Policies: none X-Robots-Tag: noindex, nofollow Pragma: no-cache Vary: Accept-Encoding Content-Type: text/html; charset=utf-8 content-length: 145988Response body (145988 bytes)
<!doctype html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="referrer" content="no-referrer"> <meta name="robots" content="noindex,nofollow"> <style id="cfs-style">html{display: none;}</style> <link rel="icon" href="favicon.ico" type="image/x-icon"> <link rel="shortcut icon" href="favicon.ico" type="image/x-icon"> <link rel="stylesheet" type="text/css" href="./themes/pmahomme/jquery/jquery-ui.css"> <link rel="stylesheet" type="text/css" href="js/vendor/codemirror/lib/codemirror.css?v=5.2.0"> <link rel="stylesheet" type="text/css" href="js/vendor/codemirror/addon/hint/show-hint.css?v=5.2.0"> <link rel="stylesheet" type="text/css" href="js/vendor/codemirror/addon/lint/lint.css?v=5.2.0"> <link rel="stylesheet" type="text/css" href="./themes/pmahomme/css/theme.css?v=5.2.0"> <title>localhost / localhost | phpMyAdmin 5.2.0</title> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery.min.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery-migrate.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/sprintf.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/ajax.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/keyhandler.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery-ui.min.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/name-conflict-fixes.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/bootstrap/bootstrap.bundle.min.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/js.cookie.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery.validate.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery-ui-timepicker-addon.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery.debounce-1.0.6.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/menu_resizer.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/cross_framing_protection.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/messages.php?l=en&v=5.2.0&lang=en"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/config.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/doclinks.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/functions.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/navigation.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/indexes.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/common.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/page_settings.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/home.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/lib/codemirror.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/mode/sql/sql.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/addon/runmode/runmode.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/addon/hint/show-hint.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/addon/hint/sql-hint.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/addon/lint/lint.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/codemirror/addon/lint/sql-lint.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/tracekit.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/error_report.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/drag_drop_import.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/shortcuts_handler.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/console.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript"> // <![CDATA[ CommonParams.setAll({common_query:"lang=en",opendb_url:"index.php?route=/database/structure&lang=en",lang:"en",server:"1",table:"",db:"",token:"68796d444825575e6d2d604f364a4658",text_dir:"ltr",LimitChars:"50",pftext:"",confirm:true,LoginCookieValidity:"1440",session_gc_maxlifetime:"1440",logged_in:true,is_https:false,rootPath:"/phpmyadmin/",arg_separator:"&",version:"5.2.0",auth_type:"config",user:"root"}); var firstDayOfCalendar = '0'; var themeImagePath = '.\/themes\/pmahomme\/img\/'; var mysqlDocTemplate = '.\/url.php\u003Furl\u003Dhttps\u00253A\u00252F\u00252Fdev.mysql.com\u00252Fdoc\u00252Frefman\u00252F8.0\u00252Fen\u00252F\u002525s.html'; var maxInputVars = 1000; if ($.datepicker) { $.datepicker.regional[''].closeText = 'Done'; $.datepicker.regional[''].prevText = 'Prev'; $.datepicker.regional[''].nextText = 'Next'; $.datepicker.regional[''].currentText = 'Today'; $.datepicker.regional[''].monthNames = [ 'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December', ]; $.datepicker.regional[''].monthNamesShort = [ 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec', ]; $.datepicker.regional[''].dayNames = [ 'Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', ]; $.datepicker.regional[''].dayNamesShort = [ 'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', ]; $.datepicker.regional[''].dayNamesMin = [ 'Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa', ]; $.datepicker.regional[''].weekHeader = 'Wk'; $.datepicker.regional[''].showMonthAfterYear = false; $.datepicker.regional[''].yearSuffix = ''; $.extend($.datepicker._defaults, $.datepicker.regional['']); } if ($.timepicker) { $.timepicker.regional[''].timeText = 'Time'; $.timepicker.regional[''].hourText = 'Hour'; $.timepicker.regional[''].minuteText = 'Minute'; $.timepicker.regional[''].secondText = 'Second'; $.extend($.timepicker._defaults, $.timepicker.regional['']); } function extendingValidatorMessages () { $.extend($.validator.messages, { required: 'This\u0020field\u0020is\u0020required', remote: 'Please\u0020fix\u0020this\u0020field', email: 'Please\u0020enter\u0020a\u0020valid\u0020email\u0020address', url: 'Please\u0020enter\u0020a\u0020valid\u0020URL', date: 'Please\u0020enter\u0020a\u0020valid\u0020date', dateISO: 'Please\u0020enter\u0020a\u0020valid\u0020date\u0020\u0028\u0020ISO\u0020\u0029', number: 'Please\u0020enter\u0020a\u0020valid\u0020number', creditcard: 'Please\u0020enter\u0020a\u0020valid\u0020credit\u0020card\u0020number', digits: 'Please\u0020enter\u0020only\u0020digits', equalTo: 'Please\u0020enter\u0020the\u0020same\u0020value\u0020again', maxlength: $.validator.format('Please\u0020enter\u0020no\u0020more\u0020than\u0020\u007B0\u007D\u0020characters'), minlength: $.validator.format('Please\u0020enter\u0020at\u0020least\u0020\u007B0\u007D\u0020characters'), rangelength: $.validator.format('Please\u0020enter\u0020a\u0020value\u0020between\u0020\u007B0\u007D\u0020and\u0020\u007B1\u007D\u0020characters\u0020long'), range: $.validator.format('Please\u0020enter\u0020a\u0020value\u0020between\u0020\u007B0\u007D\u0020and\u0020\u007B1\u007D'), max: $.validator.format('Please\u0020enter\u0020a\u0020value\u0020less\u0020than\u0020or\u0020equal\u0020to\u0020\u007B0\u007D'), min: $.validator.format('Please\u0020enter\u0020a\u0020value\u0020greater\u0020than\u0020or\u0020equal\u0020to\u0020\u007B0\u007D'), validationFunctionForDateTime: $.validator.format('Please\u0020enter\u0020a\u0020valid\u0020date\u0020or\u0020time'), validationFunctionForHex: $.validator.format('Please\u0020enter\u0020a\u0020valid\u0020HEX\u0020input'), validationFunctionForMd5: $.validator.format('This\u0020column\u0020can\u0020not\u0020contain\u0020a\u002032\u0020chars\u0020value'), validationFunctionForAesDesEncrypt: $.validator.format('These\u0020functions\u0020are\u0020meant\u0020to\u0020return\u0020a\u0020binary\u0020result\u003B\u0020to\u0020avoid\u0020inconsistent\u0020results\u0020you\u0020should\u0020store\u0020it\u0020in\u0020a\u0020BINARY,\u0020VARBINARY,\u0020or\u0020BLOB\u0020column.') }); } ConsoleEnterExecutes=false AJAX.scriptHandler .add('vendor/jquery/jquery.min.js', 0) .add('vendor/jquery/jquery-migrate.js', 0) .add('vendor/sprintf.js', 1) .add('ajax.js', 0) .add('keyhandler.js', 1) .add('vendor/jquery/jquery-ui.min.js', 0) .add('name-conflict-fixes.js', 1) .add('vendor/bootstrap/bootstrap.bundle.min.js', 1) .add('vendor/js.cookie.js', 1) .add('vendor/jquery/jquery.validate.js', 0) .add('vendor/jquery/jquery-ui-timepicker-addon.js', 0) .add('vendor/jquery/jquery.debounce-1.0.6.js', 0) .add('menu_resizer.js', 1) .add('cross_framing_protection.js', 0) .add('messages.php', 0) .add('config.js', 1) .add('doclinks.js', 1) .add('functions.js', 1) .add('navigation.js', 1) .add('indexes.js', 1) .add('common.js', 1) .add('page_settings.js', 1) .add('home.js', 1) .add('vendor/codemirror/lib/codemirror.js', 0) .add('vendor/codemirror/mode/sql/sql.js', 0) .add('vendor/codemirror/addon/runmode/runmode.js', 0) .add('vendor/codemirror/addon/hint/show-hint.js', 0) .add('vendor/codemirror/addon/hint/sql-hint.js', 0) .add('vendor/codemirror/addon/lint/lint.js', 0) .add('codemirror/addon/lint/sql-lint.js', 0) .add('vendor/tracekit.js', 1) .add('error_report.js', 1) .add('drag_drop_import.js', 1) .add('shortcuts_handler.js', 1) .add('console.js', 1) ; $(function() { AJAX.fireOnload('vendor/sprintf.js'); AJAX.fireOnload('keyhandler.js'); AJAX.fireOnload('name-conflict-fixes.js'); AJAX.fireOnload('vendor/bootstrap/bootstrap.bundle.min.js'); AJAX.fireOnload('vendor/js.cookie.js'); AJAX.fireOnload('menu_resizer.js'); AJAX.fireOnload('config.js'); AJAX.fireOnload('doclinks.js'); AJAX.fireOnload('functions.js'); AJAX.fireOnload('navigation.js'); AJAX.fireOnload('indexes.js'); AJAX.fireOnload('common.js'); AJAX.fireOnload('page_settings.js'); AJAX.fireOnload('home.js'); AJAX.fireOnload('vendor/tracekit.js'); AJAX.fireOnload('error_report.js'); AJAX.fireOnload('drag_drop_import.js'); AJAX.fireOnload('shortcuts_handler.js'); AJAX.fireOnload('console.js'); }); // ]]> </script> <noscript><style>html{display:block}</style></noscript> </head> <body> <div id="pma_navigation" class="d-print-none" data-config-navigation-width="0"> <div id="pma_navigation_resizer"></div> <div id="pma_navigation_collapser"></div> <div id="pma_navigation_content"> <div id="pma_navigation_header"> <div id="pmalogo"> <a href="index.php?lang=en"> <img id="imgpmalogo" src="./themes/pmahomme/img/logo_left.png" alt="phpMyAdmin"> </a> </div> <div id="navipanellinks"> <a href="index.php?route=/&lang=en" title="Home"><img src="themes/dot.gif" title="Home" alt="Home" class="icon ic_b_home"></a> <a class="logout disableAjax" href="index.php?route=/logout&lang=en" title="Empty session data"><img src="themes/dot.gif" title="Empty session data" alt="Empty session data" class="icon ic_s_loggoff"></a> <a href="./doc/html/index.html" title="phpMyAdmin documentation" target="_blank" rel="noopener noreferrer"><img src="themes/dot.gif" title="phpMyAdmin documentation" alt="phpMyAdmin documentation" class="icon ic_b_docs"></a> <a href="./url.php?url=https%3A%2F%2Fmariadb.com%2Fkb%2Fen%2Fdocumentation%2F" title="MariaDB Documentation" target="_blank" rel="noopener noreferrer"><img src="themes/dot.gif" title="MariaDB Documentation" alt="MariaDB Documentation" class="icon ic_b_sqlhelp"></a> <a id="pma_navigation_settings_icon" href="#" title="Navigation panel settings"><img src="themes/dot.gif" title="Navigation panel settings" alt="Navigation panel settings" class="icon ic_s_cog"></a> <a id="pma_navigation_reload" href="#" title="Reload navigation panel"><img src="themes/dot.gif" title="Reload navigation panel" alt="Reload navigation panel" class="icon ic_s_reload"></a> </div> <img src="themes/dot.gif" title="Loading…" alt="Loading…" style="visibility: hidden; display:none" class="icon ic_ajax_clock_small throbber"> </div> <div id="pma_navigation_tree" class="list_container synced highlight autoexpand"> <div class="pma_quick_warp"> <div class="drop_list"><button title="Recent tables" class="drop_button btn">Recent</button><ul id="pma_recent_list"><li class="warp_link"> <a href="index.php?route=/table/recent-favorite&db=scan&table=wp_users&lang=en"> `scan`.`wp_users` </a> </li> <li class="warp_link"> <a href="index.php?route=/table/recent-favorite&db=attack&table=wp_users&lang=en"> `attack`.`wp_users` </a> </li> <li class="warp_link"> <a href="index.php?route=/table/recent-favorite&db=test&table=wp_users&lang=en"> `test`.`wp_users` </a> </li> </ul></div> <div class="drop_list"><button title="Favorite tables" class="drop_button btn">Favorites</button><ul id="pma_favorite_list"><li class="warp_link"> There are no favorite tables. </li> </ul></div> <div class="clearfloat"></div> </div> <div class="clearfloat"></div> <ul> <!-- CONTROLS START --> <li id="navigation_controls_outer"> <div id="navigation_controls"> <a href="#" id="pma_navigation_collapse" title="Collapse all"><img src="themes/dot.gif" title="Collapse all" alt="Collapse all" class="icon ic_s_collapseall"></a> <a href="#" id="pma_navigation_sync" title="Unlink from main panel"><img src="themes/dot.gif" title="Unlink from main panel" alt="Unlink from main panel" class="icon ic_s_link"></a> </div> </li> <!-- CONTROLS ENDS --> </ul> <div id='pma_navigation_tree_content'> <ul> <li class="first new_database italics"> <div class="block"> <i class="first"></i> </div> <div class="block second"> <a href="index.php?route=/server/databases&lang=en"><img src="themes/dot.gif" title="New" alt="New" class="icon ic_b_newdb"></a> </div> <a class="hover_show_full" href="index.php?route=/server/databases&lang=en" title="New">New</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.YXR0YWNr" data-vpath="cm9vdA==.YXR0YWNr" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=attack&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=attack&lang=en" title="Structure">attack</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.aW5mb3JtYXRpb25fc2NoZW1h" data-vpath="cm9vdA==.aW5mb3JtYXRpb25fc2NoZW1h" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=information_schema&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=information_schema&lang=en" title="Structure">information_schema</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.bXlzcWw=" data-vpath="cm9vdA==.bXlzcWw=" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=mysql&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=mysql&lang=en" title="Structure">mysql</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.cGVyZm9ybWFuY2Vfc2NoZW1h" data-vpath="cm9vdA==.cGVyZm9ybWFuY2Vfc2NoZW1h" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=performance_schema&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=performance_schema&lang=en" title="Structure">performance_schema</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.cGhwbXlhZG1pbg==" data-vpath="cm9vdA==.cGhwbXlhZG1pbg==" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=phpmyadmin&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=phpmyadmin&lang=en" title="Structure">phpmyadmin</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.c2Nhbg==" data-vpath="cm9vdA==.c2Nhbg==" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=scan&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=scan&lang=en" title="Structure">scan</a> <div class="clearfloat"></div> </li> <li class="last database"> <div class="block"> <i></i> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.dGVzdA==" data-vpath="cm9vdA==.dGVzdA==" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=test&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=test&lang=en" title="Structure">test</a> <div class="clearfloat"></div> </li> </ul> </div> </div> <div id="pma_navi_settings_container"> <div id="pma_navigation_settings"><div class="page_settings"><form method="post" action="index.php?route=%2F&server=1&lang=en" class="config-form disableAjax"> <input type="hidden" name="tab_hash" value=""> <input type="hidden" name="check_page_refresh" id="check_page_refresh" value=""> <input type="hidden" name="lang" value="en"><input type="hidden" name="token" value="68796d444825575e6d2d604f364a4658"> <input type="hidden" name="submit_save" value="Navi"> <ul class="nav nav-tabs" id="configFormDisplayTab" role="tablist"> <li class="nav-item" role="presentation"> <a class="nav-link active" id="Navi_panel-tab" href="#Navi_panel" data-bs-toggle="tab" role="tab" aria-controls="Navi_panel" aria-selected="true">Navigation panel</a> </li> <li class="nav-item" role="presentation"> <a class="nav-link" id="Navi_tree-tab" href="#Navi_tree" data-bs-toggle="tab" role="tab" aria-controls="Navi_tree" aria-selected="false">Navigation tree</a> </li> <li class="nav-item" role="presentation"> <a class="nav-link" id="Navi_servers-tab" href="#Navi_servers" data-bs-toggle="tab" role="tab" aria-controls="Navi_servers" aria-selected="false">Servers</a> </li> <li class="nav-item" role="presentation"> <a class="nav-link" id="Navi_databases-tab" href="#Navi_databases" data-bs-toggle="tab" role="tab" aria-controls="Navi_databases" aria-selected="false">Databases</a> </li> <li class="nav-item" role="presentation"> <a class="nav-link" id="Navi_tables-tab" href="#Navi_tables" data-bs-toggle="tab" role="tab" aria-controls="Navi_tables" aria-selected="false">Tables</a> </li> </ul> <div class="tab-content"> <div class="tab-pane fade show active" id="Navi_panel" role="tabpanel" aria-labelledby="Navi_panel-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Navigation panel</h5> <h6 class="card-subtitle mb-2 text-muted">Customize appearance of the navigation panel.</h6> <fieldset class="optbox"> <legend>Navigation panel</legend> <table class="table table-borderless"> <tr> <th> <label for="ShowDatabasesNavigationAsTree">Show databases navigation as tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_ShowDatabasesNavigationAsTree" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>In the navigation panel, replaces the database tree with a selector</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="ShowDatabasesNavigationAsTree" id="ShowDatabasesNavigationAsTree" checked> </span> <a class="restore-default hide" href="#ShowDatabasesNavigationAsTree" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationLinkWithMainPanel">Link with main panel</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationLinkWithMainPanel" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Link with main panel by highlighting the current database or table.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationLinkWithMainPanel" id="NavigationLinkWithMainPanel" checked> </span> <a class="restore-default hide" href="#NavigationLinkWithMainPanel" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationDisplayLogo">Display logo</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationDisplayLogo" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Show logo in navigation panel.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationDisplayLogo" id="NavigationDisplayLogo" checked> </span> <a class="restore-default hide" href="#NavigationDisplayLogo" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationLogoLink">Logo link URL</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationLogoLink" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>URL where logo in the navigation panel will point to.</small> </th> <td> <input type="text" name="NavigationLogoLink" id="NavigationLogoLink" value="index.php" class="w-75"> <a class="restore-default hide" href="#NavigationLogoLink" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationLogoLinkWindow">Logo link target</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationLogoLinkWindow" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Open the linked page in the main window (<code>main</code>) or in a new one (<code>new</code>).</small> </th> <td> <select name="NavigationLogoLinkWindow" id="NavigationLogoLinkWindow" class="w-75"> <option value="main" selected>main</option> <option value="new">new</option> </select> <a class="restore-default hide" href="#NavigationLogoLinkWindow" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreePointerEnable">Enable highlighting</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreePointerEnable" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Highlight server under the mouse cursor.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreePointerEnable" id="NavigationTreePointerEnable" checked> </span> <a class="restore-default hide" href="#NavigationTreePointerEnable" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="FirstLevelNavigationItems">Maximum items on first level</label> <span class="doc"> <a href="./doc/html/config.html#cfg_FirstLevelNavigationItems" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>The number of items that can be displayed on each page on the first level of the navigation tree.</small> </th> <td> <input type="number" name="FirstLevelNavigationItems" id="FirstLevelNavigationItems" value="100" class=""> <a class="restore-default hide" href="#FirstLevelNavigationItems" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeDisplayItemFilterMinimum">Minimum number of items to display the filter box</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDisplayItemFilterMinimum" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Defines the minimum number of items (tables, views, routines and events) to display a filter box.</small> </th> <td> <input type="number" name="NavigationTreeDisplayItemFilterMinimum" id="NavigationTreeDisplayItemFilterMinimum" value="30" class=""> <a class="restore-default hide" href="#NavigationTreeDisplayItemFilterMinimum" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NumRecentTables">Recently used tables</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NumRecentTables" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Maximum number of recently used tables; set 0 to disable.</small> </th> <td> <input type="number" name="NumRecentTables" id="NumRecentTables" value="10" class=""> <a class="restore-default hide" href="#NumRecentTables" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NumFavoriteTables">Favorite tables</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NumFavoriteTables" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Maximum number of favorite tables; set 0 to disable.</small> </th> <td> <input type="number" name="NumFavoriteTables" id="NumFavoriteTables" value="10" class=""> <a class="restore-default hide" href="#NumFavoriteTables" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationWidth">Navigation panel width</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationWidth" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Set to 0 to collapse navigation panel.</small> </th> <td> <input type="number" name="NavigationWidth" id="NavigationWidth" value="0" class="custom"> <a class="restore-default hide" href="#NavigationWidth" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> <div class="tab-pane fade" id="Navi_tree" role="tabpanel" aria-labelledby="Navi_tree-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Navigation tree</h5> <h6 class="card-subtitle mb-2 text-muted">Customize the navigation tree.</h6> <fieldset class="optbox"> <legend>Navigation tree</legend> <table class="table table-borderless"> <tr> <th> <label for="MaxNavigationItems">Maximum items in branch</label> <span class="doc"> <a href="./doc/html/config.html#cfg_MaxNavigationItems" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>The number of items that can be displayed on each page of the navigation tree.</small> </th> <td> <input type="number" name="MaxNavigationItems" id="MaxNavigationItems" value="50" class=""> <a class="restore-default hide" href="#MaxNavigationItems" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeEnableGrouping">Group items in the tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeEnableGrouping" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Group items in the navigation tree (determined by the separator defined in the Databases and Tables tabs above).</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeEnableGrouping" id="NavigationTreeEnableGrouping" checked> </span> <a class="restore-default hide" href="#NavigationTreeEnableGrouping" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeEnableExpansion">Enable navigation tree expansion</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeEnableExpansion" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to offer the possibility of tree expansion in the navigation panel.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeEnableExpansion" id="NavigationTreeEnableExpansion" checked> </span> <a class="restore-default hide" href="#NavigationTreeEnableExpansion" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowTables">Show tables in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowTables" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show tables under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowTables" id="NavigationTreeShowTables" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowTables" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowViews">Show views in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowViews" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show views under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowViews" id="NavigationTreeShowViews" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowViews" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowFunctions">Show functions in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowFunctions" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show functions under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowFunctions" id="NavigationTreeShowFunctions" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowFunctions" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowProcedures">Show procedures in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowProcedures" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show procedures under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowProcedures" id="NavigationTreeShowProcedures" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowProcedures" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowEvents">Show events in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowEvents" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show events under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowEvents" id="NavigationTreeShowEvents" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowEvents" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeAutoexpandSingleDb">Expand single database</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeAutoexpandSingleDb" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to expand single database in the navigation tree automatically.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeAutoexpandSingleDb" id="NavigationTreeAutoexpandSingleDb" checked> </span> <a class="restore-default hide" href="#NavigationTreeAutoexpandSingleDb" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> <div class="tab-pane fade" id="Navi_servers" role="tabpanel" aria-labelledby="Navi_servers-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Servers</h5> <h6 class="card-subtitle mb-2 text-muted">Servers display options.</h6> <fieldset class="optbox"> <legend>Servers</legend> <table class="table table-borderless"> <tr> <th> <label for="NavigationDisplayServers">Display servers selection</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationDisplayServers" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Display server choice at the top of the navigation panel.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationDisplayServers" id="NavigationDisplayServers" checked> </span> <a class="restore-default hide" href="#NavigationDisplayServers" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="DisplayServersList">Display servers as a list</label> <span class="doc"> <a href="./doc/html/config.html#cfg_DisplayServersList" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Show server listing as a list instead of a drop down.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="DisplayServersList" id="DisplayServersList"> </span> <a class="restore-default hide" href="#DisplayServersList" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> <div class="tab-pane fade" id="Navi_databases" role="tabpanel" aria-labelledby="Navi_databases-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Databases</h5> <h6 class="card-subtitle mb-2 text-muted">Databases display options.</h6> <fieldset class="optbox"> <legend>Databases</legend> <table class="table table-borderless"> <tr> <th> <label for="NavigationTreeDisplayDbFilterMinimum">Minimum number of databases to display the database filter box</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDisplayDbFilterMinimum" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> </th> <td> <input type="number" name="NavigationTreeDisplayDbFilterMinimum" id="NavigationTreeDisplayDbFilterMinimum" value="30" class=""> <a class="restore-default hide" href="#NavigationTreeDisplayDbFilterMinimum" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeDbSeparator">Database tree separator</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDbSeparator" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>String that separates databases into different tree levels.</small> </th> <td> <input type="text" size="25" name="NavigationTreeDbSeparator" id="NavigationTreeDbSeparator" value="_" class=""> <a class="restore-default hide" href="#NavigationTreeDbSeparator" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> <div class="tab-pane fade" id="Navi_tables" role="tabpanel" aria-labelledby="Navi_tables-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Tables</h5> <h6 class="card-subtitle mb-2 text-muted">Tables display options.</h6> <fieldset class="optbox"> <legend>Tables</legend> <table class="table table-borderless"> <tr> <th> <label for="NavigationTreeDefaultTabTable">Target for quick access icon</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDefaultTabTable" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> </th> <td> <select name="NavigationTreeDefaultTabTable" id="NavigationTreeDefaultTabTable" class="w-75"> <option value="structure" selected>Structure</option> <option value="sql">SQL</option> <option value="search">Search</option> <option value="insert">Insert</option> <option value="browse">Browse</option> </select> <a class="restore-default hide" href="#NavigationTreeDefaultTabTable" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeDefaultTabTable2">Target for second quick access icon</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDefaultTabTable2" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> </th> <td> <select name="NavigationTreeDefaultTabTable2" id="NavigationTreeDefaultTabTable2" class="w-75"> <option value="" selected></option> <option value="structure">Structure</option> <option value="sql">SQL</option> <option value="search">Search</option> <option value="insert">Insert</option> <option value="browse">Browse</option> </select> <a class="restore-default hide" href="#NavigationTreeDefaultTabTable2" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeTableSeparator">Table tree separator</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeTableSeparator" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>String that separates tables into different tree levels.</small> </th> <td> <input type="text" size="25" name="NavigationTreeTableSeparator" id="NavigationTreeTableSeparator" value="__" class=""> <a class="restore-default hide" href="#NavigationTreeTableSeparator" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeTableLevel">Maximum table tree depth</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeTableLevel" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> </th> <td> <input type="number" name="NavigationTreeTableLevel" id="NavigationTreeTableLevel" value="1" class=""> <a class="restore-default hide" href="#NavigationTreeTableLevel" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> </div> </form> <script type="text/javascript"> if (typeof configInlineParams === 'undefined' || !Array.isArray(configInlineParams)) { configInlineParams = []; } configInlineParams.push(function () { registerFieldValidator('FirstLevelNavigationItems', 'validatePositiveNumber', true); registerFieldValidator('NavigationTreeDisplayItemFilterMinimum', 'validatePositiveNumber', true); registerFieldValidator('NumRecentTables', 'validateNonNegativeNumber', true); registerFieldValidator('NumFavoriteTables', 'validateNonNegativeNumber', true); registerFieldValidator('NavigationWidth', 'validateNonNegativeNumber', true); registerFieldValidator('MaxNavigationItems', 'validatePositiveNumber', true); registerFieldValidator('NavigationTreeTableLevel', 'validatePositiveNumber', true); $.extend(Messages, { 'error_nan_p': 'Not\u0020a\u0020positive\u0020number\u0021', 'error_nan_nneg': 'Not\u0020a\u0020non\u002Dnegative\u0020number\u0021', 'error_incorrect_port': 'Not\u0020a\u0020valid\u0020port\u0020number\u0021', 'error_invalid_value': 'Incorrect\u0020value\u0021', 'error_value_lte': 'Value\u0020must\u0020be\u0020less\u0020than\u0020or\u0020equal\u0020to\u0020\u0025s\u0021', }); $.extend(defaultValues, { 'ShowDatabasesNavigationAsTree': true, 'NavigationLinkWithMainPanel': true, 'NavigationDisplayLogo': true, 'NavigationLogoLink': 'index.php', 'NavigationLogoLinkWindow': ['main'], 'NavigationTreePointerEnable': true, 'FirstLevelNavigationItems': '100', 'NavigationTreeDisplayItemFilterMinimum': '30', 'NumRecentTables': '10', 'NumFavoriteTables': '10', 'NavigationWidth': '240', 'MaxNavigationItems': '50', 'NavigationTreeEnableGrouping': true, 'NavigationTreeEnableExpansion': true, 'NavigationTreeShowTables': true, 'NavigationTreeShowViews': true, 'NavigationTreeShowFunctions': true, 'NavigationTreeShowProcedures': true, 'NavigationTreeShowEvents': true, 'NavigationTreeAutoexpandSingleDb': true, 'NavigationDisplayServers': true, 'DisplayServersList': false, 'NavigationTreeDisplayDbFilterMinimum': '30', 'NavigationTreeDbSeparator': '_', 'NavigationTreeDefaultTabTable': ['structure'], 'NavigationTreeDefaultTabTable2': [''], 'NavigationTreeTableSeparator': '__', 'NavigationTreeTableLevel': '1' }); }); if (typeof configScriptLoaded !== 'undefined' && configInlineParams) { loadInlineConfig(); } </script> </div></div> </div> </div> <div class="pma_drop_handler"> Drop files here </div> <div class="pma_sql_import_status"> <h2> SQL upload ( <span class="pma_import_count">0</span> ) <span class="close">x</span> <span class="minimize">-</span> </h2> <div></div> </div> </div> <div class="modal fade" id="unhideNavItemModal" tabindex="-1" aria-labelledby="unhideNavItemModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="unhideNavItemModalLabel">Show hidden navigation tree items.</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"></div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> </div> </div> </div> </div> <noscript> <div class="alert alert-danger" role="alert"> <img src="themes/dot.gif" title="" alt="" class="icon ic_s_error"> Javascript must be enabled past this point! </div> </noscript> <div id="floating_menubar" class="d-print-none"></div> <nav id="server-breadcrumb" aria-label="breadcrumb"> <ol class="breadcrumb breadcrumb-navbar"> <li class="breadcrumb-item"> <img src="themes/dot.gif" title="" alt="" class="icon ic_s_host"> <a href="index.php?route=/&lang=en" data-raw-text="localhost" draggable="false"> Server: localhost </a> </li> </ol> </nav> <div id="topmenucontainer" class="menucontainer"> <nav class="navbar navbar-expand-lg navbar-light bg-light"> <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-label="Toggle navigation" aria-controls="navbarNav" aria-expanded="false"> <span class="navbar-toggler-icon"></span> </button> <div class="collapse navbar-collapse" id="navbarNav"> <ul id="topmenu" class="navbar-nav"> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/databases&lang=en"> <img src="themes/dot.gif" title="Databases" alt="Databases" class="icon ic_s_db"> Databases </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/sql&lang=en"> <img src="themes/dot.gif" title="SQL" alt="SQL" class="icon ic_b_sql"> SQL </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/status&lang=en"> <img src="themes/dot.gif" title="Status" alt="Status" class="icon ic_s_status"> Status </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/privileges&viewing_mode=server&lang=en"> <img src="themes/dot.gif" title="User accounts" alt="User accounts" class="icon ic_s_rights"> User accounts </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/export&lang=en"> <img src="themes/dot.gif" title="Export" alt="Export" class="icon ic_b_export"> Export </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/import&lang=en"> <img src="themes/dot.gif" title="Import" alt="Import" class="icon ic_b_import"> Import </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/preferences/manage&lang=en"> <img src="themes/dot.gif" title="Settings" alt="Settings" class="icon ic_b_tblops"> Settings </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/replication&lang=en"> <img src="themes/dot.gif" title="Replication" alt="Replication" class="icon ic_s_replication"> Replication </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/variables&lang=en"> <img src="themes/dot.gif" title="Variables" alt="Variables" class="icon ic_s_vars"> Variables </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/collations&lang=en"> <img src="themes/dot.gif" title="Charsets" alt="Charsets" class="icon ic_s_asci"> Charsets </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/engines&lang=en"> <img src="themes/dot.gif" title="Engines" alt="Engines" class="icon ic_b_engine"> Engines </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/plugins&lang=en"> <img src="themes/dot.gif" title="Plugins" alt="Plugins" class="icon ic_b_plugin"> Plugins </a> </li> </ul> </div> </nav> </div> <span id="page_nav_icons" class="d-print-none"> <span id="lock_page_icon"></span> <span id="page_settings_icon"> <img src="themes/dot.gif" title="Page-related settings" alt="Page-related settings" class="icon ic_s_cog"> </span> <a id="goto_pagetop" href="#"><img src="themes/dot.gif" title="Click on the bar to scroll to top of page" alt="Click on the bar to scroll to top of page" class="icon ic_s_top"></a> </span> <div id="pma_console_container" class="d-print-none"> <div id="pma_console"> <div class="toolbar collapsed"> <div class="switch_button console_switch"> <img src="themes/dot.gif" title="SQL Query Console" alt="SQL Query Console" class="icon ic_console"> <span>Console</span> </div> <div class="button clear"> <span>Clear</span> </div> <div class="button history"> <span>History</span> </div> <div class="button options"> <span>Options</span> </div> <div class="button bookmarks"> <span>Bookmarks</span> </div> <div class="button debug hide"> <span>Debug SQL</span> </div> </div> <div class="content"> <div class="console_message_container"> <div class="message welcome"> <span id="instructions-0"> Press Ctrl+Enter to execute query </span> <span class="hide" id="instructions-1"> Press Enter to execute query </span> </div> </div><!-- console_message_container --> <div class="query_input"> <span class="console_query_input"></span> </div> </div><!-- message end --> <div class="mid_layer"></div> <div class="card" id="debug_console"> <div class="toolbar "> <div class="button order order_asc"> <span>ascending</span> </div> <div class="button order order_desc"> <span>descending</span> </div> <div class="text"> <span>Order:</span> </div> <div class="switch_button"> <span>Debug SQL</span> </div> <div class="button order_by sort_count"> <span>Count</span> </div> <div class="button order_by sort_exec"> <span>Execution order</span> </div> <div class="button order_by sort_time"> <span>Time taken</span> </div> <div class="text"> <span>Order by:</span> </div> <div class="button group_queries"> <span>Group queries</span> </div> <div class="button ungroup_queries"> <span>Ungroup queries</span> </div> </div> <div class="content debug"> <div class="message welcome"></div> <div class="debugLog"></div> </div> <!-- Content --> <div class="templates"> <div class="debug_query action_content"> <span class="action collapse"> Collapse </span> <span class="action expand"> Expand </span> <span class="action dbg_show_trace"> Show trace </span> <span class="action dbg_hide_trace"> Hide trace </span> <span class="text count hide"> Count </span> <span class="text time"> Time taken </span> </div> </div> <!-- Template --> </div> <!-- Debug SQL card --> <div class="card" id="pma_bookmarks"> <div class="toolbar "> <div class="switch_button"> <span>Bookmarks</span> </div> <div class="button refresh"> <span>Refresh</span> </div> <div class="button add"> <span>Add</span> </div> </div> <div class="content bookmark"> <div class="message welcome"> <span>No bookmarks</span> </div> </div> <div class="mid_layer"></div> <div class="card add"> <div class="toolbar "> <div class="switch_button"> <span>Add bookmark</span> </div> </div> <div class="content add_bookmark"> <div class="options"> <label> Label: <input type="text" name="label"> </label> <label> Target database: <input type="text" name="targetdb"> </label> <label> <input type="checkbox" name="shared">Share this bookmark </label> <button class="btn btn-primary" type="submit" name="submit">OK</button> </div> <!-- options --> <div class="query_input"> <span class="bookmark_add_input"></span> </div> </div> </div> <!-- Add bookmark card --> </div> <!-- Bookmarks card --> <div class="card" id="pma_console_options"> <div class="toolbar "> <div class="switch_button"> <span>Options</span> </div> <div class="button default"> <span>Set default</span> </div> </div> <div class="content"> <label> <input type="checkbox" name="always_expand">Always expand query messages </label> <br> <label> <input type="checkbox" name="start_history">Show query history at start </label> <br> <label> <input type="checkbox" name="current_query">Show current browsing query </label> <br> <label> <input type="checkbox" name="enter_executes"> Execute queries on Enter and insert new line with Shift+Enter. To make this permanent, view settings. </label> <br> <label> <input type="checkbox" name="dark_theme">Switch to dark theme </label> <br> </div> </div> <!-- Options card --> <div class="templates"> <div class="query_actions"> <span class="action collapse"> Collapse </span> <span class="action expand"> Expand </span> <span class="action requery"> Requery </span> <span class="action edit"> Edit </span> <span class="action explain"> Explain </span> <span class="action profiling"> Profiling </span> <span class="action bookmark"> Bookmark </span> <span class="text failed"> Query failed </span> <span class="text targetdb"> Database : <span></span> </span> <span class="text query_time"> Queried time : <span></span> </span> </div> </div> </div> <!-- #console end --> </div> <!-- #console_container end --> <div id="page_content"> <div class="modal fade" id="previewSqlModal" tabindex="-1" aria-labelledby="previewSqlModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="previewSqlModalLabel">Loading</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"></div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> </div> </div> </div> </div> <div class="modal fade" id="enumEditorModal" tabindex="-1" aria-labelledby="enumEditorModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="enumEditorModalLabel">ENUM/SET editor</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"></div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" id="enumEditorGoButton" data-bs-dismiss="modal">Go</button> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> </div> </div> </div> </div> <div class="modal fade" id="createViewModal" tabindex="-1" aria-labelledby="createViewModalLabel" aria-hidden="true"> <div class="modal-dialog modal-lg" id="createViewModalDialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="createViewModalLabel">Create view</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"></div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" id="createViewModalGoButton">Go</button> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> </div> </div> </div> </div> <div id="maincontainer"> <a class="hide" id="sync_favorite_tables" href="index.php?route=/database/structure/favorite-table&ajax_request=1&favorite_table=1&sync_favorite_tables=1&lang=en"></a> <div class="container-fluid"> <div class="row"> <div class="col-lg-7 col-12"> <div class="card mt-4"> <div class="card-header"> General settings </div> <ul class="list-group list-group-flush"> <li id="li_select_mysql_collation" class="list-group-item"> <form method="post" action="index.php?route=/collation-connection&lang=en" class="row row-cols-lg-auto align-items-center disableAjax"> <input type="hidden" name="lang" value="en"><input type="hidden" name="token" value="68796d444825575e6d2d604f364a4658"> <div class="col-12"> <label for="collationConnectionSelect" class="col-form-label"> <img src="themes/dot.gif" title="" alt="" class="icon ic_s_asci"> Server connection collation: <a href="./url.php?url=https%3A%2F%2Fdev.mysql.com%2Fdoc%2Frefman%2F8.0%2Fen%2Fcharset-connection.html" target="mysql_doc"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </label> </div> <div class="col-12"> <select lang="en" dir="ltr" name="collation_connection" id="collationConnectionSelect" class="form-select autosubmit"> <option value="">Collation</option> <option value=""></option> <optgroup label="armscii8" title="ARMSCII-8 Armenian"> <option value="armscii8_bin" title="Armenian, binary">armscii8_bin</option> <option value="armscii8_general_ci" title="Armenian, case-insensitive">armscii8_general_ci</option> <option value="armscii8_general_nopad_ci" title="Armenian, no-pad, case-insensitive">armscii8_general_nopad_ci</option> <option value="armscii8_nopad_bin" title="Armenian, no-pad, binary">armscii8_nopad_bin</option> </optgroup> <optgroup label="ascii" title="US ASCII"> <option value="ascii_bin" title="West European, binary">ascii_bin</option> <option value="ascii_general_ci" title="West European, case-insensitive">ascii_general_ci</option> <option value="ascii_general_nopad_ci" title="West European, no-pad, case-insensitive">ascii_general_nopad_ci</option> <option value="ascii_nopad_bin" title="West European, no-pad, binary">ascii_nopad_bin</option> </optgroup> <optgroup label="big5" title="Big5 Traditional Chinese"> <option value="big5_bin" title="Traditional Chinese, binary">big5_bin</option> <option value="big5_chinese_ci" title="Traditional Chinese, case-insensitive">big5_chinese_ci</option> <option value="big5_chinese_nopad_ci" title="Traditional Chinese, no-pad, case-insensitive">big5_chinese_nopad_ci</option> <option value="big5_nopad_bin" title="Traditional Chinese, no-pad, binary">big5_nopad_bin</option> </optgroup> <optgroup label="binary" title="Binary pseudo charset"> <option value="binary" title="Binary">binary</option> </optgroup> <optgroup label="cp1250" title="Windows Central European"> <option value="cp1250_bin" title="Central European, binary">cp1250_bin</option> <option value="cp1250_croatian_ci" title="Croatian, case-insensitive">cp1250_croatian_ci</option> <option value="cp1250_czech_cs" title="Czech, case-sensitive">cp1250_czech_cs</option> <option value="cp1250_general_ci" title="Central European, case-insensitive">cp1250_general_ci</option> <option value="cp1250_general_nopad_ci" title="Central European, no-pad, case-insensitive">cp1250_general_nopad_ci</option> <option value="cp1250_nopad_bin" title="Central European, no-pad, binary">cp1250_nopad_bin</option> <option value="cp1250_polish_ci" title="Polish, case-insensitive">cp1250_polish_ci</option> </optgroup> <optgroup label="cp1251" title="Windows Cyrillic"> <option value="cp1251_bin" title="Cyrillic, binary">cp1251_bin</option> <option value="cp1251_bulgarian_ci" title="Bulgarian, case-insensitive">cp1251_bulgarian_ci</option> <option value="cp1251_general_ci" title="Cyrillic, case-insensitive">cp1251_general_ci</option> <option value="cp1251_general_cs" title="Cyrillic, case-sensitive">cp1251_general_cs</option> <option value="cp1251_general_nopad_ci" title="Cyrillic, no-pad, case-insensitive">cp1251_general_nopad_ci</option> <option value="cp1251_nopad_bin" title="Cyrillic, no-pad, binary">cp1251_nopad_bin</option> <option value="cp1251_ukrainian_ci" title="Ukrainian, case-insensitive">cp1251_ukrainian_ci</option> </optgroup> <optgroup label="cp1256" title="Windows Arabic"> <option value="cp1256_bin" title="Arabic, binary">cp1256_bin</option> <option value="cp1256_general_ci" title="Arabic, case-insensitive">cp1256_general_ci</option> <option value="cp1256_general_nopad_ci" title="Arabic, no-pad, case-insensitive">cp1256_general_nopad_ci</option> <option value="cp1256_nopad_bin" title="Arabic, no-pad, binary">cp1256_nopad_bin</option> </optgroup> <optgroup label="cp1257" title="Windows Baltic"> <option value="cp1257_bin" title="Baltic, binary">cp1257_bin</option> <option value="cp1257_general_ci" title="Baltic, case-insensitive">cp1257_general_ci</option> <option value="cp1257_general_nopad_ci" title="Baltic, no-pad, case-insensitive">cp1257_general_nopad_ci</option> <option value="cp1257_lithuanian_ci" title="Lithuanian, case-insensitive">cp1257_lithuanian_ci</option> <option value="cp1257_nopad_bin" title="Baltic, no-pad, binary">cp1257_nopad_bin</option> </optgroup> <optgroup label="cp850" title="DOS West European"> <option value="cp850_bin" title="West European, binary">cp850_bin</option> <option value="cp850_general_ci" title="West European, case-insensitive">cp850_general_ci</option> <option value="cp850_general_nopad_ci" title="West European, no-pad, case-insensitive">cp850_general_nopad_ci</option> <option value="cp850_nopad_bin" title="West European, no-pad, binary">cp850_nopad_bin</option> </optgroup> <optgroup label="cp852" title="DOS Central European"> <option value="cp852_bin" title="Central European, binary">cp852_bin</option> <option value="cp852_general_ci" title="Central European, case-insensitive">cp852_general_ci</option> <option value="cp852_general_nopad_ci" title="Central European, no-pad, case-insensitive">cp852_general_nopad_ci</option> <option value="cp852_nopad_bin" title="Central European, no-pad, binary">cp852_nopad_bin</option> </optgroup> <optgroup label="cp866" title="DOS Russian"> <option value="cp866_bin" title="Russian, binary">cp866_bin</option> <option value="cp866_general_ci" title="Russian, case-insensitive">cp866_general_ci</option> <option value="cp866_general_nopad_ci" title="Russian, no-pad, case-insensitive">cp866_general_nopad_ci</option> <option value="cp866_nopad_bin" title="Russian, no-pad, binary">cp866_nopad_bin</option> </optgroup> <optgroup label="cp932" title="SJIS for Windows Japanese"> <option value="cp932_bin" title="Japanese, binary">cp932_bin</option> <option value="cp932_japanese_ci" title="Japanese, case-insensitive">cp932_japanese_ci</option> <option value="cp932_japanese_nopad_ci" title="Japanese, no-pad, case-insensitive">cp932_japanese_nopad_ci</option> <option value="cp932_nopad_bin" title="Japanese, no-pad, binary">cp932_nopad_bin</option> </optgroup> <optgroup label="dec8" title="DEC West European"> <option value="dec8_bin" title="West European, binary">dec8_bin</option> <option value="dec8_nopad_bin" title="West European, no-pad, binary">dec8_nopad_bin</option> <option value="dec8_swedish_ci" title="Swedish, case-insensitive">dec8_swedish_ci</option> <option value="dec8_swedish_nopad_ci" title="Swedish, no-pad, case-insensitive">dec8_swedish_nopad_ci</option> </optgroup> <optgroup label="eucjpms" title="UJIS for Windows Japanese"> <option value="eucjpms_bin" title="Japanese, binary">eucjpms_bin</option> <option value="eucjpms_japanese_ci" title="Japanese, case-insensitive">eucjpms_japanese_ci</option> <option value="eucjpms_japanese_nopad_ci" title="Japanese, no-pad, case-insensitive">eucjpms_japanese_nopad_ci</option> <option value="eucjpms_nopad_bin" title="Japanese, no-pad, binary">eucjpms_nopad_bin</option> </optgroup> <optgroup label="euckr" title="EUC-KR Korean"> <option value="euckr_bin" title="Korean, binary">euckr_bin</option> <option value="euckr_korean_ci" title="Korean, case-insensitive">euckr_korean_ci</option> <option value="euckr_korean_nopad_ci" title="Korean, no-pad, case-insensitive">euckr_korean_nopad_ci</option> <option value="euckr_nopad_bin" title="Korean, no-pad, binary">euckr_nopad_bin</option> </optgroup> <optgroup label="gb2312" title="GB2312 Simplified Chinese"> <option value="gb2312_bin" title="Simplified Chinese, binary">gb2312_bin</option> <option value="gb2312_chinese_ci" title="Simplified Chinese, case-insensitive">gb2312_chinese_ci</option> <option value="gb2312_chinese_nopad_ci" title="Simplified Chinese, no-pad, case-insensitive">gb2312_chinese_nopad_ci</option> <option value="gb2312_nopad_bin" title="Simplified Chinese, no-pad, binary">gb2312_nopad_bin</option> </optgroup> <optgroup label="gbk" title="GBK Simplified Chinese"> <option value="gbk_bin" title="Simplified Chinese, binary">gbk_bin</option> <option value="gbk_chinese_ci" title="Simplified Chinese, case-insensitive">gbk_chinese_ci</option> <option value="gbk_chinese_nopad_ci" title="Simplified Chinese, no-pad, case-insensitive">gbk_chinese_nopad_ci</option> <option value="gbk_nopad_bin" title="Simplified Chinese, no-pad, binary">gbk_nopad_bin</option> </optgroup> <optgroup label="geostd8" title="GEOSTD8 Georgian"> <option value="geostd8_bin" title="Georgian, binary">geostd8_bin</option> <option value="geostd8_general_ci" title="Georgian, case-insensitive">geostd8_general_ci</option> <option value="geostd8_general_nopad_ci" title="Georgian, no-pad, case-insensitive">geostd8_general_nopad_ci</option> <option value="geostd8_nopad_bin" title="Georgian, no-pad, binary">geostd8_nopad_bin</option> </optgroup> <optgroup label="greek" title="ISO 8859-7 Greek"> <option value="greek_bin" title="Greek, binary">greek_bin</option> <option value="greek_general_ci" title="Greek, case-insensitive">greek_general_ci</option> <option value="greek_general_nopad_ci" title="Greek, no-pad, case-insensitive">greek_general_nopad_ci</option> <option value="greek_nopad_bin" title="Greek, no-pad, binary">greek_nopad_bin</option> </optgroup> <optgroup label="hebrew" title="ISO 8859-8 Hebrew"> <option value="hebrew_bin" title="Hebrew, binary">hebrew_bin</option> <option value="hebrew_general_ci" title="Hebrew, case-insensitive">hebrew_general_ci</option> <option value="hebrew_general_nopad_ci" title="Hebrew, no-pad, case-insensitive">hebrew_general_nopad_ci</option> <option value="hebrew_nopad_bin" title="Hebrew, no-pad, binary">hebrew_nopad_bin</option> </optgroup> <optgroup label="hp8" title="HP West European"> <option value="hp8_bin" title="West European, binary">hp8_bin</option> <option value="hp8_english_ci" title="English, case-insensitive">hp8_english_ci</option> <option value="hp8_english_nopad_ci" title="English, no-pad, case-insensitive">hp8_english_nopad_ci</option> <option value="hp8_nopad_bin" title="West European, no-pad, binary">hp8_nopad_bin</option> </optgroup> <optgroup label="keybcs2" title="DOS Kamenicky Czech-Slovak"> <option value="keybcs2_bin" title="Czech-Slovak, binary">keybcs2_bin</option> <option value="keybcs2_general_ci" title="Czech-Slovak, case-insensitive">keybcs2_general_ci</option> <option value="keybcs2_general_nopad_ci" title="Czech-Slovak, no-pad, case-insensitive">keybcs2_general_nopad_ci</option> <option value="keybcs2_nopad_bin" title="Czech-Slovak, no-pad, binary">keybcs2_nopad_bin</option> </optgroup> <optgroup label="koi8r" title="KOI8-R Relcom Russian"> <option value="koi8r_bin" title="Russian, binary">koi8r_bin</option> <option value="koi8r_general_ci" title="Russian, case-insensitive">koi8r_general_ci</option> <option value="koi8r_general_nopad_ci" title="Russian, no-pad, case-insensitive">koi8r_general_nopad_ci</option> <option value="koi8r_nopad_bin" title="Russian, no-pad, binary">koi8r_nopad_bin</option> </optgroup> <optgroup label="koi8u" title="KOI8-U Ukrainian"> <option value="koi8u_bin" title="Ukrainian, binary">koi8u_bin</option> <option value="koi8u_general_ci" title="Ukrainian, case-insensitive">koi8u_general_ci</option> <option value="koi8u_general_nopad_ci" title="Ukrainian, no-pad, case-insensitive">koi8u_general_nopad_ci</option> <option value="koi8u_nopad_bin" title="Ukrainian, no-pad, binary">koi8u_nopad_bin</option> </optgroup> <optgroup label="latin1" title="cp1252 West European"> <option value="latin1_bin" title="West European, binary">latin1_bin</option> <option value="latin1_danish_ci" title="Danish, case-insensitive">latin1_danish_ci</option> <option value="latin1_general_ci" title="West European, case-insensitive">latin1_general_ci</option> <option value="latin1_general_cs" title="West European, case-sensitive">latin1_general_cs</option> <option value="latin1_german1_ci" title="German (dictionary order), case-insensitive">latin1_german1_ci</option> <option value="latin1_german2_ci" title="German (phone book order), case-insensitive">latin1_german2_ci</option> <option value="latin1_nopad_bin" title="West European, no-pad, binary">latin1_nopad_bin</option> <option value="latin1_spanish_ci" title="Spanish (modern), case-insensitive">latin1_spanish_ci</option> <option value="latin1_swedish_ci" title="Swedish, case-insensitive">latin1_swedish_ci</option> <option value="latin1_swedish_nopad_ci" title="Swedish, no-pad, case-insensitive">latin1_swedish_nopad_ci</option> </optgroup> <optgroup label="latin2" title="ISO 8859-2 Central European"> <option value="latin2_bin" title="Central European, binary">latin2_bin</option> <option value="latin2_croatian_ci" title="Croatian, case-insensitive">latin2_croatian_ci</option> <option value="latin2_czech_cs" title="Czech, case-sensitive">latin2_czech_cs</option> <option value="latin2_general_ci" title="Central European, case-insensitive">latin2_general_ci</option> <option value="latin2_general_nopad_ci" title="Central European, no-pad, case-insensitive">latin2_general_nopad_ci</option> <option value="latin2_hungarian_ci" title="Hungarian, case-insensitive">latin2_hungarian_ci</option> <option value="latin2_nopad_bin" title="Central European, no-pad, binary">latin2_nopad_bin</option> </optgroup> <optgroup label="latin5" title="ISO 8859-9 Turkish"> <option value="latin5_bin" title="Turkish, binary">latin5_bin</option> <option value="latin5_nopad_bin" title="Turkish, no-pad, binary">latin5_nopad_bin</option> <option value="latin5_turkish_ci" title="Turkish, case-insensitive">latin5_turkish_ci</option> <option value="latin5_turkish_nopad_ci" title="Turkish, no-pad, case-insensitive">latin5_turkish_nopad_ci</option> </optgroup> <optgroup label="latin7" title="ISO 8859-13 Baltic"> <option value="latin7_bin" title="Baltic, binary">latin7_bin</option> <option value="latin7_estonian_cs" title="Estonian, case-sensitive">latin7_estonian_cs</option> <option value="latin7_general_ci" title="Baltic, case-insensitive">latin7_general_ci</option> <option value="latin7_general_cs" title="Baltic, case-sensitive">latin7_general_cs</option> <option value="latin7_general_nopad_ci" title="Baltic, no-pad, case-insensitive">latin7_general_nopad_ci</option> <option value="latin7_nopad_bin" title="Baltic, no-pad, binary">latin7_nopad_bin</option> </optgroup> <optgroup label="macce" title="Mac Central European"> <option value="macce_bin" title="Central European, binary">macce_bin</option> <option value="macce_general_ci" title="Central European, case-insensitive">macce_general_ci</option> <option value="macce_general_nopad_ci" title="Central European, no-pad, case-insensitive">macce_general_nopad_ci</option> <option value="macce_nopad_bin" title="Central European, no-pad, binary">macce_nopad_bin</option> </optgroup> <optgroup label="macroman" title="Mac West European"> <option value="macroman_bin" title="West European, binary">macroman_bin</option> <option value="macroman_general_ci" title="West European, case-insensitive">macroman_general_ci</option> <option value="macroman_general_nopad_ci" title="West European, no-pad, case-insensitive">macroman_general_nopad_ci</option> <option value="macroman_nopad_bin" title="West European, no-pad, binary">macroman_nopad_bin</option> </optgroup> <optgroup label="sjis" title="Shift-JIS Japanese"> <option value="sjis_bin" title="Japanese, binary">sjis_bin</option> <option value="sjis_japanese_ci" title="Japanese, case-insensitive">sjis_japanese_ci</option> <option value="sjis_japanese_nopad_ci" title="Japanese, no-pad, case-insensitive">sjis_japanese_nopad_ci</option> <option value="sjis_nopad_bin" title="Japanese, no-pad, binary">sjis_nopad_bin</option> </optgroup> <optgroup label="swe7" title="7bit Swedish"> <option value="swe7_bin" title="Swedish, binary">swe7_bin</option> <option value="swe7_nopad_bin" title="Swedish, no-pad, binary">swe7_nopad_bin</option> <option value="swe7_swedish_ci" title="Swedish, case-insensitive">swe7_swedish_ci</option> <option value="swe7_swedish_nopad_ci" title="Swedish, no-pad, case-insensitive">swe7_swedish_nopad_ci</option> </optgroup> <optgroup label="tis620" title="TIS620 Thai"> <option value="tis620_bin" title="Thai, binary">tis620_bin</option> <option value="tis620_nopad_bin" title="Thai, no-pad, binary">tis620_nopad_bin</option> <option value="tis620_thai_ci" title="Thai, case-insensitive">tis620_thai_ci</option> <option value="tis620_thai_nopad_ci" title="Thai, no-pad, case-insensitive">tis620_thai_nopad_ci</option> </optgroup> <optgroup label="ucs2" title="UCS-2 Unicode"> <option value="ucs2_bin" title="Unicode, binary">ucs2_bin</option> <option value="ucs2_croatian_ci" title="Croatian, case-insensitive">ucs2_croatian_ci</option> <option value="ucs2_croatian_mysql561_ci" title="Croatian (MySQL 5.6.1), case-insensitive">ucs2_croatian_mysql561_ci</option> <option value="ucs2_czech_ci" title="Czech, case-insensitive">ucs2_czech_ci</option> <option value="ucs2_danish_ci" title="Danish, case-insensitive">ucs2_danish_ci</option> <option value="ucs2_esperanto_ci" title="Esperanto, case-insensitive">ucs2_esperanto_ci</option> <option value="ucs2_estonian_ci" title="Estonian, case-insensitive">ucs2_estonian_ci</option> <option value="ucs2_general_ci" title="Unicode, case-insensitive">ucs2_general_ci</option> <option value="ucs2_general_mysql500_ci" title="Unicode (MySQL 5.0.0), case-insensitive">ucs2_general_mysql500_ci</option> <option value="ucs2_general_nopad_ci" title="Unicode, no-pad, case-insensitive">ucs2_general_nopad_ci</option> <option value="ucs2_german2_ci" title="German (phone book order), case-insensitive">ucs2_german2_ci</option> <option value="ucs2_hungarian_ci" title="Hungarian, case-insensitive">ucs2_hungarian_ci</option> <option value="ucs2_icelandic_ci" title="Icelandic, case-insensitive">ucs2_icelandic_ci</option> <option value="ucs2_latvian_ci" title="Latvian, case-insensitive">ucs2_latvian_ci</option> <option value="ucs2_lithuanian_ci" title="Lithuanian, case-insensitive">ucs2_lithuanian_ci</option> <option value="ucs2_myanmar_ci" title="Burmese, case-insensitive">ucs2_myanmar_ci</option> <option value="ucs2_nopad_bin" title="Unicode, no-pad, binary">ucs2_nopad_bin</option> <option value="ucs2_persian_ci" title="Persian, case-insensitive">ucs2_persian_ci</option> <option value="ucs2_polish_ci" title="Polish, case-insensitive">ucs2_polish_ci</option> <option value="ucs2_roman_ci" title="West European, case-insensitive">ucs2_roman_ci</option> <option value="ucs2_romanian_ci" title="Romanian, case-insensitive">ucs2_romanian_ci</option> <option value="ucs2_sinhala_ci" title="Sinhalese, case-insensitive">ucs2_sinhala_ci</option> <option value="ucs2_slovak_ci" title="Slovak, case-insensitive">ucs2_slovak_ci</option> <option value="ucs2_slovenian_ci" title="Slovenian, case-insensitive">ucs2_slovenian_ci</option> <option value="ucs2_spanish2_ci" title="Spanish (traditional), case-insensitive">ucs2_spanish2_ci</option> <option value="ucs2_spanish_ci" title="Spanish (modern), case-insensitive">ucs2_spanish_ci</option> <option value="ucs2_swedish_ci" title="Swedish, case-insensitive">ucs2_swedish_ci</option> <option value="ucs2_thai_520_w2" title="Thai (UCA 5.2.0), multi-level">ucs2_thai_520_w2</option> <option value="ucs2_turkish_ci" title="Turkish, case-insensitive">ucs2_turkish_ci</option> <option value="ucs2_unicode_520_ci" title="Unicode (UCA 5.2.0), case-insensitive">ucs2_unicode_520_ci</option> <option value="ucs2_unicode_520_nopad_ci" title="Unicode (UCA 5.2.0), no-pad, case-insensitive">ucs2_unicode_520_nopad_ci</option> <option value="ucs2_unicode_ci" title="Unicode, case-insensitive">ucs2_unicode_ci</option> <option value="ucs2_unicode_nopad_ci" title="Unicode, no-pad, case-insensitive">ucs2_unicode_nopad_ci</option> <option value="ucs2_vietnamese_ci" title="Vietnamese, case-insensitive">ucs2_vietnamese_ci</option> </optgroup> <optgroup label="ujis" title="EUC-JP Japanese"> <option value="ujis_bin" title="Japanese, binary">ujis_bin</option> <option value="ujis_japanese_ci" title="Japanese, case-insensitive">ujis_japanese_ci</option> <option value="ujis_japanese_nopad_ci" title="Japanese, no-pad, case-insensitive">ujis_japanese_nopad_ci</option> <option value="ujis_nopad_bin" title="Japanese, no-pad, binary">ujis_nopad_bin</option> </optgroup> <optgroup label="utf16" title="UTF-16 Unicode"> <option value="utf16_bin" title="Unicode, binary">utf16_bin</option> <option value="utf16_croatian_ci" title="Croatian, case-insensitive">utf16_croatian_ci</option> <option value="utf16_croatian_mysql561_ci" title="Croatian (MySQL 5.6.1), case-insensitive">utf16_croatian_mysql561_ci</option> <option value="utf16_czech_ci" title="Czech, case-insensitive">utf16_czech_ci</option> <option value="utf16_danish_ci" title="Danish, case-insensitive">utf16_danish_ci</option> <option value="utf16_esperanto_ci" title="Esperanto, case-insensitive">utf16_esperanto_ci</option> <option value="utf16_estonian_ci" title="Estonian, case-insensitive">utf16_estonian_ci</option> <option value="utf16_general_ci" title="Unicode, case-insensitive">utf16_general_ci</option> <option value="utf16_general_nopad_ci" title="Unicode, no-pad, case-insensitive">utf16_general_nopad_ci</option> <option value="utf16_german2_ci" title="German (phone book order), case-insensitive">utf16_german2_ci</option> <option value="utf16_hungarian_ci" title="Hungarian, case-insensitive">utf16_hungarian_ci</option> <option value="utf16_icelandic_ci" title="Icelandic, case-insensitive">utf16_icelandic_ci</option> <option value="utf16_latvian_ci" title="Latvian, case-insensitive">utf16_latvian_ci</option> <option value="utf16_lithuanian_ci" title="Lithuanian, case-insensitive">utf16_lithuanian_ci</option> <option value="utf16_myanmar_ci" title="Burmese, case-insensitive">utf16_myanmar_ci</option> <option value="utf16_nopad_bin" title="Unicode, no-pad, binary">utf16_nopad_bin</option> <option value="utf16_persian_ci" title="Persian, case-insensitive">utf16_persian_ci</option> <option value="utf16_polish_ci" title="Polish, case-insensitive">utf16_polish_ci</option> <option value="utf16_roman_ci" title="West European, case-insensitive">utf16_roman_ci</option> <option value="utf16_romanian_ci" title="Romanian, case-insensitive">utf16_romanian_ci</option> <option value="utf16_sinhala_ci" title="Sinhalese, case-insensitive">utf16_sinhala_ci</option> <option value="utf16_slovak_ci" title="Slovak, case-insensitive">utf16_slovak_ci</option> <option value="utf16_slovenian_ci" title="Slovenian, case-insensitive">utf16_slovenian_ci</option> <option value="utf16_spanish2_ci" title="Spanish (traditional), case-insensitive">utf16_spanish2_ci</option> <option value="utf16_spanish_ci" title="Spanish (modern), case-insensitive">utf16_spanish_ci</option> <option value="utf16_swedish_ci" title="Swedish, case-insensitive">utf16_swedish_ci</option> <option value="utf16_thai_520_w2" title="Thai (UCA 5.2.0), multi-level">utf16_thai_520_w2</option> <option value="utf16_turkish_ci" title="Turkish, case-insensitive">utf16_turkish_ci</option> <option value="utf16_unicode_520_ci" title="Unicode (UCA 5.2.0), case-insensitive">utf16_unicode_520_ci</option> <option value="utf16_unicode_520_nopad_ci" title="Unicode (UCA 5.2.0), no-pad, case-insensitive">utf16_unicode_520_nopad_ci</option> <option value="utf16_unicode_ci" title="Unicode, case-insensitive">utf16_unicode_ci</option> <option value="utf16_unicode_nopad_ci" title="Unicode, no-pad, case-insensitive">utf16_unicode_nopad_ci</option> <option value="utf16_vietnamese_ci" title="Vietnamese, case-insensitive">utf16_vietnamese_ci</option> </optgroup> <optgroup label="utf16le" title="UTF-16LE Unicode"> <option value="utf16le_bin" title="Unicode, binary">utf16le_bin</option> <option value="utf16le_general_ci" title="Unicode, case-insensitive">utf16le_general_ci</option> <option value="utf16le_general_nopad_ci" title="Unicode, no-pad, case-insensitive">utf16le_general_nopad_ci</option> <option value="utf16le_nopad_bin" title="Unicode, no-pad, binary">utf16le_nopad_bin</option> </optgroup> <optgroup label="utf32" title="UTF-32 Unicode"> <option value="utf32_bin" title="Unicode, binary">utf32_bin</option> <option value="utf32_croatian_ci" title="Croatian, case-insensitive">utf32_croatian_ci</option> <option value="utf32_croatian_mysql561_ci" title="Croatian (MySQL 5.6.1), case-insensitive">utf32_croatian_mysql561_ci</option> <option value="utf32_czech_ci" title="Czech, case-insensitive">utf32_czech_ci</option> <option value="utf32_danish_ci" title="Danish, case-insensitive">utf32_danish_ci</option> <option value="utf32_esperanto_ci" title="Esperanto, case-insensitive">utf32_esperanto_ci</option> <option value="utf32_estonian_ci" title="Estonian, case-insensitive">utf32_estonian_ci</option> <option value="utf32_general_ci" title="Unicode, case-insensitive">utf32_general_ci</option> <option value="utf32_general_nopad_ci" title="Unicode, no-pad, case-insensitive">utf32_general_nopad_ci</option> <option value="utf32_german2_ci" title="German (phone book order), case-insensitive">utf32_german2_ci</option> <option value="utf32_hungarian_ci" title="Hungarian, case-insensitive">utf32_hungarian_ci</option> <option value="utf32_icelandic_ci" title="Icelandic, case-insensitive">utf32_icelandic_ci</option> <option value="utf32_latvian_ci" title="Latvian, case-insensitive">utf32_latvian_ci</option> <option value="utf32_lithuanian_ci" title="Lithuanian, case-insensitive">utf32_lithuanian_ci</option> <option value="utf32_myanmar_ci" title="Burmese, case-insensitive">utf32_myanmar_ci</option> <option value="utf32_nopad_bin" title="Unicode, no-pad, binary">utf32_nopad_bin</option> <option value="utf32_persian_ci" title="Persian, case-insensitive">utf32_persian_ci</option> <option value="utf32_polish_ci" title="Polish, case-insensitive">utf32_polish_ci</option> <option value="utf32_roman_ci" title="West European, case-insensitive">utf32_roman_ci</option> <option value="utf32_romanian_ci" title="Romanian, case-insensitive">utf32_romanian_ci</option> <option value="utf32_sinhala_ci" title="Sinhalese, case-insensitive">utf32_sinhala_ci</option> <option value="utf32_slovak_ci" title="Slovak, case-insensitive">utf32_slovak_ci</option> <option value="utf32_slovenian_ci" title="Slovenian, case-insensitive">utf32_slovenian_ci</option> <option value="utf32_spanish2_ci" title="Spanish (traditional), case-insensitive">utf32_spanish2_ci</option> <option value="utf32_spanish_ci" title="Spanish (modern), case-insensitive">utf32_spanish_ci</option> <option value="utf32_swedish_ci" title="Swedish, case-insensitive">utf32_swedish_ci</option> <option value="utf32_thai_520_w2" title="Thai (UCA 5.2.0), multi-level">utf32_thai_520_w2</option> <option value="utf32_turkish_ci" title="Turkish, case-insensitive">utf32_turkish_ci</option> <option value="utf32_unicode_520_ci" title="Unicode (UCA 5.2.0), case-insensitive">utf32_unicode_520_ci</option> <option value="utf32_unicode_520_nopad_ci" title="Unicode (UCA 5.2.0), no-pad, case-insensitive">utf32_unicode_520_nopad_ci</option> <option value="utf32_unicode_ci" title="Unicode, case-insensitive">utf32_unicode_ci</option> <option value="utf32_unicode_nopad_ci" title="Unicode, no-pad, case-insensitive">utf32_unicode_nopad_ci</option> <option value="utf32_vietnamese_ci" title="Vietnamese, case-insensitive">utf32_vietnamese_ci</option> </optgroup> <optgroup label="utf8" title="UTF-8 Unicode"> <option value="utf8_bin" title="Unicode, binary">utf8_bin</option> <option value="utf8_croatian_ci" title="Croatian, case-insensitive">utf8_croatian_ci</option> <option value="utf8_croatian_mysql561_ci" title="Croatian (MySQL 5.6.1), case-insensitive">utf8_croatian_mysql561_ci</option> <option value="utf8_czech_ci" title="Czech, case-insensitive">utf8_czech_ci</option> <option value="utf8_danish_ci" title="Danish, case-insensitive">utf8_danish_ci</option> <option value="utf8_esperanto_ci" title="Esperanto, case-insensitive">utf8_esperanto_ci</option> <option value="utf8_estonian_ci" title="Estonian, case-insensitive">utf8_estonian_ci</option> <option value="utf8_general_ci" title="Unicode, case-insensitive">utf8_general_ci</option> <option value="utf8_general_mysql500_ci" title="Unicode (MySQL 5.0.0), case-insensitive">utf8_general_mysql500_ci</option> <option value="utf8_general_nopad_ci" title="Unicode, no-pad, case-insensitive">utf8_general_nopad_ci</option> <option value="utf8_german2_ci" title="German (phone book order), case-insensitive">utf8_german2_ci</option> <option value="utf8_hungarian_ci" title="Hungarian, case-insensitive">utf8_hungarian_ci</option> <option value="utf8_icelandic_ci" title="Icelandic, case-insensitive">utf8_icelandic_ci</option> <option value="utf8_latvian_ci" title="Latvian, case-insensitive">utf8_latvian_ci</option> <option value="utf8_lithuanian_ci" title="Lithuanian, case-insensitive">utf8_lithuanian_ci</option> <option value="utf8_myanmar_ci" title="Burmese, case-insensitive">utf8_myanmar_ci</option> <option value="utf8_nopad_bin" title="Unicode, no-pad, binary">utf8_nopad_bin</option> <option value="utf8_persian_ci" title="Persian, case-insensitive">utf8_persian_ci</option> <option value="utf8_polish_ci" title="Polish, case-insensitive">utf8_polish_ci</option> <option value="utf8_roman_ci" title="West European, case-insensitive">utf8_roman_ci</option> <option value="utf8_romanian_ci" title="Romanian, case-insensitive">utf8_romanian_ci</option> <option value="utf8_sinhala_ci" title="Sinhalese, case-insensitive">utf8_sinhala_ci</option> <option value="utf8_slovak_ci" title="Slovak, case-insensitive">utf8_slovak_ci</option> <option value="utf8_slovenian_ci" title="Slovenian, case-insensitive">utf8_slovenian_ci</option> <option value="utf8_spanish2_ci" title="Spanish (traditional), case-insensitive">utf8_spanish2_ci</option> <option value="utf8_spanish_ci" title="Spanish (modern), case-insensitive">utf8_spanish_ci</option> <option value="utf8_swedish_ci" title="Swedish, case-insensitive">utf8_swedish_ci</option> <option value="utf8_thai_520_w2" title="Thai (UCA 5.2.0), multi-level">utf8_thai_520_w2</option> <option value="utf8_turkish_ci" title="Turkish, case-insensitive">utf8_turkish_ci</option> <option value="utf8_unicode_520_ci" title="Unicode (UCA 5.2.0), case-insensitive">utf8_unicode_520_ci</option> <option value="utf8_unicode_520_nopad_ci" title="Unicode (UCA 5.2.0), no-pad, case-insensitive">utf8_unicode_520_nopad_ci</option> <option value="utf8_unicode_ci" title="Unicode, case-insensitive">utf8_unicode_ci</option> <option value="utf8_unicode_nopad_ci" title="Unicode, no-pad, case-insensitive">utf8_unicode_nopad_ci</option> <option value="utf8_vietnamese_ci" title="Vietnamese, case-insensitive">utf8_vietnamese_ci</option> </optgroup> <optgroup label="utf8mb4" title="UTF-8 Unicode"> <option value="utf8mb4_bin" title="Unicode (UCA 4.0.0), binary">utf8mb4_bin</option> <option value="utf8mb4_croatian_ci" title="Croatian (UCA 4.0.0), case-insensitive">utf8mb4_croatian_ci</option> <option value="utf8mb4_croatian_mysql561_ci" title="Croatian (MySQL 5.6.1), case-insensitive">utf8mb4_croatian_mysql561_ci</option> <option value="utf8mb4_czech_ci" title="Czech (UCA 4.0.0), case-insensitive">utf8mb4_czech_ci</option> <option value="utf8mb4_danish_ci" title="Danish (UCA 4.0.0), case-insensitive">utf8mb4_danish_ci</option> <option value="utf8mb4_esperanto_ci" title="Esperanto (UCA 4.0.0), case-insensitive">utf8mb4_esperanto_ci</option> <option value="utf8mb4_estonian_ci" title="Estonian (UCA 4.0.0), case-insensitive">utf8mb4_estonian_ci</option> <option value="utf8mb4_general_ci" title="Unicode (UCA 4.0.0), case-insensitive">utf8mb4_general_ci</option> <option value="utf8mb4_general_nopad_ci" title="Unicode (UCA 4.0.0), no-pad, case-insensitive">utf8mb4_general_nopad_ci</option> <option value="utf8mb4_german2_ci" title="German (phone book order) (UCA 4.0.0), case-insensitive">utf8mb4_german2_ci</option> <option value="utf8mb4_hungarian_ci" title="Hungarian (UCA 4.0.0), case-insensitive">utf8mb4_hungarian_ci</option> <option value="utf8mb4_icelandic_ci" title="Icelandic (UCA 4.0.0), case-insensitive">utf8mb4_icelandic_ci</option> <option value="utf8mb4_latvian_ci" title="Latvian (UCA 4.0.0), case-insensitive">utf8mb4_latvian_ci</option> <option value="utf8mb4_lithuanian_ci" title="Lithuanian (UCA 4.0.0), case-insensitive">utf8mb4_lithuanian_ci</option> <option value="utf8mb4_myanmar_ci" title="Burmese (UCA 4.0.0), case-insensitive">utf8mb4_myanmar_ci</option> <option value="utf8mb4_nopad_bin" title="Unicode (UCA 4.0.0), no-pad, binary">utf8mb4_nopad_bin</option> <option value="utf8mb4_persian_ci" title="Persian (UCA 4.0.0), case-insensitive">utf8mb4_persian_ci</option> <option value="utf8mb4_polish_ci" title="Polish (UCA 4.0.0), case-insensitive">utf8mb4_polish_ci</option> <option value="utf8mb4_roman_ci" title="West European (UCA 4.0.0), case-insensitive">utf8mb4_roman_ci</option> <option value="utf8mb4_romanian_ci" title="Romanian (UCA 4.0.0), case-insensitive">utf8mb4_romanian_ci</option> <option value="utf8mb4_sinhala_ci" title="Sinhalese (UCA 4.0.0), case-insensitive">utf8mb4_sinhala_ci</option> <option value="utf8mb4_slovak_ci" title="Slovak (UCA 4.0.0), case-insensitive">utf8mb4_slovak_ci</option> <option value="utf8mb4_slovenian_ci" title="Slovenian (UCA 4.0.0), case-insensitive">utf8mb4_slovenian_ci</option> <option value="utf8mb4_spanish2_ci" title="Spanish (traditional) (UCA 4.0.0), case-insensitive">utf8mb4_spanish2_ci</option> <option value="utf8mb4_spanish_ci" title="Spanish (modern) (UCA 4.0.0), case-insensitive">utf8mb4_spanish_ci</option> <option value="utf8mb4_swedish_ci" title="Swedish (UCA 4.0.0), case-insensitive">utf8mb4_swedish_ci</option> <option value="utf8mb4_thai_520_w2" title="Thai (UCA 5.2.0), multi-level">utf8mb4_thai_520_w2</option> <option value="utf8mb4_turkish_ci" title="Turkish (UCA 4.0.0), case-insensitive">utf8mb4_turkish_ci</option> <option value="utf8mb4_unicode_520_ci" title="Unicode (UCA 5.2.0), case-insensitive">utf8mb4_unicode_520_ci</option> <option value="utf8mb4_unicode_520_nopad_ci" title="Unicode (UCA 5.2.0), no-pad, case-insensitive">utf8mb4_unicode_520_nopad_ci</option> <option value="utf8mb4_unicode_ci" title="Unicode (UCA 4.0.0), case-insensitive" selected>utf8mb4_unicode_ci</option> <option value="utf8mb4_unicode_nopad_ci" title="Unicode (UCA 4.0.0), no-pad, case-insensitive">utf8mb4_unicode_nopad_ci</option> <option value="utf8mb4_vietnamese_ci" title="Vietnamese (UCA 4.0.0), case-insensitive">utf8mb4_vietnamese_ci</option> </optgroup> </select> </div> </form> </li> <li id="li_user_preferences" class="list-group-item"> <a href="index.php?route=/preferences/manage&lang=en"> <span class="text-nowrap"><img src="themes/dot.gif" title="More settings" alt="More settings" class="icon ic_b_tblops"> More settings</span> </a> </li> </ul> </div> <div class="card mt-4"> <div class="card-header"> Appearance settings </div> <ul class="list-group list-group-flush"> <li id="li_select_lang" class="list-group-item"> <form method="get" action="index.php?route=/&lang=en" class="row row-cols-lg-auto align-items-center disableAjax"> <input type="hidden" name="db" value=""><input type="hidden" name="table" value=""><input type="hidden" name="lang" value="en"><input type="hidden" name="token" value="68796d444825575e6d2d604f364a4658"> <div class="col-12"> <label for="languageSelect" class="col-form-label text-nowrap"> <img src="themes/dot.gif" title="" alt="" class="icon ic_s_lang"> Language <a href="./doc/html/faq.html#faq7-2" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </label> </div> <div class="col-12"> <select name="lang" class="form-select autosubmit w-auto" lang="en" dir="ltr" id="languageSelect"> <option value="sq">Shqip - Albanian</option> <option value="ar">العربية - Arabic</option> <option value="hy">Հայերէն - Armenian</option> <option value="az">Azərbaycanca - Azerbaijani</option> <option value="bn">বাংলা - Bangla</option> <option value="be">Беларуская - Belarusian</option> <option value="bg">Български - Bulgarian</option> <option value="ca">Català - Catalan</option> <option value="zh_cn">中文 - Chinese simplified</option> <option value="zh_tw">中文 - Chinese traditional</option> <option value="cs">Čeština - Czech</option> <option value="da">Dansk - Danish</option> <option value="nl">Nederlands - Dutch</option> <option value="en" selected>English</option> <option value="en_gb">English (United Kingdom)</option> <option value="et">Eesti - Estonian</option> <option value="fi">Suomi - Finnish</option> <option value="fr">Français - French</option> <option value="gl">Galego - Galician</option> <option value="de">Deutsch - German</option> <option value="el">Ελληνικά - Greek</option> <option value="he">עברית - Hebrew</option> <option value="hu">Magyar - Hungarian</option> <option value="id">Bahasa Indonesia - Indonesian</option> <option value="ia">Interlingua</option> <option value="it">Italiano - Italian</option> <option value="ja">日本語 - Japanese</option> <option value="kk">Қазақ - Kazakh</option> <option value="ko">한국어 - Korean</option> <option value="nb">Norsk - Norwegian</option> <option value="pl">Polski - Polish</option> <option value="pt">Português - Portuguese</option> <option value="pt_br">Português (Brasil) - Portuguese (Brazil)</option> <option value="ro">Română - Romanian</option> <option value="ru">Русский - Russian</option> <option value="si">සිංහල - Sinhala</option> <option value="sk">Slovenčina - Slovak</option> <option value="sl">Slovenščina - Slovenian</option> <option value="es">Español - Spanish</option> <option value="sv">Svenska - Swedish</option> <option value="tr">Türkçe - Turkish</option> <option value="uk">Українська - Ukrainian</option> <option value="vi">Tiếng Việt - Vietnamese</option> </select> </div> </form> </li> <li id="li_select_theme" class="list-group-item"> <form method="post" action="index.php?route=/themes/set&lang=en" class="row row-cols-lg-auto align-items-center disableAjax"> <input type="hidden" name="lang" value="en"><input type="hidden" name="token" value="68796d444825575e6d2d604f364a4658"> <div class="col-12"> <label for="themeSelect" class="col-form-label"> <span class="text-nowrap"><img src="themes/dot.gif" title="Theme" alt="Theme" class="icon ic_s_theme"> Theme</span> </label> </div> <div class="col-12"> <div class="input-group"> <select name="set_theme" class="form-select autosubmit" lang="en" dir="ltr" id="themeSelect"> <option value="bootstrap">Bootstrap</option> <option value="metro">Metro</option> <option value="original">Original</option> <option value="pmahomme" selected>pmahomme</option> </select> <button type="button" class="btn btn-outline-secondary" data-bs-toggle="modal" data-bs-target="#themesModal"> View all </button> </div> </div> </form> </li> </ul> </div> </div> <div class="col-lg-5 col-12"> <div class="card mt-4"> <div class="card-header"> Database server </div> <ul class="list-group list-group-flush"> <li class="list-group-item"> Server: Localhost via UNIX socket </li> <li class="list-group-item"> Server type: MariaDB </li> <li class="list-group-item"> Server connection: <span class="">SSL is not being used</span> <a href="./doc/html/setup.html#ssl" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </li> <li class="list-group-item"> Server version: 10.4.27-MariaDB - Source distribution </li> <li class="list-group-item"> Protocol version: 10 </li> <li class="list-group-item"> User: root@localhost </li> <li class="list-group-item"> Server charset: <span lang="en" dir="ltr"> UTF-8 Unicode (utf8mb4) </span> </li> </ul> </div> <div class="card mt-4"> <div class="card-header"> Web server </div> <ul class="list-group list-group-flush"> <li class="list-group-item"> Apache/2.4.54 (Unix) OpenSSL/1.1.1s PHP/7.4.33 mod_perl/2.0.12 Perl/v5.34.1 </li> <li class="list-group-item" id="li_mysql_client_version"> Database client version: libmysql - mysqlnd 7.4.33 </li> <li class="list-group-item"> PHP extension: mysqli <a href="./url.php?url=https%3A%2F%2Fwww.php.net%2Fmanual%2Fen%2Fbook.mysqli.php" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> curl <a href="./url.php?url=https%3A%2F%2Fwww.php.net%2Fmanual%2Fen%2Fbook.curl.php" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> mbstring <a href="./url.php?url=https%3A%2F%2Fwww.php.net%2Fmanual%2Fen%2Fbook.mbstring.php" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </li> <li class="list-group-item"> PHP version: 7.4.33 </li> </ul> </div> <div class="card mt-4"> <div class="card-header"> phpMyAdmin </div> <ul class="list-group list-group-flush"> <li id="li_pma_version" class="list-group-item jsversioncheck"> Version information: <span class="version">5.2.0</span> </li> <li class="list-group-item"> <a href="./doc/html/index.html" target="_blank" rel="noopener noreferrer"> Documentation </a> </li> <li class="list-group-item"> <a href="./url.php?url=https%3A%2F%2Fwww.phpmyadmin.net%2F" target="_blank" rel="noopener noreferrer"> Official Homepage </a> </li> <li class="list-group-item"> <a href="./url.php?url=https%3A%2F%2Fwww.phpmyadmin.net%2Fcontribute%2F" target="_blank" rel="noopener noreferrer"> Contribute </a> </li> <li class="list-group-item"> <a href="./url.php?url=https%3A%2F%2Fwww.phpmyadmin.net%2Fsupport%2F" target="_blank" rel="noopener noreferrer"> Get support </a> </li> <li class="list-group-item"> <a href="index.php?route=/changelog&lang=en" target="_blank"> List of changes </a> </li> <li class="list-group-item"> <a href="index.php?route=/license&lang=en" target="_blank"> License </a> </li> </ul> </div> </div> </div> </div> </div> <div class="modal fade" id="themesModal" tabindex="-1" aria-labelledby="themesModalLabel" aria-hidden="true"> <div class="modal-dialog modal-xl"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="themesModalLabel">phpMyAdmin Themes</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"> <div class="spinner-border" role="status"> <span class="visually-hidden">Loading…</span> </div> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> <a href="./url.php?url=https%3A%2F%2Fwww.phpmyadmin.net%2Fthemes%2F#pma_5_2" class="btn btn-primary" rel="noopener noreferrer" target="_blank"> Get more themes! </a> </div> </div> </div> </div> </div> <div id="selflink" class="d-print-none"> <a href="index.php?route=%2F&server=1&lang=en" title="Open new phpMyAdmin window" target="_blank" rel="noopener noreferrer"> <img src="themes/dot.gif" title="Open new phpMyAdmin window" alt="Open new phpMyAdmin window" class="icon ic_window-new"> </a> </div> <div class="clearfloat d-print-none" id="pma_errors"> </div> <script data-cfasync="false" type="text/javascript"> // <![CDATA[ var debugSQLInfo = 'null'; // ]]> </script> </body> </html>Parameter Content-Security-PolicyEvidence default-src 'self' ;script-src 'self' 'unsafe-inline' 'unsafe-eval' ;style-src 'self' 'unsafe-inline' ;img-src 'self' data: *.tile.openstreetmap.org;object-src 'none';Solution Ensure that your web server, application server, load balancer, etc. is properly configured to set the Content-Security-Policy header.
-
CSP: style-src unsafe-inline (1)
GET http://localhost/phpmyadmin/
Alert tags Alert description Content Security Policy (CSP) is an added layer of security that helps to detect and mitigate certain types of attacks. Including (but not limited to) Cross Site Scripting (XSS), and data injection attacks. These attacks are used for everything from data theft to site defacement or distribution of malware. CSP provides a set of standard HTTP headers that allow website owners to declare approved sources of content that browsers should be allowed to load on that page — covered types are JavaScript, CSS, HTML frames, fonts, images and embeddable objects such as Java applets, ActiveX, audio and video files.
Other info style-src includes unsafe-inline.
Request Request line and header section (268 bytes)
GET http://localhost/phpmyadmin/ HTTP/1.1 host: localhost user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 pragma: no-cache cache-control: no-cache referer: http://localhost/dashboard/Request body (0 bytes)
Response Status line and header section (1561 bytes)
HTTP/1.1 200 OK Date: Sat, 19 Apr 2025 15:17:44 GMT Server: Apache/2.4.54 (Unix) OpenSSL/1.1.1s PHP/7.4.33 mod_perl/2.0.12 Perl/v5.34.1 X-Powered-By: PHP/7.4.33 Set-Cookie: phpMyAdmin=610f86c60f00a8f4dc92fe660c217e62; path=/phpmyadmin/; HttpOnly; SameSite=Strict Expires: Sat, 19 Apr 2025 15:17:45 +0000 Cache-Control: no-store, no-cache, must-revalidate, pre-check=0, post-check=0, max-age=0 Last-Modified: Sat, 19 Apr 2025 15:17:45 +0000 Set-Cookie: phpMyAdmin=610f86c60f00a8f4dc92fe660c217e62; path=/phpmyadmin/; HttpOnly; SameSite=Strict Set-Cookie: pma_lang=en; expires=Mon, 19-May-2025 15:17:45 GMT; Max-Age=2592000; path=/phpmyadmin/; HttpOnly; SameSite=Strict X-ob_mode: 1 X-Frame-Options: DENY Referrer-Policy: no-referrer Content-Security-Policy: default-src 'self' ;script-src 'self' 'unsafe-inline' 'unsafe-eval' ;style-src 'self' 'unsafe-inline' ;img-src 'self' data: *.tile.openstreetmap.org;object-src 'none'; X-Content-Security-Policy: default-src 'self' ;options inline-script eval-script;referrer no-referrer;img-src 'self' data: *.tile.openstreetmap.org;object-src 'none'; X-WebKit-CSP: default-src 'self' ;script-src 'self' 'unsafe-inline' 'unsafe-eval';referrer no-referrer;style-src 'self' 'unsafe-inline' ;img-src 'self' data: *.tile.openstreetmap.org;object-src 'none'; X-XSS-Protection: 1; mode=block X-Content-Type-Options: nosniff X-Permitted-Cross-Domain-Policies: none X-Robots-Tag: noindex, nofollow Pragma: no-cache Vary: Accept-Encoding Content-Type: text/html; charset=utf-8 content-length: 145988Response body (145988 bytes)
<!doctype html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="referrer" content="no-referrer"> <meta name="robots" content="noindex,nofollow"> <style id="cfs-style">html{display: none;}</style> <link rel="icon" href="favicon.ico" type="image/x-icon"> <link rel="shortcut icon" href="favicon.ico" type="image/x-icon"> <link rel="stylesheet" type="text/css" href="./themes/pmahomme/jquery/jquery-ui.css"> <link rel="stylesheet" type="text/css" href="js/vendor/codemirror/lib/codemirror.css?v=5.2.0"> <link rel="stylesheet" type="text/css" href="js/vendor/codemirror/addon/hint/show-hint.css?v=5.2.0"> <link rel="stylesheet" type="text/css" href="js/vendor/codemirror/addon/lint/lint.css?v=5.2.0"> <link rel="stylesheet" type="text/css" href="./themes/pmahomme/css/theme.css?v=5.2.0"> <title>localhost / localhost | phpMyAdmin 5.2.0</title> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery.min.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery-migrate.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/sprintf.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/ajax.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/keyhandler.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery-ui.min.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/name-conflict-fixes.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/bootstrap/bootstrap.bundle.min.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/js.cookie.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery.validate.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery-ui-timepicker-addon.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery.debounce-1.0.6.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/menu_resizer.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/cross_framing_protection.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/messages.php?l=en&v=5.2.0&lang=en"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/config.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/doclinks.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/functions.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/navigation.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/indexes.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/common.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/page_settings.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/home.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/lib/codemirror.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/mode/sql/sql.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/addon/runmode/runmode.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/addon/hint/show-hint.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/addon/hint/sql-hint.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/addon/lint/lint.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/codemirror/addon/lint/sql-lint.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/tracekit.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/error_report.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/drag_drop_import.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/shortcuts_handler.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/console.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript"> // <![CDATA[ CommonParams.setAll({common_query:"lang=en",opendb_url:"index.php?route=/database/structure&lang=en",lang:"en",server:"1",table:"",db:"",token:"68796d444825575e6d2d604f364a4658",text_dir:"ltr",LimitChars:"50",pftext:"",confirm:true,LoginCookieValidity:"1440",session_gc_maxlifetime:"1440",logged_in:true,is_https:false,rootPath:"/phpmyadmin/",arg_separator:"&",version:"5.2.0",auth_type:"config",user:"root"}); var firstDayOfCalendar = '0'; var themeImagePath = '.\/themes\/pmahomme\/img\/'; var mysqlDocTemplate = '.\/url.php\u003Furl\u003Dhttps\u00253A\u00252F\u00252Fdev.mysql.com\u00252Fdoc\u00252Frefman\u00252F8.0\u00252Fen\u00252F\u002525s.html'; var maxInputVars = 1000; if ($.datepicker) { $.datepicker.regional[''].closeText = 'Done'; $.datepicker.regional[''].prevText = 'Prev'; $.datepicker.regional[''].nextText = 'Next'; $.datepicker.regional[''].currentText = 'Today'; $.datepicker.regional[''].monthNames = [ 'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December', ]; $.datepicker.regional[''].monthNamesShort = [ 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec', ]; $.datepicker.regional[''].dayNames = [ 'Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', ]; $.datepicker.regional[''].dayNamesShort = [ 'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', ]; $.datepicker.regional[''].dayNamesMin = [ 'Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa', ]; $.datepicker.regional[''].weekHeader = 'Wk'; $.datepicker.regional[''].showMonthAfterYear = false; $.datepicker.regional[''].yearSuffix = ''; $.extend($.datepicker._defaults, $.datepicker.regional['']); } if ($.timepicker) { $.timepicker.regional[''].timeText = 'Time'; $.timepicker.regional[''].hourText = 'Hour'; $.timepicker.regional[''].minuteText = 'Minute'; $.timepicker.regional[''].secondText = 'Second'; $.extend($.timepicker._defaults, $.timepicker.regional['']); } function extendingValidatorMessages () { $.extend($.validator.messages, { required: 'This\u0020field\u0020is\u0020required', remote: 'Please\u0020fix\u0020this\u0020field', email: 'Please\u0020enter\u0020a\u0020valid\u0020email\u0020address', url: 'Please\u0020enter\u0020a\u0020valid\u0020URL', date: 'Please\u0020enter\u0020a\u0020valid\u0020date', dateISO: 'Please\u0020enter\u0020a\u0020valid\u0020date\u0020\u0028\u0020ISO\u0020\u0029', number: 'Please\u0020enter\u0020a\u0020valid\u0020number', creditcard: 'Please\u0020enter\u0020a\u0020valid\u0020credit\u0020card\u0020number', digits: 'Please\u0020enter\u0020only\u0020digits', equalTo: 'Please\u0020enter\u0020the\u0020same\u0020value\u0020again', maxlength: $.validator.format('Please\u0020enter\u0020no\u0020more\u0020than\u0020\u007B0\u007D\u0020characters'), minlength: $.validator.format('Please\u0020enter\u0020at\u0020least\u0020\u007B0\u007D\u0020characters'), rangelength: $.validator.format('Please\u0020enter\u0020a\u0020value\u0020between\u0020\u007B0\u007D\u0020and\u0020\u007B1\u007D\u0020characters\u0020long'), range: $.validator.format('Please\u0020enter\u0020a\u0020value\u0020between\u0020\u007B0\u007D\u0020and\u0020\u007B1\u007D'), max: $.validator.format('Please\u0020enter\u0020a\u0020value\u0020less\u0020than\u0020or\u0020equal\u0020to\u0020\u007B0\u007D'), min: $.validator.format('Please\u0020enter\u0020a\u0020value\u0020greater\u0020than\u0020or\u0020equal\u0020to\u0020\u007B0\u007D'), validationFunctionForDateTime: $.validator.format('Please\u0020enter\u0020a\u0020valid\u0020date\u0020or\u0020time'), validationFunctionForHex: $.validator.format('Please\u0020enter\u0020a\u0020valid\u0020HEX\u0020input'), validationFunctionForMd5: $.validator.format('This\u0020column\u0020can\u0020not\u0020contain\u0020a\u002032\u0020chars\u0020value'), validationFunctionForAesDesEncrypt: $.validator.format('These\u0020functions\u0020are\u0020meant\u0020to\u0020return\u0020a\u0020binary\u0020result\u003B\u0020to\u0020avoid\u0020inconsistent\u0020results\u0020you\u0020should\u0020store\u0020it\u0020in\u0020a\u0020BINARY,\u0020VARBINARY,\u0020or\u0020BLOB\u0020column.') }); } ConsoleEnterExecutes=false AJAX.scriptHandler .add('vendor/jquery/jquery.min.js', 0) .add('vendor/jquery/jquery-migrate.js', 0) .add('vendor/sprintf.js', 1) .add('ajax.js', 0) .add('keyhandler.js', 1) .add('vendor/jquery/jquery-ui.min.js', 0) .add('name-conflict-fixes.js', 1) .add('vendor/bootstrap/bootstrap.bundle.min.js', 1) .add('vendor/js.cookie.js', 1) .add('vendor/jquery/jquery.validate.js', 0) .add('vendor/jquery/jquery-ui-timepicker-addon.js', 0) .add('vendor/jquery/jquery.debounce-1.0.6.js', 0) .add('menu_resizer.js', 1) .add('cross_framing_protection.js', 0) .add('messages.php', 0) .add('config.js', 1) .add('doclinks.js', 1) .add('functions.js', 1) .add('navigation.js', 1) .add('indexes.js', 1) .add('common.js', 1) .add('page_settings.js', 1) .add('home.js', 1) .add('vendor/codemirror/lib/codemirror.js', 0) .add('vendor/codemirror/mode/sql/sql.js', 0) .add('vendor/codemirror/addon/runmode/runmode.js', 0) .add('vendor/codemirror/addon/hint/show-hint.js', 0) .add('vendor/codemirror/addon/hint/sql-hint.js', 0) .add('vendor/codemirror/addon/lint/lint.js', 0) .add('codemirror/addon/lint/sql-lint.js', 0) .add('vendor/tracekit.js', 1) .add('error_report.js', 1) .add('drag_drop_import.js', 1) .add('shortcuts_handler.js', 1) .add('console.js', 1) ; $(function() { AJAX.fireOnload('vendor/sprintf.js'); AJAX.fireOnload('keyhandler.js'); AJAX.fireOnload('name-conflict-fixes.js'); AJAX.fireOnload('vendor/bootstrap/bootstrap.bundle.min.js'); AJAX.fireOnload('vendor/js.cookie.js'); AJAX.fireOnload('menu_resizer.js'); AJAX.fireOnload('config.js'); AJAX.fireOnload('doclinks.js'); AJAX.fireOnload('functions.js'); AJAX.fireOnload('navigation.js'); AJAX.fireOnload('indexes.js'); AJAX.fireOnload('common.js'); AJAX.fireOnload('page_settings.js'); AJAX.fireOnload('home.js'); AJAX.fireOnload('vendor/tracekit.js'); AJAX.fireOnload('error_report.js'); AJAX.fireOnload('drag_drop_import.js'); AJAX.fireOnload('shortcuts_handler.js'); AJAX.fireOnload('console.js'); }); // ]]> </script> <noscript><style>html{display:block}</style></noscript> </head> <body> <div id="pma_navigation" class="d-print-none" data-config-navigation-width="0"> <div id="pma_navigation_resizer"></div> <div id="pma_navigation_collapser"></div> <div id="pma_navigation_content"> <div id="pma_navigation_header"> <div id="pmalogo"> <a href="index.php?lang=en"> <img id="imgpmalogo" src="./themes/pmahomme/img/logo_left.png" alt="phpMyAdmin"> </a> </div> <div id="navipanellinks"> <a href="index.php?route=/&lang=en" title="Home"><img src="themes/dot.gif" title="Home" alt="Home" class="icon ic_b_home"></a> <a class="logout disableAjax" href="index.php?route=/logout&lang=en" title="Empty session data"><img src="themes/dot.gif" title="Empty session data" alt="Empty session data" class="icon ic_s_loggoff"></a> <a href="./doc/html/index.html" title="phpMyAdmin documentation" target="_blank" rel="noopener noreferrer"><img src="themes/dot.gif" title="phpMyAdmin documentation" alt="phpMyAdmin documentation" class="icon ic_b_docs"></a> <a href="./url.php?url=https%3A%2F%2Fmariadb.com%2Fkb%2Fen%2Fdocumentation%2F" title="MariaDB Documentation" target="_blank" rel="noopener noreferrer"><img src="themes/dot.gif" title="MariaDB Documentation" alt="MariaDB Documentation" class="icon ic_b_sqlhelp"></a> <a id="pma_navigation_settings_icon" href="#" title="Navigation panel settings"><img src="themes/dot.gif" title="Navigation panel settings" alt="Navigation panel settings" class="icon ic_s_cog"></a> <a id="pma_navigation_reload" href="#" title="Reload navigation panel"><img src="themes/dot.gif" title="Reload navigation panel" alt="Reload navigation panel" class="icon ic_s_reload"></a> </div> <img src="themes/dot.gif" title="Loading…" alt="Loading…" style="visibility: hidden; display:none" class="icon ic_ajax_clock_small throbber"> </div> <div id="pma_navigation_tree" class="list_container synced highlight autoexpand"> <div class="pma_quick_warp"> <div class="drop_list"><button title="Recent tables" class="drop_button btn">Recent</button><ul id="pma_recent_list"><li class="warp_link"> <a href="index.php?route=/table/recent-favorite&db=scan&table=wp_users&lang=en"> `scan`.`wp_users` </a> </li> <li class="warp_link"> <a href="index.php?route=/table/recent-favorite&db=attack&table=wp_users&lang=en"> `attack`.`wp_users` </a> </li> <li class="warp_link"> <a href="index.php?route=/table/recent-favorite&db=test&table=wp_users&lang=en"> `test`.`wp_users` </a> </li> </ul></div> <div class="drop_list"><button title="Favorite tables" class="drop_button btn">Favorites</button><ul id="pma_favorite_list"><li class="warp_link"> There are no favorite tables. </li> </ul></div> <div class="clearfloat"></div> </div> <div class="clearfloat"></div> <ul> <!-- CONTROLS START --> <li id="navigation_controls_outer"> <div id="navigation_controls"> <a href="#" id="pma_navigation_collapse" title="Collapse all"><img src="themes/dot.gif" title="Collapse all" alt="Collapse all" class="icon ic_s_collapseall"></a> <a href="#" id="pma_navigation_sync" title="Unlink from main panel"><img src="themes/dot.gif" title="Unlink from main panel" alt="Unlink from main panel" class="icon ic_s_link"></a> </div> </li> <!-- CONTROLS ENDS --> </ul> <div id='pma_navigation_tree_content'> <ul> <li class="first new_database italics"> <div class="block"> <i class="first"></i> </div> <div class="block second"> <a href="index.php?route=/server/databases&lang=en"><img src="themes/dot.gif" title="New" alt="New" class="icon ic_b_newdb"></a> </div> <a class="hover_show_full" href="index.php?route=/server/databases&lang=en" title="New">New</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.YXR0YWNr" data-vpath="cm9vdA==.YXR0YWNr" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=attack&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=attack&lang=en" title="Structure">attack</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.aW5mb3JtYXRpb25fc2NoZW1h" data-vpath="cm9vdA==.aW5mb3JtYXRpb25fc2NoZW1h" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=information_schema&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=information_schema&lang=en" title="Structure">information_schema</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.bXlzcWw=" data-vpath="cm9vdA==.bXlzcWw=" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=mysql&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=mysql&lang=en" title="Structure">mysql</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.cGVyZm9ybWFuY2Vfc2NoZW1h" data-vpath="cm9vdA==.cGVyZm9ybWFuY2Vfc2NoZW1h" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=performance_schema&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=performance_schema&lang=en" title="Structure">performance_schema</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.cGhwbXlhZG1pbg==" data-vpath="cm9vdA==.cGhwbXlhZG1pbg==" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=phpmyadmin&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=phpmyadmin&lang=en" title="Structure">phpmyadmin</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.c2Nhbg==" data-vpath="cm9vdA==.c2Nhbg==" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=scan&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=scan&lang=en" title="Structure">scan</a> <div class="clearfloat"></div> </li> <li class="last database"> <div class="block"> <i></i> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.dGVzdA==" data-vpath="cm9vdA==.dGVzdA==" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=test&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=test&lang=en" title="Structure">test</a> <div class="clearfloat"></div> </li> </ul> </div> </div> <div id="pma_navi_settings_container"> <div id="pma_navigation_settings"><div class="page_settings"><form method="post" action="index.php?route=%2F&server=1&lang=en" class="config-form disableAjax"> <input type="hidden" name="tab_hash" value=""> <input type="hidden" name="check_page_refresh" id="check_page_refresh" value=""> <input type="hidden" name="lang" value="en"><input type="hidden" name="token" value="68796d444825575e6d2d604f364a4658"> <input type="hidden" name="submit_save" value="Navi"> <ul class="nav nav-tabs" id="configFormDisplayTab" role="tablist"> <li class="nav-item" role="presentation"> <a class="nav-link active" id="Navi_panel-tab" href="#Navi_panel" data-bs-toggle="tab" role="tab" aria-controls="Navi_panel" aria-selected="true">Navigation panel</a> </li> <li class="nav-item" role="presentation"> <a class="nav-link" id="Navi_tree-tab" href="#Navi_tree" data-bs-toggle="tab" role="tab" aria-controls="Navi_tree" aria-selected="false">Navigation tree</a> </li> <li class="nav-item" role="presentation"> <a class="nav-link" id="Navi_servers-tab" href="#Navi_servers" data-bs-toggle="tab" role="tab" aria-controls="Navi_servers" aria-selected="false">Servers</a> </li> <li class="nav-item" role="presentation"> <a class="nav-link" id="Navi_databases-tab" href="#Navi_databases" data-bs-toggle="tab" role="tab" aria-controls="Navi_databases" aria-selected="false">Databases</a> </li> <li class="nav-item" role="presentation"> <a class="nav-link" id="Navi_tables-tab" href="#Navi_tables" data-bs-toggle="tab" role="tab" aria-controls="Navi_tables" aria-selected="false">Tables</a> </li> </ul> <div class="tab-content"> <div class="tab-pane fade show active" id="Navi_panel" role="tabpanel" aria-labelledby="Navi_panel-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Navigation panel</h5> <h6 class="card-subtitle mb-2 text-muted">Customize appearance of the navigation panel.</h6> <fieldset class="optbox"> <legend>Navigation panel</legend> <table class="table table-borderless"> <tr> <th> <label for="ShowDatabasesNavigationAsTree">Show databases navigation as tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_ShowDatabasesNavigationAsTree" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>In the navigation panel, replaces the database tree with a selector</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="ShowDatabasesNavigationAsTree" id="ShowDatabasesNavigationAsTree" checked> </span> <a class="restore-default hide" href="#ShowDatabasesNavigationAsTree" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationLinkWithMainPanel">Link with main panel</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationLinkWithMainPanel" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Link with main panel by highlighting the current database or table.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationLinkWithMainPanel" id="NavigationLinkWithMainPanel" checked> </span> <a class="restore-default hide" href="#NavigationLinkWithMainPanel" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationDisplayLogo">Display logo</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationDisplayLogo" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Show logo in navigation panel.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationDisplayLogo" id="NavigationDisplayLogo" checked> </span> <a class="restore-default hide" href="#NavigationDisplayLogo" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationLogoLink">Logo link URL</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationLogoLink" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>URL where logo in the navigation panel will point to.</small> </th> <td> <input type="text" name="NavigationLogoLink" id="NavigationLogoLink" value="index.php" class="w-75"> <a class="restore-default hide" href="#NavigationLogoLink" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationLogoLinkWindow">Logo link target</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationLogoLinkWindow" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Open the linked page in the main window (<code>main</code>) or in a new one (<code>new</code>).</small> </th> <td> <select name="NavigationLogoLinkWindow" id="NavigationLogoLinkWindow" class="w-75"> <option value="main" selected>main</option> <option value="new">new</option> </select> <a class="restore-default hide" href="#NavigationLogoLinkWindow" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreePointerEnable">Enable highlighting</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreePointerEnable" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Highlight server under the mouse cursor.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreePointerEnable" id="NavigationTreePointerEnable" checked> </span> <a class="restore-default hide" href="#NavigationTreePointerEnable" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="FirstLevelNavigationItems">Maximum items on first level</label> <span class="doc"> <a href="./doc/html/config.html#cfg_FirstLevelNavigationItems" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>The number of items that can be displayed on each page on the first level of the navigation tree.</small> </th> <td> <input type="number" name="FirstLevelNavigationItems" id="FirstLevelNavigationItems" value="100" class=""> <a class="restore-default hide" href="#FirstLevelNavigationItems" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeDisplayItemFilterMinimum">Minimum number of items to display the filter box</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDisplayItemFilterMinimum" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Defines the minimum number of items (tables, views, routines and events) to display a filter box.</small> </th> <td> <input type="number" name="NavigationTreeDisplayItemFilterMinimum" id="NavigationTreeDisplayItemFilterMinimum" value="30" class=""> <a class="restore-default hide" href="#NavigationTreeDisplayItemFilterMinimum" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NumRecentTables">Recently used tables</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NumRecentTables" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Maximum number of recently used tables; set 0 to disable.</small> </th> <td> <input type="number" name="NumRecentTables" id="NumRecentTables" value="10" class=""> <a class="restore-default hide" href="#NumRecentTables" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NumFavoriteTables">Favorite tables</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NumFavoriteTables" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Maximum number of favorite tables; set 0 to disable.</small> </th> <td> <input type="number" name="NumFavoriteTables" id="NumFavoriteTables" value="10" class=""> <a class="restore-default hide" href="#NumFavoriteTables" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationWidth">Navigation panel width</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationWidth" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Set to 0 to collapse navigation panel.</small> </th> <td> <input type="number" name="NavigationWidth" id="NavigationWidth" value="0" class="custom"> <a class="restore-default hide" href="#NavigationWidth" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> <div class="tab-pane fade" id="Navi_tree" role="tabpanel" aria-labelledby="Navi_tree-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Navigation tree</h5> <h6 class="card-subtitle mb-2 text-muted">Customize the navigation tree.</h6> <fieldset class="optbox"> <legend>Navigation tree</legend> <table class="table table-borderless"> <tr> <th> <label for="MaxNavigationItems">Maximum items in branch</label> <span class="doc"> <a href="./doc/html/config.html#cfg_MaxNavigationItems" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>The number of items that can be displayed on each page of the navigation tree.</small> </th> <td> <input type="number" name="MaxNavigationItems" id="MaxNavigationItems" value="50" class=""> <a class="restore-default hide" href="#MaxNavigationItems" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeEnableGrouping">Group items in the tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeEnableGrouping" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Group items in the navigation tree (determined by the separator defined in the Databases and Tables tabs above).</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeEnableGrouping" id="NavigationTreeEnableGrouping" checked> </span> <a class="restore-default hide" href="#NavigationTreeEnableGrouping" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeEnableExpansion">Enable navigation tree expansion</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeEnableExpansion" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to offer the possibility of tree expansion in the navigation panel.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeEnableExpansion" id="NavigationTreeEnableExpansion" checked> </span> <a class="restore-default hide" href="#NavigationTreeEnableExpansion" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowTables">Show tables in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowTables" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show tables under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowTables" id="NavigationTreeShowTables" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowTables" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowViews">Show views in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowViews" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show views under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowViews" id="NavigationTreeShowViews" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowViews" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowFunctions">Show functions in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowFunctions" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show functions under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowFunctions" id="NavigationTreeShowFunctions" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowFunctions" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowProcedures">Show procedures in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowProcedures" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show procedures under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowProcedures" id="NavigationTreeShowProcedures" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowProcedures" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowEvents">Show events in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowEvents" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show events under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowEvents" id="NavigationTreeShowEvents" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowEvents" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeAutoexpandSingleDb">Expand single database</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeAutoexpandSingleDb" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to expand single database in the navigation tree automatically.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeAutoexpandSingleDb" id="NavigationTreeAutoexpandSingleDb" checked> </span> <a class="restore-default hide" href="#NavigationTreeAutoexpandSingleDb" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> <div class="tab-pane fade" id="Navi_servers" role="tabpanel" aria-labelledby="Navi_servers-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Servers</h5> <h6 class="card-subtitle mb-2 text-muted">Servers display options.</h6> <fieldset class="optbox"> <legend>Servers</legend> <table class="table table-borderless"> <tr> <th> <label for="NavigationDisplayServers">Display servers selection</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationDisplayServers" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Display server choice at the top of the navigation panel.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationDisplayServers" id="NavigationDisplayServers" checked> </span> <a class="restore-default hide" href="#NavigationDisplayServers" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="DisplayServersList">Display servers as a list</label> <span class="doc"> <a href="./doc/html/config.html#cfg_DisplayServersList" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Show server listing as a list instead of a drop down.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="DisplayServersList" id="DisplayServersList"> </span> <a class="restore-default hide" href="#DisplayServersList" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> <div class="tab-pane fade" id="Navi_databases" role="tabpanel" aria-labelledby="Navi_databases-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Databases</h5> <h6 class="card-subtitle mb-2 text-muted">Databases display options.</h6> <fieldset class="optbox"> <legend>Databases</legend> <table class="table table-borderless"> <tr> <th> <label for="NavigationTreeDisplayDbFilterMinimum">Minimum number of databases to display the database filter box</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDisplayDbFilterMinimum" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> </th> <td> <input type="number" name="NavigationTreeDisplayDbFilterMinimum" id="NavigationTreeDisplayDbFilterMinimum" value="30" class=""> <a class="restore-default hide" href="#NavigationTreeDisplayDbFilterMinimum" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeDbSeparator">Database tree separator</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDbSeparator" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>String that separates databases into different tree levels.</small> </th> <td> <input type="text" size="25" name="NavigationTreeDbSeparator" id="NavigationTreeDbSeparator" value="_" class=""> <a class="restore-default hide" href="#NavigationTreeDbSeparator" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> <div class="tab-pane fade" id="Navi_tables" role="tabpanel" aria-labelledby="Navi_tables-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Tables</h5> <h6 class="card-subtitle mb-2 text-muted">Tables display options.</h6> <fieldset class="optbox"> <legend>Tables</legend> <table class="table table-borderless"> <tr> <th> <label for="NavigationTreeDefaultTabTable">Target for quick access icon</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDefaultTabTable" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> </th> <td> <select name="NavigationTreeDefaultTabTable" id="NavigationTreeDefaultTabTable" class="w-75"> <option value="structure" selected>Structure</option> <option value="sql">SQL</option> <option value="search">Search</option> <option value="insert">Insert</option> <option value="browse">Browse</option> </select> <a class="restore-default hide" href="#NavigationTreeDefaultTabTable" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeDefaultTabTable2">Target for second quick access icon</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDefaultTabTable2" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> </th> <td> <select name="NavigationTreeDefaultTabTable2" id="NavigationTreeDefaultTabTable2" class="w-75"> <option value="" selected></option> <option value="structure">Structure</option> <option value="sql">SQL</option> <option value="search">Search</option> <option value="insert">Insert</option> <option value="browse">Browse</option> </select> <a class="restore-default hide" href="#NavigationTreeDefaultTabTable2" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeTableSeparator">Table tree separator</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeTableSeparator" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>String that separates tables into different tree levels.</small> </th> <td> <input type="text" size="25" name="NavigationTreeTableSeparator" id="NavigationTreeTableSeparator" value="__" class=""> <a class="restore-default hide" href="#NavigationTreeTableSeparator" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeTableLevel">Maximum table tree depth</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeTableLevel" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> </th> <td> <input type="number" name="NavigationTreeTableLevel" id="NavigationTreeTableLevel" value="1" class=""> <a class="restore-default hide" href="#NavigationTreeTableLevel" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> </div> </form> <script type="text/javascript"> if (typeof configInlineParams === 'undefined' || !Array.isArray(configInlineParams)) { configInlineParams = []; } configInlineParams.push(function () { registerFieldValidator('FirstLevelNavigationItems', 'validatePositiveNumber', true); registerFieldValidator('NavigationTreeDisplayItemFilterMinimum', 'validatePositiveNumber', true); registerFieldValidator('NumRecentTables', 'validateNonNegativeNumber', true); registerFieldValidator('NumFavoriteTables', 'validateNonNegativeNumber', true); registerFieldValidator('NavigationWidth', 'validateNonNegativeNumber', true); registerFieldValidator('MaxNavigationItems', 'validatePositiveNumber', true); registerFieldValidator('NavigationTreeTableLevel', 'validatePositiveNumber', true); $.extend(Messages, { 'error_nan_p': 'Not\u0020a\u0020positive\u0020number\u0021', 'error_nan_nneg': 'Not\u0020a\u0020non\u002Dnegative\u0020number\u0021', 'error_incorrect_port': 'Not\u0020a\u0020valid\u0020port\u0020number\u0021', 'error_invalid_value': 'Incorrect\u0020value\u0021', 'error_value_lte': 'Value\u0020must\u0020be\u0020less\u0020than\u0020or\u0020equal\u0020to\u0020\u0025s\u0021', }); $.extend(defaultValues, { 'ShowDatabasesNavigationAsTree': true, 'NavigationLinkWithMainPanel': true, 'NavigationDisplayLogo': true, 'NavigationLogoLink': 'index.php', 'NavigationLogoLinkWindow': ['main'], 'NavigationTreePointerEnable': true, 'FirstLevelNavigationItems': '100', 'NavigationTreeDisplayItemFilterMinimum': '30', 'NumRecentTables': '10', 'NumFavoriteTables': '10', 'NavigationWidth': '240', 'MaxNavigationItems': '50', 'NavigationTreeEnableGrouping': true, 'NavigationTreeEnableExpansion': true, 'NavigationTreeShowTables': true, 'NavigationTreeShowViews': true, 'NavigationTreeShowFunctions': true, 'NavigationTreeShowProcedures': true, 'NavigationTreeShowEvents': true, 'NavigationTreeAutoexpandSingleDb': true, 'NavigationDisplayServers': true, 'DisplayServersList': false, 'NavigationTreeDisplayDbFilterMinimum': '30', 'NavigationTreeDbSeparator': '_', 'NavigationTreeDefaultTabTable': ['structure'], 'NavigationTreeDefaultTabTable2': [''], 'NavigationTreeTableSeparator': '__', 'NavigationTreeTableLevel': '1' }); }); if (typeof configScriptLoaded !== 'undefined' && configInlineParams) { loadInlineConfig(); } </script> </div></div> </div> </div> <div class="pma_drop_handler"> Drop files here </div> <div class="pma_sql_import_status"> <h2> SQL upload ( <span class="pma_import_count">0</span> ) <span class="close">x</span> <span class="minimize">-</span> </h2> <div></div> </div> </div> <div class="modal fade" id="unhideNavItemModal" tabindex="-1" aria-labelledby="unhideNavItemModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="unhideNavItemModalLabel">Show hidden navigation tree items.</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"></div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> </div> </div> </div> </div> <noscript> <div class="alert alert-danger" role="alert"> <img src="themes/dot.gif" title="" alt="" class="icon ic_s_error"> Javascript must be enabled past this point! </div> </noscript> <div id="floating_menubar" class="d-print-none"></div> <nav id="server-breadcrumb" aria-label="breadcrumb"> <ol class="breadcrumb breadcrumb-navbar"> <li class="breadcrumb-item"> <img src="themes/dot.gif" title="" alt="" class="icon ic_s_host"> <a href="index.php?route=/&lang=en" data-raw-text="localhost" draggable="false"> Server: localhost </a> </li> </ol> </nav> <div id="topmenucontainer" class="menucontainer"> <nav class="navbar navbar-expand-lg navbar-light bg-light"> <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-label="Toggle navigation" aria-controls="navbarNav" aria-expanded="false"> <span class="navbar-toggler-icon"></span> </button> <div class="collapse navbar-collapse" id="navbarNav"> <ul id="topmenu" class="navbar-nav"> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/databases&lang=en"> <img src="themes/dot.gif" title="Databases" alt="Databases" class="icon ic_s_db"> Databases </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/sql&lang=en"> <img src="themes/dot.gif" title="SQL" alt="SQL" class="icon ic_b_sql"> SQL </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/status&lang=en"> <img src="themes/dot.gif" title="Status" alt="Status" class="icon ic_s_status"> Status </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/privileges&viewing_mode=server&lang=en"> <img src="themes/dot.gif" title="User accounts" alt="User accounts" class="icon ic_s_rights"> User accounts </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/export&lang=en"> <img src="themes/dot.gif" title="Export" alt="Export" class="icon ic_b_export"> Export </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/import&lang=en"> <img src="themes/dot.gif" title="Import" alt="Import" class="icon ic_b_import"> Import </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/preferences/manage&lang=en"> <img src="themes/dot.gif" title="Settings" alt="Settings" class="icon ic_b_tblops"> Settings </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/replication&lang=en"> <img src="themes/dot.gif" title="Replication" alt="Replication" class="icon ic_s_replication"> Replication </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/variables&lang=en"> <img src="themes/dot.gif" title="Variables" alt="Variables" class="icon ic_s_vars"> Variables </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/collations&lang=en"> <img src="themes/dot.gif" title="Charsets" alt="Charsets" class="icon ic_s_asci"> Charsets </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/engines&lang=en"> <img src="themes/dot.gif" title="Engines" alt="Engines" class="icon ic_b_engine"> Engines </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/plugins&lang=en"> <img src="themes/dot.gif" title="Plugins" alt="Plugins" class="icon ic_b_plugin"> Plugins </a> </li> </ul> </div> </nav> </div> <span id="page_nav_icons" class="d-print-none"> <span id="lock_page_icon"></span> <span id="page_settings_icon"> <img src="themes/dot.gif" title="Page-related settings" alt="Page-related settings" class="icon ic_s_cog"> </span> <a id="goto_pagetop" href="#"><img src="themes/dot.gif" title="Click on the bar to scroll to top of page" alt="Click on the bar to scroll to top of page" class="icon ic_s_top"></a> </span> <div id="pma_console_container" class="d-print-none"> <div id="pma_console"> <div class="toolbar collapsed"> <div class="switch_button console_switch"> <img src="themes/dot.gif" title="SQL Query Console" alt="SQL Query Console" class="icon ic_console"> <span>Console</span> </div> <div class="button clear"> <span>Clear</span> </div> <div class="button history"> <span>History</span> </div> <div class="button options"> <span>Options</span> </div> <div class="button bookmarks"> <span>Bookmarks</span> </div> <div class="button debug hide"> <span>Debug SQL</span> </div> </div> <div class="content"> <div class="console_message_container"> <div class="message welcome"> <span id="instructions-0"> Press Ctrl+Enter to execute query </span> <span class="hide" id="instructions-1"> Press Enter to execute query </span> </div> </div><!-- console_message_container --> <div class="query_input"> <span class="console_query_input"></span> </div> </div><!-- message end --> <div class="mid_layer"></div> <div class="card" id="debug_console"> <div class="toolbar "> <div class="button order order_asc"> <span>ascending</span> </div> <div class="button order order_desc"> <span>descending</span> </div> <div class="text"> <span>Order:</span> </div> <div class="switch_button"> <span>Debug SQL</span> </div> <div class="button order_by sort_count"> <span>Count</span> </div> <div class="button order_by sort_exec"> <span>Execution order</span> </div> <div class="button order_by sort_time"> <span>Time taken</span> </div> <div class="text"> <span>Order by:</span> </div> <div class="button group_queries"> <span>Group queries</span> </div> <div class="button ungroup_queries"> <span>Ungroup queries</span> </div> </div> <div class="content debug"> <div class="message welcome"></div> <div class="debugLog"></div> </div> <!-- Content --> <div class="templates"> <div class="debug_query action_content"> <span class="action collapse"> Collapse </span> <span class="action expand"> Expand </span> <span class="action dbg_show_trace"> Show trace </span> <span class="action dbg_hide_trace"> Hide trace </span> <span class="text count hide"> Count </span> <span class="text time"> Time taken </span> </div> </div> <!-- Template --> </div> <!-- Debug SQL card --> <div class="card" id="pma_bookmarks"> <div class="toolbar "> <div class="switch_button"> <span>Bookmarks</span> </div> <div class="button refresh"> <span>Refresh</span> </div> <div class="button add"> <span>Add</span> </div> </div> <div class="content bookmark"> <div class="message welcome"> <span>No bookmarks</span> </div> </div> <div class="mid_layer"></div> <div class="card add"> <div class="toolbar "> <div class="switch_button"> <span>Add bookmark</span> </div> </div> <div class="content add_bookmark"> <div class="options"> <label> Label: <input type="text" name="label"> </label> <label> Target database: <input type="text" name="targetdb"> </label> <label> <input type="checkbox" name="shared">Share this bookmark </label> <button class="btn btn-primary" type="submit" name="submit">OK</button> </div> <!-- options --> <div class="query_input"> <span class="bookmark_add_input"></span> </div> </div> </div> <!-- Add bookmark card --> </div> <!-- Bookmarks card --> <div class="card" id="pma_console_options"> <div class="toolbar "> <div class="switch_button"> <span>Options</span> </div> <div class="button default"> <span>Set default</span> </div> </div> <div class="content"> <label> <input type="checkbox" name="always_expand">Always expand query messages </label> <br> <label> <input type="checkbox" name="start_history">Show query history at start </label> <br> <label> <input type="checkbox" name="current_query">Show current browsing query </label> <br> <label> <input type="checkbox" name="enter_executes"> Execute queries on Enter and insert new line with Shift+Enter. To make this permanent, view settings. </label> <br> <label> <input type="checkbox" name="dark_theme">Switch to dark theme </label> <br> </div> </div> <!-- Options card --> <div class="templates"> <div class="query_actions"> <span class="action collapse"> Collapse </span> <span class="action expand"> Expand </span> <span class="action requery"> Requery </span> <span class="action edit"> Edit </span> <span class="action explain"> Explain </span> <span class="action profiling"> Profiling </span> <span class="action bookmark"> Bookmark </span> <span class="text failed"> Query failed </span> <span class="text targetdb"> Database : <span></span> </span> <span class="text query_time"> Queried time : <span></span> </span> </div> </div> </div> <!-- #console end --> </div> <!-- #console_container end --> <div id="page_content"> <div class="modal fade" id="previewSqlModal" tabindex="-1" aria-labelledby="previewSqlModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="previewSqlModalLabel">Loading</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"></div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> </div> </div> </div> </div> <div class="modal fade" id="enumEditorModal" tabindex="-1" aria-labelledby="enumEditorModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="enumEditorModalLabel">ENUM/SET editor</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"></div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" id="enumEditorGoButton" data-bs-dismiss="modal">Go</button> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> </div> </div> </div> </div> <div class="modal fade" id="createViewModal" tabindex="-1" aria-labelledby="createViewModalLabel" aria-hidden="true"> <div class="modal-dialog modal-lg" id="createViewModalDialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="createViewModalLabel">Create view</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"></div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" id="createViewModalGoButton">Go</button> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> </div> </div> </div> </div> <div id="maincontainer"> <a class="hide" id="sync_favorite_tables" href="index.php?route=/database/structure/favorite-table&ajax_request=1&favorite_table=1&sync_favorite_tables=1&lang=en"></a> <div class="container-fluid"> <div class="row"> <div class="col-lg-7 col-12"> <div class="card mt-4"> <div class="card-header"> General settings </div> <ul class="list-group list-group-flush"> <li id="li_select_mysql_collation" class="list-group-item"> <form method="post" action="index.php?route=/collation-connection&lang=en" class="row row-cols-lg-auto align-items-center disableAjax"> <input type="hidden" name="lang" value="en"><input type="hidden" name="token" value="68796d444825575e6d2d604f364a4658"> <div class="col-12"> <label for="collationConnectionSelect" class="col-form-label"> <img src="themes/dot.gif" title="" alt="" class="icon ic_s_asci"> Server connection collation: <a href="./url.php?url=https%3A%2F%2Fdev.mysql.com%2Fdoc%2Frefman%2F8.0%2Fen%2Fcharset-connection.html" target="mysql_doc"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </label> </div> <div class="col-12"> <select lang="en" dir="ltr" name="collation_connection" id="collationConnectionSelect" class="form-select autosubmit"> <option value="">Collation</option> <option value=""></option> <optgroup label="armscii8" title="ARMSCII-8 Armenian"> <option value="armscii8_bin" title="Armenian, binary">armscii8_bin</option> <option value="armscii8_general_ci" title="Armenian, case-insensitive">armscii8_general_ci</option> <option value="armscii8_general_nopad_ci" title="Armenian, no-pad, case-insensitive">armscii8_general_nopad_ci</option> <option value="armscii8_nopad_bin" title="Armenian, no-pad, binary">armscii8_nopad_bin</option> </optgroup> <optgroup label="ascii" title="US ASCII"> <option value="ascii_bin" title="West European, binary">ascii_bin</option> <option value="ascii_general_ci" title="West European, case-insensitive">ascii_general_ci</option> <option value="ascii_general_nopad_ci" title="West European, no-pad, case-insensitive">ascii_general_nopad_ci</option> <option value="ascii_nopad_bin" title="West European, no-pad, binary">ascii_nopad_bin</option> </optgroup> <optgroup label="big5" title="Big5 Traditional Chinese"> <option value="big5_bin" title="Traditional Chinese, binary">big5_bin</option> <option value="big5_chinese_ci" title="Traditional Chinese, case-insensitive">big5_chinese_ci</option> <option value="big5_chinese_nopad_ci" title="Traditional Chinese, no-pad, case-insensitive">big5_chinese_nopad_ci</option> <option value="big5_nopad_bin" title="Traditional Chinese, no-pad, binary">big5_nopad_bin</option> </optgroup> <optgroup label="binary" title="Binary pseudo charset"> <option value="binary" title="Binary">binary</option> </optgroup> <optgroup label="cp1250" title="Windows Central European"> <option value="cp1250_bin" title="Central European, binary">cp1250_bin</option> <option value="cp1250_croatian_ci" title="Croatian, case-insensitive">cp1250_croatian_ci</option> <option value="cp1250_czech_cs" title="Czech, case-sensitive">cp1250_czech_cs</option> <option value="cp1250_general_ci" title="Central European, case-insensitive">cp1250_general_ci</option> <option value="cp1250_general_nopad_ci" title="Central European, no-pad, case-insensitive">cp1250_general_nopad_ci</option> <option value="cp1250_nopad_bin" title="Central European, no-pad, binary">cp1250_nopad_bin</option> <option value="cp1250_polish_ci" title="Polish, case-insensitive">cp1250_polish_ci</option> </optgroup> <optgroup label="cp1251" title="Windows Cyrillic"> <option value="cp1251_bin" title="Cyrillic, binary">cp1251_bin</option> <option value="cp1251_bulgarian_ci" title="Bulgarian, case-insensitive">cp1251_bulgarian_ci</option> <option value="cp1251_general_ci" title="Cyrillic, case-insensitive">cp1251_general_ci</option> <option value="cp1251_general_cs" title="Cyrillic, case-sensitive">cp1251_general_cs</option> <option value="cp1251_general_nopad_ci" title="Cyrillic, no-pad, case-insensitive">cp1251_general_nopad_ci</option> <option value="cp1251_nopad_bin" title="Cyrillic, no-pad, binary">cp1251_nopad_bin</option> <option value="cp1251_ukrainian_ci" title="Ukrainian, case-insensitive">cp1251_ukrainian_ci</option> </optgroup> <optgroup label="cp1256" title="Windows Arabic"> <option value="cp1256_bin" title="Arabic, binary">cp1256_bin</option> <option value="cp1256_general_ci" title="Arabic, case-insensitive">cp1256_general_ci</option> <option value="cp1256_general_nopad_ci" title="Arabic, no-pad, case-insensitive">cp1256_general_nopad_ci</option> <option value="cp1256_nopad_bin" title="Arabic, no-pad, binary">cp1256_nopad_bin</option> </optgroup> <optgroup label="cp1257" title="Windows Baltic"> <option value="cp1257_bin" title="Baltic, binary">cp1257_bin</option> <option value="cp1257_general_ci" title="Baltic, case-insensitive">cp1257_general_ci</option> <option value="cp1257_general_nopad_ci" title="Baltic, no-pad, case-insensitive">cp1257_general_nopad_ci</option> <option value="cp1257_lithuanian_ci" title="Lithuanian, case-insensitive">cp1257_lithuanian_ci</option> <option value="cp1257_nopad_bin" title="Baltic, no-pad, binary">cp1257_nopad_bin</option> </optgroup> <optgroup label="cp850" title="DOS West European"> <option value="cp850_bin" title="West European, binary">cp850_bin</option> <option value="cp850_general_ci" title="West European, case-insensitive">cp850_general_ci</option> <option value="cp850_general_nopad_ci" title="West European, no-pad, case-insensitive">cp850_general_nopad_ci</option> <option value="cp850_nopad_bin" title="West European, no-pad, binary">cp850_nopad_bin</option> </optgroup> <optgroup label="cp852" title="DOS Central European"> <option value="cp852_bin" title="Central European, binary">cp852_bin</option> <option value="cp852_general_ci" title="Central European, case-insensitive">cp852_general_ci</option> <option value="cp852_general_nopad_ci" title="Central European, no-pad, case-insensitive">cp852_general_nopad_ci</option> <option value="cp852_nopad_bin" title="Central European, no-pad, binary">cp852_nopad_bin</option> </optgroup> <optgroup label="cp866" title="DOS Russian"> <option value="cp866_bin" title="Russian, binary">cp866_bin</option> <option value="cp866_general_ci" title="Russian, case-insensitive">cp866_general_ci</option> <option value="cp866_general_nopad_ci" title="Russian, no-pad, case-insensitive">cp866_general_nopad_ci</option> <option value="cp866_nopad_bin" title="Russian, no-pad, binary">cp866_nopad_bin</option> </optgroup> <optgroup label="cp932" title="SJIS for Windows Japanese"> <option value="cp932_bin" title="Japanese, binary">cp932_bin</option> <option value="cp932_japanese_ci" title="Japanese, case-insensitive">cp932_japanese_ci</option> <option value="cp932_japanese_nopad_ci" title="Japanese, no-pad, case-insensitive">cp932_japanese_nopad_ci</option> <option value="cp932_nopad_bin" title="Japanese, no-pad, binary">cp932_nopad_bin</option> </optgroup> <optgroup label="dec8" title="DEC West European"> <option value="dec8_bin" title="West European, binary">dec8_bin</option> <option value="dec8_nopad_bin" title="West European, no-pad, binary">dec8_nopad_bin</option> <option value="dec8_swedish_ci" title="Swedish, case-insensitive">dec8_swedish_ci</option> <option value="dec8_swedish_nopad_ci" title="Swedish, no-pad, case-insensitive">dec8_swedish_nopad_ci</option> </optgroup> <optgroup label="eucjpms" title="UJIS for Windows Japanese"> <option value="eucjpms_bin" title="Japanese, binary">eucjpms_bin</option> <option value="eucjpms_japanese_ci" title="Japanese, case-insensitive">eucjpms_japanese_ci</option> <option value="eucjpms_japanese_nopad_ci" title="Japanese, no-pad, case-insensitive">eucjpms_japanese_nopad_ci</option> <option value="eucjpms_nopad_bin" title="Japanese, no-pad, binary">eucjpms_nopad_bin</option> </optgroup> <optgroup label="euckr" title="EUC-KR Korean"> <option value="euckr_bin" title="Korean, binary">euckr_bin</option> <option value="euckr_korean_ci" title="Korean, case-insensitive">euckr_korean_ci</option> <option value="euckr_korean_nopad_ci" title="Korean, no-pad, case-insensitive">euckr_korean_nopad_ci</option> <option value="euckr_nopad_bin" title="Korean, no-pad, binary">euckr_nopad_bin</option> </optgroup> <optgroup label="gb2312" title="GB2312 Simplified Chinese"> <option value="gb2312_bin" title="Simplified Chinese, binary">gb2312_bin</option> <option value="gb2312_chinese_ci" title="Simplified Chinese, case-insensitive">gb2312_chinese_ci</option> <option value="gb2312_chinese_nopad_ci" title="Simplified Chinese, no-pad, case-insensitive">gb2312_chinese_nopad_ci</option> <option value="gb2312_nopad_bin" title="Simplified Chinese, no-pad, binary">gb2312_nopad_bin</option> </optgroup> <optgroup label="gbk" title="GBK Simplified Chinese"> <option value="gbk_bin" title="Simplified Chinese, binary">gbk_bin</option> <option value="gbk_chinese_ci" title="Simplified Chinese, case-insensitive">gbk_chinese_ci</option> <option value="gbk_chinese_nopad_ci" title="Simplified Chinese, no-pad, case-insensitive">gbk_chinese_nopad_ci</option> <option value="gbk_nopad_bin" title="Simplified Chinese, no-pad, binary">gbk_nopad_bin</option> </optgroup> <optgroup label="geostd8" title="GEOSTD8 Georgian"> <option value="geostd8_bin" title="Georgian, binary">geostd8_bin</option> <option value="geostd8_general_ci" title="Georgian, case-insensitive">geostd8_general_ci</option> <option value="geostd8_general_nopad_ci" title="Georgian, no-pad, case-insensitive">geostd8_general_nopad_ci</option> <option value="geostd8_nopad_bin" title="Georgian, no-pad, binary">geostd8_nopad_bin</option> </optgroup> <optgroup label="greek" title="ISO 8859-7 Greek"> <option value="greek_bin" title="Greek, binary">greek_bin</option> <option value="greek_general_ci" title="Greek, case-insensitive">greek_general_ci</option> <option value="greek_general_nopad_ci" title="Greek, no-pad, case-insensitive">greek_general_nopad_ci</option> <option value="greek_nopad_bin" title="Greek, no-pad, binary">greek_nopad_bin</option> </optgroup> <optgroup label="hebrew" title="ISO 8859-8 Hebrew"> <option value="hebrew_bin" title="Hebrew, binary">hebrew_bin</option> <option value="hebrew_general_ci" title="Hebrew, case-insensitive">hebrew_general_ci</option> <option value="hebrew_general_nopad_ci" title="Hebrew, no-pad, case-insensitive">hebrew_general_nopad_ci</option> <option value="hebrew_nopad_bin" title="Hebrew, no-pad, binary">hebrew_nopad_bin</option> </optgroup> <optgroup label="hp8" title="HP West European"> <option value="hp8_bin" title="West European, binary">hp8_bin</option> <option value="hp8_english_ci" title="English, case-insensitive">hp8_english_ci</option> <option value="hp8_english_nopad_ci" title="English, no-pad, case-insensitive">hp8_english_nopad_ci</option> <option value="hp8_nopad_bin" title="West European, no-pad, binary">hp8_nopad_bin</option> </optgroup> <optgroup label="keybcs2" title="DOS Kamenicky Czech-Slovak"> <option value="keybcs2_bin" title="Czech-Slovak, binary">keybcs2_bin</option> <option value="keybcs2_general_ci" title="Czech-Slovak, case-insensitive">keybcs2_general_ci</option> <option value="keybcs2_general_nopad_ci" title="Czech-Slovak, no-pad, case-insensitive">keybcs2_general_nopad_ci</option> <option value="keybcs2_nopad_bin" title="Czech-Slovak, no-pad, binary">keybcs2_nopad_bin</option> </optgroup> <optgroup label="koi8r" title="KOI8-R Relcom Russian"> <option value="koi8r_bin" title="Russian, binary">koi8r_bin</option> <option value="koi8r_general_ci" title="Russian, case-insensitive">koi8r_general_ci</option> <option value="koi8r_general_nopad_ci" title="Russian, no-pad, case-insensitive">koi8r_general_nopad_ci</option> <option value="koi8r_nopad_bin" title="Russian, no-pad, binary">koi8r_nopad_bin</option> </optgroup> <optgroup label="koi8u" title="KOI8-U Ukrainian"> <option value="koi8u_bin" title="Ukrainian, binary">koi8u_bin</option> <option value="koi8u_general_ci" title="Ukrainian, case-insensitive">koi8u_general_ci</option> <option value="koi8u_general_nopad_ci" title="Ukrainian, no-pad, case-insensitive">koi8u_general_nopad_ci</option> <option value="koi8u_nopad_bin" title="Ukrainian, no-pad, binary">koi8u_nopad_bin</option> </optgroup> <optgroup label="latin1" title="cp1252 West European"> <option value="latin1_bin" title="West European, binary">latin1_bin</option> <option value="latin1_danish_ci" title="Danish, case-insensitive">latin1_danish_ci</option> <option value="latin1_general_ci" title="West European, case-insensitive">latin1_general_ci</option> <option value="latin1_general_cs" title="West European, case-sensitive">latin1_general_cs</option> <option value="latin1_german1_ci" title="German (dictionary order), case-insensitive">latin1_german1_ci</option> <option value="latin1_german2_ci" title="German (phone book order), case-insensitive">latin1_german2_ci</option> <option value="latin1_nopad_bin" title="West European, no-pad, binary">latin1_nopad_bin</option> <option value="latin1_spanish_ci" title="Spanish (modern), case-insensitive">latin1_spanish_ci</option> <option value="latin1_swedish_ci" title="Swedish, case-insensitive">latin1_swedish_ci</option> <option value="latin1_swedish_nopad_ci" title="Swedish, no-pad, case-insensitive">latin1_swedish_nopad_ci</option> </optgroup> <optgroup label="latin2" title="ISO 8859-2 Central European"> <option value="latin2_bin" title="Central European, binary">latin2_bin</option> <option value="latin2_croatian_ci" title="Croatian, case-insensitive">latin2_croatian_ci</option> <option value="latin2_czech_cs" title="Czech, case-sensitive">latin2_czech_cs</option> <option value="latin2_general_ci" title="Central European, case-insensitive">latin2_general_ci</option> <option value="latin2_general_nopad_ci" title="Central European, no-pad, case-insensitive">latin2_general_nopad_ci</option> <option value="latin2_hungarian_ci" title="Hungarian, case-insensitive">latin2_hungarian_ci</option> <option value="latin2_nopad_bin" title="Central European, no-pad, binary">latin2_nopad_bin</option> </optgroup> <optgroup label="latin5" title="ISO 8859-9 Turkish"> <option value="latin5_bin" title="Turkish, binary">latin5_bin</option> <option value="latin5_nopad_bin" title="Turkish, no-pad, binary">latin5_nopad_bin</option> <option value="latin5_turkish_ci" title="Turkish, case-insensitive">latin5_turkish_ci</option> <option value="latin5_turkish_nopad_ci" title="Turkish, no-pad, case-insensitive">latin5_turkish_nopad_ci</option> </optgroup> <optgroup label="latin7" title="ISO 8859-13 Baltic"> <option value="latin7_bin" title="Baltic, binary">latin7_bin</option> <option value="latin7_estonian_cs" title="Estonian, case-sensitive">latin7_estonian_cs</option> <option value="latin7_general_ci" title="Baltic, case-insensitive">latin7_general_ci</option> <option value="latin7_general_cs" title="Baltic, case-sensitive">latin7_general_cs</option> <option value="latin7_general_nopad_ci" title="Baltic, no-pad, case-insensitive">latin7_general_nopad_ci</option> <option value="latin7_nopad_bin" title="Baltic, no-pad, binary">latin7_nopad_bin</option> </optgroup> <optgroup label="macce" title="Mac Central European"> <option value="macce_bin" title="Central European, binary">macce_bin</option> <option value="macce_general_ci" title="Central European, case-insensitive">macce_general_ci</option> <option value="macce_general_nopad_ci" title="Central European, no-pad, case-insensitive">macce_general_nopad_ci</option> <option value="macce_nopad_bin" title="Central European, no-pad, binary">macce_nopad_bin</option> </optgroup> <optgroup label="macroman" title="Mac West European"> <option value="macroman_bin" title="West European, binary">macroman_bin</option> <option value="macroman_general_ci" title="West European, case-insensitive">macroman_general_ci</option> <option value="macroman_general_nopad_ci" title="West European, no-pad, case-insensitive">macroman_general_nopad_ci</option> <option value="macroman_nopad_bin" title="West European, no-pad, binary">macroman_nopad_bin</option> </optgroup> <optgroup label="sjis" title="Shift-JIS Japanese"> <option value="sjis_bin" title="Japanese, binary">sjis_bin</option> <option value="sjis_japanese_ci" title="Japanese, case-insensitive">sjis_japanese_ci</option> <option value="sjis_japanese_nopad_ci" title="Japanese, no-pad, case-insensitive">sjis_japanese_nopad_ci</option> <option value="sjis_nopad_bin" title="Japanese, no-pad, binary">sjis_nopad_bin</option> </optgroup> <optgroup label="swe7" title="7bit Swedish"> <option value="swe7_bin" title="Swedish, binary">swe7_bin</option> <option value="swe7_nopad_bin" title="Swedish, no-pad, binary">swe7_nopad_bin</option> <option value="swe7_swedish_ci" title="Swedish, case-insensitive">swe7_swedish_ci</option> <option value="swe7_swedish_nopad_ci" title="Swedish, no-pad, case-insensitive">swe7_swedish_nopad_ci</option> </optgroup> <optgroup label="tis620" title="TIS620 Thai"> <option value="tis620_bin" title="Thai, binary">tis620_bin</option> <option value="tis620_nopad_bin" title="Thai, no-pad, binary">tis620_nopad_bin</option> <option value="tis620_thai_ci" title="Thai, case-insensitive">tis620_thai_ci</option> <option value="tis620_thai_nopad_ci" title="Thai, no-pad, case-insensitive">tis620_thai_nopad_ci</option> </optgroup> <optgroup label="ucs2" title="UCS-2 Unicode"> <option value="ucs2_bin" title="Unicode, binary">ucs2_bin</option> <option value="ucs2_croatian_ci" title="Croatian, case-insensitive">ucs2_croatian_ci</option> <option value="ucs2_croatian_mysql561_ci" title="Croatian (MySQL 5.6.1), case-insensitive">ucs2_croatian_mysql561_ci</option> <option value="ucs2_czech_ci" title="Czech, case-insensitive">ucs2_czech_ci</option> <option value="ucs2_danish_ci" title="Danish, case-insensitive">ucs2_danish_ci</option> <option value="ucs2_esperanto_ci" title="Esperanto, case-insensitive">ucs2_esperanto_ci</option> <option value="ucs2_estonian_ci" title="Estonian, case-insensitive">ucs2_estonian_ci</option> <option value="ucs2_general_ci" title="Unicode, case-insensitive">ucs2_general_ci</option> <option value="ucs2_general_mysql500_ci" title="Unicode (MySQL 5.0.0), case-insensitive">ucs2_general_mysql500_ci</option> <option value="ucs2_general_nopad_ci" title="Unicode, no-pad, case-insensitive">ucs2_general_nopad_ci</option> <option value="ucs2_german2_ci" title="German (phone book order), case-insensitive">ucs2_german2_ci</option> <option value="ucs2_hungarian_ci" title="Hungarian, case-insensitive">ucs2_hungarian_ci</option> <option value="ucs2_icelandic_ci" title="Icelandic, case-insensitive">ucs2_icelandic_ci</option> <option value="ucs2_latvian_ci" title="Latvian, case-insensitive">ucs2_latvian_ci</option> <option value="ucs2_lithuanian_ci" title="Lithuanian, case-insensitive">ucs2_lithuanian_ci</option> <option value="ucs2_myanmar_ci" title="Burmese, case-insensitive">ucs2_myanmar_ci</option> <option value="ucs2_nopad_bin" title="Unicode, no-pad, binary">ucs2_nopad_bin</option> <option value="ucs2_persian_ci" title="Persian, case-insensitive">ucs2_persian_ci</option> <option value="ucs2_polish_ci" title="Polish, case-insensitive">ucs2_polish_ci</option> <option value="ucs2_roman_ci" title="West European, case-insensitive">ucs2_roman_ci</option> <option value="ucs2_romanian_ci" title="Romanian, case-insensitive">ucs2_romanian_ci</option> <option value="ucs2_sinhala_ci" title="Sinhalese, case-insensitive">ucs2_sinhala_ci</option> <option value="ucs2_slovak_ci" title="Slovak, case-insensitive">ucs2_slovak_ci</option> <option value="ucs2_slovenian_ci" title="Slovenian, case-insensitive">ucs2_slovenian_ci</option> <option value="ucs2_spanish2_ci" title="Spanish (traditional), case-insensitive">ucs2_spanish2_ci</option> <option value="ucs2_spanish_ci" title="Spanish (modern), case-insensitive">ucs2_spanish_ci</option> <option value="ucs2_swedish_ci" title="Swedish, case-insensitive">ucs2_swedish_ci</option> <option value="ucs2_thai_520_w2" title="Thai (UCA 5.2.0), multi-level">ucs2_thai_520_w2</option> <option value="ucs2_turkish_ci" title="Turkish, case-insensitive">ucs2_turkish_ci</option> <option value="ucs2_unicode_520_ci" title="Unicode (UCA 5.2.0), case-insensitive">ucs2_unicode_520_ci</option> <option value="ucs2_unicode_520_nopad_ci" title="Unicode (UCA 5.2.0), no-pad, case-insensitive">ucs2_unicode_520_nopad_ci</option> <option value="ucs2_unicode_ci" title="Unicode, case-insensitive">ucs2_unicode_ci</option> <option value="ucs2_unicode_nopad_ci" title="Unicode, no-pad, case-insensitive">ucs2_unicode_nopad_ci</option> <option value="ucs2_vietnamese_ci" title="Vietnamese, case-insensitive">ucs2_vietnamese_ci</option> </optgroup> <optgroup label="ujis" title="EUC-JP Japanese"> <option value="ujis_bin" title="Japanese, binary">ujis_bin</option> <option value="ujis_japanese_ci" title="Japanese, case-insensitive">ujis_japanese_ci</option> <option value="ujis_japanese_nopad_ci" title="Japanese, no-pad, case-insensitive">ujis_japanese_nopad_ci</option> <option value="ujis_nopad_bin" title="Japanese, no-pad, binary">ujis_nopad_bin</option> </optgroup> <optgroup label="utf16" title="UTF-16 Unicode"> <option value="utf16_bin" title="Unicode, binary">utf16_bin</option> <option value="utf16_croatian_ci" title="Croatian, case-insensitive">utf16_croatian_ci</option> <option value="utf16_croatian_mysql561_ci" title="Croatian (MySQL 5.6.1), case-insensitive">utf16_croatian_mysql561_ci</option> <option value="utf16_czech_ci" title="Czech, case-insensitive">utf16_czech_ci</option> <option value="utf16_danish_ci" title="Danish, case-insensitive">utf16_danish_ci</option> <option value="utf16_esperanto_ci" title="Esperanto, case-insensitive">utf16_esperanto_ci</option> <option value="utf16_estonian_ci" title="Estonian, case-insensitive">utf16_estonian_ci</option> <option value="utf16_general_ci" title="Unicode, case-insensitive">utf16_general_ci</option> <option value="utf16_general_nopad_ci" title="Unicode, no-pad, case-insensitive">utf16_general_nopad_ci</option> <option value="utf16_german2_ci" title="German (phone book order), case-insensitive">utf16_german2_ci</option> <option value="utf16_hungarian_ci" title="Hungarian, case-insensitive">utf16_hungarian_ci</option> <option value="utf16_icelandic_ci" title="Icelandic, case-insensitive">utf16_icelandic_ci</option> <option value="utf16_latvian_ci" title="Latvian, case-insensitive">utf16_latvian_ci</option> <option value="utf16_lithuanian_ci" title="Lithuanian, case-insensitive">utf16_lithuanian_ci</option> <option value="utf16_myanmar_ci" title="Burmese, case-insensitive">utf16_myanmar_ci</option> <option value="utf16_nopad_bin" title="Unicode, no-pad, binary">utf16_nopad_bin</option> <option value="utf16_persian_ci" title="Persian, case-insensitive">utf16_persian_ci</option> <option value="utf16_polish_ci" title="Polish, case-insensitive">utf16_polish_ci</option> <option value="utf16_roman_ci" title="West European, case-insensitive">utf16_roman_ci</option> <option value="utf16_romanian_ci" title="Romanian, case-insensitive">utf16_romanian_ci</option> <option value="utf16_sinhala_ci" title="Sinhalese, case-insensitive">utf16_sinhala_ci</option> <option value="utf16_slovak_ci" title="Slovak, case-insensitive">utf16_slovak_ci</option> <option value="utf16_slovenian_ci" title="Slovenian, case-insensitive">utf16_slovenian_ci</option> <option value="utf16_spanish2_ci" title="Spanish (traditional), case-insensitive">utf16_spanish2_ci</option> <option value="utf16_spanish_ci" title="Spanish (modern), case-insensitive">utf16_spanish_ci</option> <option value="utf16_swedish_ci" title="Swedish, case-insensitive">utf16_swedish_ci</option> <option value="utf16_thai_520_w2" title="Thai (UCA 5.2.0), multi-level">utf16_thai_520_w2</option> <option value="utf16_turkish_ci" title="Turkish, case-insensitive">utf16_turkish_ci</option> <option value="utf16_unicode_520_ci" title="Unicode (UCA 5.2.0), case-insensitive">utf16_unicode_520_ci</option> <option value="utf16_unicode_520_nopad_ci" title="Unicode (UCA 5.2.0), no-pad, case-insensitive">utf16_unicode_520_nopad_ci</option> <option value="utf16_unicode_ci" title="Unicode, case-insensitive">utf16_unicode_ci</option> <option value="utf16_unicode_nopad_ci" title="Unicode, no-pad, case-insensitive">utf16_unicode_nopad_ci</option> <option value="utf16_vietnamese_ci" title="Vietnamese, case-insensitive">utf16_vietnamese_ci</option> </optgroup> <optgroup label="utf16le" title="UTF-16LE Unicode"> <option value="utf16le_bin" title="Unicode, binary">utf16le_bin</option> <option value="utf16le_general_ci" title="Unicode, case-insensitive">utf16le_general_ci</option> <option value="utf16le_general_nopad_ci" title="Unicode, no-pad, case-insensitive">utf16le_general_nopad_ci</option> <option value="utf16le_nopad_bin" title="Unicode, no-pad, binary">utf16le_nopad_bin</option> </optgroup> <optgroup label="utf32" title="UTF-32 Unicode"> <option value="utf32_bin" title="Unicode, binary">utf32_bin</option> <option value="utf32_croatian_ci" title="Croatian, case-insensitive">utf32_croatian_ci</option> <option value="utf32_croatian_mysql561_ci" title="Croatian (MySQL 5.6.1), case-insensitive">utf32_croatian_mysql561_ci</option> <option value="utf32_czech_ci" title="Czech, case-insensitive">utf32_czech_ci</option> <option value="utf32_danish_ci" title="Danish, case-insensitive">utf32_danish_ci</option> <option value="utf32_esperanto_ci" title="Esperanto, case-insensitive">utf32_esperanto_ci</option> <option value="utf32_estonian_ci" title="Estonian, case-insensitive">utf32_estonian_ci</option> <option value="utf32_general_ci" title="Unicode, case-insensitive">utf32_general_ci</option> <option value="utf32_general_nopad_ci" title="Unicode, no-pad, case-insensitive">utf32_general_nopad_ci</option> <option value="utf32_german2_ci" title="German (phone book order), case-insensitive">utf32_german2_ci</option> <option value="utf32_hungarian_ci" title="Hungarian, case-insensitive">utf32_hungarian_ci</option> <option value="utf32_icelandic_ci" title="Icelandic, case-insensitive">utf32_icelandic_ci</option> <option value="utf32_latvian_ci" title="Latvian, case-insensitive">utf32_latvian_ci</option> <option value="utf32_lithuanian_ci" title="Lithuanian, case-insensitive">utf32_lithuanian_ci</option> <option value="utf32_myanmar_ci" title="Burmese, case-insensitive">utf32_myanmar_ci</option> <option value="utf32_nopad_bin" title="Unicode, no-pad, binary">utf32_nopad_bin</option> <option value="utf32_persian_ci" title="Persian, case-insensitive">utf32_persian_ci</option> <option value="utf32_polish_ci" title="Polish, case-insensitive">utf32_polish_ci</option> <option value="utf32_roman_ci" title="West European, case-insensitive">utf32_roman_ci</option> <option value="utf32_romanian_ci" title="Romanian, case-insensitive">utf32_romanian_ci</option> <option value="utf32_sinhala_ci" title="Sinhalese, case-insensitive">utf32_sinhala_ci</option> <option value="utf32_slovak_ci" title="Slovak, case-insensitive">utf32_slovak_ci</option> <option value="utf32_slovenian_ci" title="Slovenian, case-insensitive">utf32_slovenian_ci</option> <option value="utf32_spanish2_ci" title="Spanish (traditional), case-insensitive">utf32_spanish2_ci</option> <option value="utf32_spanish_ci" title="Spanish (modern), case-insensitive">utf32_spanish_ci</option> <option value="utf32_swedish_ci" title="Swedish, case-insensitive">utf32_swedish_ci</option> <option value="utf32_thai_520_w2" title="Thai (UCA 5.2.0), multi-level">utf32_thai_520_w2</option> <option value="utf32_turkish_ci" title="Turkish, case-insensitive">utf32_turkish_ci</option> <option value="utf32_unicode_520_ci" title="Unicode (UCA 5.2.0), case-insensitive">utf32_unicode_520_ci</option> <option value="utf32_unicode_520_nopad_ci" title="Unicode (UCA 5.2.0), no-pad, case-insensitive">utf32_unicode_520_nopad_ci</option> <option value="utf32_unicode_ci" title="Unicode, case-insensitive">utf32_unicode_ci</option> <option value="utf32_unicode_nopad_ci" title="Unicode, no-pad, case-insensitive">utf32_unicode_nopad_ci</option> <option value="utf32_vietnamese_ci" title="Vietnamese, case-insensitive">utf32_vietnamese_ci</option> </optgroup> <optgroup label="utf8" title="UTF-8 Unicode"> <option value="utf8_bin" title="Unicode, binary">utf8_bin</option> <option value="utf8_croatian_ci" title="Croatian, case-insensitive">utf8_croatian_ci</option> <option value="utf8_croatian_mysql561_ci" title="Croatian (MySQL 5.6.1), case-insensitive">utf8_croatian_mysql561_ci</option> <option value="utf8_czech_ci" title="Czech, case-insensitive">utf8_czech_ci</option> <option value="utf8_danish_ci" title="Danish, case-insensitive">utf8_danish_ci</option> <option value="utf8_esperanto_ci" title="Esperanto, case-insensitive">utf8_esperanto_ci</option> <option value="utf8_estonian_ci" title="Estonian, case-insensitive">utf8_estonian_ci</option> <option value="utf8_general_ci" title="Unicode, case-insensitive">utf8_general_ci</option> <option value="utf8_general_mysql500_ci" title="Unicode (MySQL 5.0.0), case-insensitive">utf8_general_mysql500_ci</option> <option value="utf8_general_nopad_ci" title="Unicode, no-pad, case-insensitive">utf8_general_nopad_ci</option> <option value="utf8_german2_ci" title="German (phone book order), case-insensitive">utf8_german2_ci</option> <option value="utf8_hungarian_ci" title="Hungarian, case-insensitive">utf8_hungarian_ci</option> <option value="utf8_icelandic_ci" title="Icelandic, case-insensitive">utf8_icelandic_ci</option> <option value="utf8_latvian_ci" title="Latvian, case-insensitive">utf8_latvian_ci</option> <option value="utf8_lithuanian_ci" title="Lithuanian, case-insensitive">utf8_lithuanian_ci</option> <option value="utf8_myanmar_ci" title="Burmese, case-insensitive">utf8_myanmar_ci</option> <option value="utf8_nopad_bin" title="Unicode, no-pad, binary">utf8_nopad_bin</option> <option value="utf8_persian_ci" title="Persian, case-insensitive">utf8_persian_ci</option> <option value="utf8_polish_ci" title="Polish, case-insensitive">utf8_polish_ci</option> <option value="utf8_roman_ci" title="West European, case-insensitive">utf8_roman_ci</option> <option value="utf8_romanian_ci" title="Romanian, case-insensitive">utf8_romanian_ci</option> <option value="utf8_sinhala_ci" title="Sinhalese, case-insensitive">utf8_sinhala_ci</option> <option value="utf8_slovak_ci" title="Slovak, case-insensitive">utf8_slovak_ci</option> <option value="utf8_slovenian_ci" title="Slovenian, case-insensitive">utf8_slovenian_ci</option> <option value="utf8_spanish2_ci" title="Spanish (traditional), case-insensitive">utf8_spanish2_ci</option> <option value="utf8_spanish_ci" title="Spanish (modern), case-insensitive">utf8_spanish_ci</option> <option value="utf8_swedish_ci" title="Swedish, case-insensitive">utf8_swedish_ci</option> <option value="utf8_thai_520_w2" title="Thai (UCA 5.2.0), multi-level">utf8_thai_520_w2</option> <option value="utf8_turkish_ci" title="Turkish, case-insensitive">utf8_turkish_ci</option> <option value="utf8_unicode_520_ci" title="Unicode (UCA 5.2.0), case-insensitive">utf8_unicode_520_ci</option> <option value="utf8_unicode_520_nopad_ci" title="Unicode (UCA 5.2.0), no-pad, case-insensitive">utf8_unicode_520_nopad_ci</option> <option value="utf8_unicode_ci" title="Unicode, case-insensitive">utf8_unicode_ci</option> <option value="utf8_unicode_nopad_ci" title="Unicode, no-pad, case-insensitive">utf8_unicode_nopad_ci</option> <option value="utf8_vietnamese_ci" title="Vietnamese, case-insensitive">utf8_vietnamese_ci</option> </optgroup> <optgroup label="utf8mb4" title="UTF-8 Unicode"> <option value="utf8mb4_bin" title="Unicode (UCA 4.0.0), binary">utf8mb4_bin</option> <option value="utf8mb4_croatian_ci" title="Croatian (UCA 4.0.0), case-insensitive">utf8mb4_croatian_ci</option> <option value="utf8mb4_croatian_mysql561_ci" title="Croatian (MySQL 5.6.1), case-insensitive">utf8mb4_croatian_mysql561_ci</option> <option value="utf8mb4_czech_ci" title="Czech (UCA 4.0.0), case-insensitive">utf8mb4_czech_ci</option> <option value="utf8mb4_danish_ci" title="Danish (UCA 4.0.0), case-insensitive">utf8mb4_danish_ci</option> <option value="utf8mb4_esperanto_ci" title="Esperanto (UCA 4.0.0), case-insensitive">utf8mb4_esperanto_ci</option> <option value="utf8mb4_estonian_ci" title="Estonian (UCA 4.0.0), case-insensitive">utf8mb4_estonian_ci</option> <option value="utf8mb4_general_ci" title="Unicode (UCA 4.0.0), case-insensitive">utf8mb4_general_ci</option> <option value="utf8mb4_general_nopad_ci" title="Unicode (UCA 4.0.0), no-pad, case-insensitive">utf8mb4_general_nopad_ci</option> <option value="utf8mb4_german2_ci" title="German (phone book order) (UCA 4.0.0), case-insensitive">utf8mb4_german2_ci</option> <option value="utf8mb4_hungarian_ci" title="Hungarian (UCA 4.0.0), case-insensitive">utf8mb4_hungarian_ci</option> <option value="utf8mb4_icelandic_ci" title="Icelandic (UCA 4.0.0), case-insensitive">utf8mb4_icelandic_ci</option> <option value="utf8mb4_latvian_ci" title="Latvian (UCA 4.0.0), case-insensitive">utf8mb4_latvian_ci</option> <option value="utf8mb4_lithuanian_ci" title="Lithuanian (UCA 4.0.0), case-insensitive">utf8mb4_lithuanian_ci</option> <option value="utf8mb4_myanmar_ci" title="Burmese (UCA 4.0.0), case-insensitive">utf8mb4_myanmar_ci</option> <option value="utf8mb4_nopad_bin" title="Unicode (UCA 4.0.0), no-pad, binary">utf8mb4_nopad_bin</option> <option value="utf8mb4_persian_ci" title="Persian (UCA 4.0.0), case-insensitive">utf8mb4_persian_ci</option> <option value="utf8mb4_polish_ci" title="Polish (UCA 4.0.0), case-insensitive">utf8mb4_polish_ci</option> <option value="utf8mb4_roman_ci" title="West European (UCA 4.0.0), case-insensitive">utf8mb4_roman_ci</option> <option value="utf8mb4_romanian_ci" title="Romanian (UCA 4.0.0), case-insensitive">utf8mb4_romanian_ci</option> <option value="utf8mb4_sinhala_ci" title="Sinhalese (UCA 4.0.0), case-insensitive">utf8mb4_sinhala_ci</option> <option value="utf8mb4_slovak_ci" title="Slovak (UCA 4.0.0), case-insensitive">utf8mb4_slovak_ci</option> <option value="utf8mb4_slovenian_ci" title="Slovenian (UCA 4.0.0), case-insensitive">utf8mb4_slovenian_ci</option> <option value="utf8mb4_spanish2_ci" title="Spanish (traditional) (UCA 4.0.0), case-insensitive">utf8mb4_spanish2_ci</option> <option value="utf8mb4_spanish_ci" title="Spanish (modern) (UCA 4.0.0), case-insensitive">utf8mb4_spanish_ci</option> <option value="utf8mb4_swedish_ci" title="Swedish (UCA 4.0.0), case-insensitive">utf8mb4_swedish_ci</option> <option value="utf8mb4_thai_520_w2" title="Thai (UCA 5.2.0), multi-level">utf8mb4_thai_520_w2</option> <option value="utf8mb4_turkish_ci" title="Turkish (UCA 4.0.0), case-insensitive">utf8mb4_turkish_ci</option> <option value="utf8mb4_unicode_520_ci" title="Unicode (UCA 5.2.0), case-insensitive">utf8mb4_unicode_520_ci</option> <option value="utf8mb4_unicode_520_nopad_ci" title="Unicode (UCA 5.2.0), no-pad, case-insensitive">utf8mb4_unicode_520_nopad_ci</option> <option value="utf8mb4_unicode_ci" title="Unicode (UCA 4.0.0), case-insensitive" selected>utf8mb4_unicode_ci</option> <option value="utf8mb4_unicode_nopad_ci" title="Unicode (UCA 4.0.0), no-pad, case-insensitive">utf8mb4_unicode_nopad_ci</option> <option value="utf8mb4_vietnamese_ci" title="Vietnamese (UCA 4.0.0), case-insensitive">utf8mb4_vietnamese_ci</option> </optgroup> </select> </div> </form> </li> <li id="li_user_preferences" class="list-group-item"> <a href="index.php?route=/preferences/manage&lang=en"> <span class="text-nowrap"><img src="themes/dot.gif" title="More settings" alt="More settings" class="icon ic_b_tblops"> More settings</span> </a> </li> </ul> </div> <div class="card mt-4"> <div class="card-header"> Appearance settings </div> <ul class="list-group list-group-flush"> <li id="li_select_lang" class="list-group-item"> <form method="get" action="index.php?route=/&lang=en" class="row row-cols-lg-auto align-items-center disableAjax"> <input type="hidden" name="db" value=""><input type="hidden" name="table" value=""><input type="hidden" name="lang" value="en"><input type="hidden" name="token" value="68796d444825575e6d2d604f364a4658"> <div class="col-12"> <label for="languageSelect" class="col-form-label text-nowrap"> <img src="themes/dot.gif" title="" alt="" class="icon ic_s_lang"> Language <a href="./doc/html/faq.html#faq7-2" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </label> </div> <div class="col-12"> <select name="lang" class="form-select autosubmit w-auto" lang="en" dir="ltr" id="languageSelect"> <option value="sq">Shqip - Albanian</option> <option value="ar">العربية - Arabic</option> <option value="hy">Հայերէն - Armenian</option> <option value="az">Azərbaycanca - Azerbaijani</option> <option value="bn">বাংলা - Bangla</option> <option value="be">Беларуская - Belarusian</option> <option value="bg">Български - Bulgarian</option> <option value="ca">Català - Catalan</option> <option value="zh_cn">中文 - Chinese simplified</option> <option value="zh_tw">中文 - Chinese traditional</option> <option value="cs">Čeština - Czech</option> <option value="da">Dansk - Danish</option> <option value="nl">Nederlands - Dutch</option> <option value="en" selected>English</option> <option value="en_gb">English (United Kingdom)</option> <option value="et">Eesti - Estonian</option> <option value="fi">Suomi - Finnish</option> <option value="fr">Français - French</option> <option value="gl">Galego - Galician</option> <option value="de">Deutsch - German</option> <option value="el">Ελληνικά - Greek</option> <option value="he">עברית - Hebrew</option> <option value="hu">Magyar - Hungarian</option> <option value="id">Bahasa Indonesia - Indonesian</option> <option value="ia">Interlingua</option> <option value="it">Italiano - Italian</option> <option value="ja">日本語 - Japanese</option> <option value="kk">Қазақ - Kazakh</option> <option value="ko">한국어 - Korean</option> <option value="nb">Norsk - Norwegian</option> <option value="pl">Polski - Polish</option> <option value="pt">Português - Portuguese</option> <option value="pt_br">Português (Brasil) - Portuguese (Brazil)</option> <option value="ro">Română - Romanian</option> <option value="ru">Русский - Russian</option> <option value="si">සිංහල - Sinhala</option> <option value="sk">Slovenčina - Slovak</option> <option value="sl">Slovenščina - Slovenian</option> <option value="es">Español - Spanish</option> <option value="sv">Svenska - Swedish</option> <option value="tr">Türkçe - Turkish</option> <option value="uk">Українська - Ukrainian</option> <option value="vi">Tiếng Việt - Vietnamese</option> </select> </div> </form> </li> <li id="li_select_theme" class="list-group-item"> <form method="post" action="index.php?route=/themes/set&lang=en" class="row row-cols-lg-auto align-items-center disableAjax"> <input type="hidden" name="lang" value="en"><input type="hidden" name="token" value="68796d444825575e6d2d604f364a4658"> <div class="col-12"> <label for="themeSelect" class="col-form-label"> <span class="text-nowrap"><img src="themes/dot.gif" title="Theme" alt="Theme" class="icon ic_s_theme"> Theme</span> </label> </div> <div class="col-12"> <div class="input-group"> <select name="set_theme" class="form-select autosubmit" lang="en" dir="ltr" id="themeSelect"> <option value="bootstrap">Bootstrap</option> <option value="metro">Metro</option> <option value="original">Original</option> <option value="pmahomme" selected>pmahomme</option> </select> <button type="button" class="btn btn-outline-secondary" data-bs-toggle="modal" data-bs-target="#themesModal"> View all </button> </div> </div> </form> </li> </ul> </div> </div> <div class="col-lg-5 col-12"> <div class="card mt-4"> <div class="card-header"> Database server </div> <ul class="list-group list-group-flush"> <li class="list-group-item"> Server: Localhost via UNIX socket </li> <li class="list-group-item"> Server type: MariaDB </li> <li class="list-group-item"> Server connection: <span class="">SSL is not being used</span> <a href="./doc/html/setup.html#ssl" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </li> <li class="list-group-item"> Server version: 10.4.27-MariaDB - Source distribution </li> <li class="list-group-item"> Protocol version: 10 </li> <li class="list-group-item"> User: root@localhost </li> <li class="list-group-item"> Server charset: <span lang="en" dir="ltr"> UTF-8 Unicode (utf8mb4) </span> </li> </ul> </div> <div class="card mt-4"> <div class="card-header"> Web server </div> <ul class="list-group list-group-flush"> <li class="list-group-item"> Apache/2.4.54 (Unix) OpenSSL/1.1.1s PHP/7.4.33 mod_perl/2.0.12 Perl/v5.34.1 </li> <li class="list-group-item" id="li_mysql_client_version"> Database client version: libmysql - mysqlnd 7.4.33 </li> <li class="list-group-item"> PHP extension: mysqli <a href="./url.php?url=https%3A%2F%2Fwww.php.net%2Fmanual%2Fen%2Fbook.mysqli.php" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> curl <a href="./url.php?url=https%3A%2F%2Fwww.php.net%2Fmanual%2Fen%2Fbook.curl.php" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> mbstring <a href="./url.php?url=https%3A%2F%2Fwww.php.net%2Fmanual%2Fen%2Fbook.mbstring.php" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </li> <li class="list-group-item"> PHP version: 7.4.33 </li> </ul> </div> <div class="card mt-4"> <div class="card-header"> phpMyAdmin </div> <ul class="list-group list-group-flush"> <li id="li_pma_version" class="list-group-item jsversioncheck"> Version information: <span class="version">5.2.0</span> </li> <li class="list-group-item"> <a href="./doc/html/index.html" target="_blank" rel="noopener noreferrer"> Documentation </a> </li> <li class="list-group-item"> <a href="./url.php?url=https%3A%2F%2Fwww.phpmyadmin.net%2F" target="_blank" rel="noopener noreferrer"> Official Homepage </a> </li> <li class="list-group-item"> <a href="./url.php?url=https%3A%2F%2Fwww.phpmyadmin.net%2Fcontribute%2F" target="_blank" rel="noopener noreferrer"> Contribute </a> </li> <li class="list-group-item"> <a href="./url.php?url=https%3A%2F%2Fwww.phpmyadmin.net%2Fsupport%2F" target="_blank" rel="noopener noreferrer"> Get support </a> </li> <li class="list-group-item"> <a href="index.php?route=/changelog&lang=en" target="_blank"> List of changes </a> </li> <li class="list-group-item"> <a href="index.php?route=/license&lang=en" target="_blank"> License </a> </li> </ul> </div> </div> </div> </div> </div> <div class="modal fade" id="themesModal" tabindex="-1" aria-labelledby="themesModalLabel" aria-hidden="true"> <div class="modal-dialog modal-xl"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="themesModalLabel">phpMyAdmin Themes</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"> <div class="spinner-border" role="status"> <span class="visually-hidden">Loading…</span> </div> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> <a href="./url.php?url=https%3A%2F%2Fwww.phpmyadmin.net%2Fthemes%2F#pma_5_2" class="btn btn-primary" rel="noopener noreferrer" target="_blank"> Get more themes! </a> </div> </div> </div> </div> </div> <div id="selflink" class="d-print-none"> <a href="index.php?route=%2F&server=1&lang=en" title="Open new phpMyAdmin window" target="_blank" rel="noopener noreferrer"> <img src="themes/dot.gif" title="Open new phpMyAdmin window" alt="Open new phpMyAdmin window" class="icon ic_window-new"> </a> </div> <div class="clearfloat d-print-none" id="pma_errors"> </div> <script data-cfasync="false" type="text/javascript"> // <![CDATA[ var debugSQLInfo = 'null'; // ]]> </script> </body> </html>Parameter Content-Security-PolicyEvidence default-src 'self' ;script-src 'self' 'unsafe-inline' 'unsafe-eval' ;style-src 'self' 'unsafe-inline' ;img-src 'self' data: *.tile.openstreetmap.org;object-src 'none';Solution Ensure that your web server, application server, load balancer, etc. is properly configured to set the Content-Security-Policy header.
-
Content Security Policy (CSP) Header Not Set (1)
GET http://localhost/scan/wordpress/
Alert tags Alert description Content Security Policy (CSP) is an added layer of security that helps to detect and mitigate certain types of attacks, including Cross Site Scripting (XSS) and data injection attacks. These attacks are used for everything from data theft to site defacement or distribution of malware. CSP provides a set of standard HTTP headers that allow website owners to declare approved sources of content that browsers should be allowed to load on that page — covered types are JavaScript, CSS, HTML frames, fonts, images and embeddable objects such as Java applets, ActiveX, audio and video files.
Request Request line and header section (354 bytes)
GET http://localhost/scan/wordpress/ HTTP/1.1 host: localhost User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:136.0) Gecko/20100101 Firefox/136.0 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: en-CA,en-US;q=0.7,en;q=0.3 Connection: keep-alive Upgrade-Insecure-Requests: 1 Priority: u=0, iRequest body (0 bytes)
Response Status line and header section (362 bytes)
HTTP/1.1 200 OK Date: Sat, 19 Apr 2025 15:16:04 GMT Server: Apache/2.4.54 (Unix) OpenSSL/1.1.1s PHP/7.4.33 mod_perl/2.0.12 Perl/v5.34.1 X-Powered-By: PHP/7.4.33 Link: <http://localhost/scan/wordpress/wp-json/>; rel="https://api.w.org/" Keep-Alive: timeout=5, max=100 Connection: Keep-Alive Content-Type: text/html; charset=UTF-8 content-length: 16710Response body (16710 bytes)
<!doctype html> <html lang="en-US" > <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>yup-here – Just another WordPress site</title> <meta name='robots' content='max-image-preview:large' /> <link rel='dns-prefetch' href='//s.w.org' /> <link rel="alternate" type="application/rss+xml" title="yup-here » Feed" href="http://localhost/scan/wordpress/feed/" /> <link rel="alternate" type="application/rss+xml" title="yup-here » Comments Feed" href="http://localhost/scan/wordpress/comments/feed/" /> <script> window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.1.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.1.0\/svg\/","svgExt":".svg","source":{"concatemoji":"http:\/\/localhost\/scan\/wordpress\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.8"}}; !function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){var a=String.fromCharCode;p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,e),0,0);e=i.toDataURL();return p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,t),0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(!p||!p.fillText)return!1;switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])?!1:!s([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!s([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]);case"emoji":return!s([10084,65039,8205,55357,56613],[10084,65039,8203,55357,56613])}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(n=t.source||{}).concatemoji?c(n.concatemoji):n.wpemoji&&n.twemoji&&(c(n.twemoji),c(n.wpemoji)))}(window,document,window._wpemojiSettings); </script> <style> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 .07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='wc-blocks-integration-css' href='http://localhost/scan/wordpress/wp-content/plugins/woocommerce-payments/vendor/woocommerce/subscriptions-core/build/index.css?ver=3.1.6' media='all' /> <link rel='stylesheet' id='wp-block-library-css' href='http://localhost/scan/wordpress/wp-includes/css/dist/block-library/style.min.css?ver=5.8' media='all' /> <style id='wp-block-library-theme-inline-css'> #start-resizable-editor-section{display:none}.wp-block-audio figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-audio figcaption{color:hsla(0,0%,100%,.65)}.wp-block-code{font-family:Menlo,Consolas,monaco,monospace;color:#1e1e1e;padding:.8em 1em;border:1px solid #ddd;border-radius:4px}.wp-block-embed figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-embed figcaption{color:hsla(0,0%,100%,.65)}.blocks-gallery-caption{color:#555;font-size:13px;text-align:center}.is-dark-theme .blocks-gallery-caption{color:hsla(0,0%,100%,.65)}.wp-block-image figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-image figcaption{color:hsla(0,0%,100%,.65)}.wp-block-pullquote{border-top:4px solid;border-bottom:4px solid;margin-bottom:1.75em;color:currentColor}.wp-block-pullquote__citation,.wp-block-pullquote cite,.wp-block-pullquote footer{color:currentColor;text-transform:uppercase;font-size:.8125em;font-style:normal}.wp-block-quote{border-left:.25em solid;margin:0 0 1.75em;padding-left:1em}.wp-block-quote cite,.wp-block-quote footer{color:currentColor;font-size:.8125em;position:relative;font-style:normal}.wp-block-quote.has-text-align-right{border-left:none;border-right:.25em solid;padding-left:0;padding-right:1em}.wp-block-quote.has-text-align-center{border:none;padding-left:0}.wp-block-quote.is-large,.wp-block-quote.is-style-large{border:none}.wp-block-search .wp-block-search__label{font-weight:700}.wp-block-group.has-background{padding:1.25em 2.375em;margin-top:0;margin-bottom:0}.wp-block-separator{border:none;border-bottom:2px solid;margin-left:auto;margin-right:auto;opacity:.4}.wp-block-separator:not(.is-style-wide):not(.is-style-dots){width:100px}.wp-block-separator.has-background:not(.is-style-dots){border-bottom:none;height:1px}.wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots){height:2px}.wp-block-table thead{border-bottom:3px solid}.wp-block-table tfoot{border-top:3px solid}.wp-block-table td,.wp-block-table th{padding:.5em;border:1px solid;word-break:normal}.wp-block-table figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-table figcaption{color:hsla(0,0%,100%,.65)}.wp-block-video figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-video figcaption{color:hsla(0,0%,100%,.65)}.wp-block-template-part.has-background{padding:1.25em 2.375em;margin-top:0;margin-bottom:0}#end-resizable-editor-section{display:none} </style> <link rel='stylesheet' id='wc-blocks-vendors-style-css' href='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-vendors-style.css?ver=8.5.1' media='all' /> <link rel='stylesheet' id='wc-blocks-style-css' href='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-style.css?ver=8.5.1' media='all' /> <link rel='stylesheet' id='woocommerce-layout-css' href='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/css/woocommerce-layout.css?ver=7.0.0' media='all' /> <link rel='stylesheet' id='woocommerce-smallscreen-css' href='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/css/woocommerce-smallscreen.css?ver=7.0.0' media='only screen and (max-width: 768px)' /> <link rel='stylesheet' id='woocommerce-general-css' href='//localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/css/twenty-twenty-one.css?ver=7.0.0' media='all' /> <style id='woocommerce-inline-inline-css'> .woocommerce form .form-row .required { visibility: visible; } </style> <link rel='stylesheet' id='twenty-twenty-one-style-css' href='http://localhost/scan/wordpress/wp-content/themes/twentytwentyone/style.css?ver=1.4' media='all' /> <link rel='stylesheet' id='twenty-twenty-one-print-style-css' href='http://localhost/scan/wordpress/wp-content/themes/twentytwentyone/assets/css/print.css?ver=1.4' media='print' /> <link rel='stylesheet' id='ecs-styles-css' href='http://localhost/scan/wordpress/wp-content/plugins/ele-custom-skin/assets/css/ecs-style.css?ver=3.1.3' media='all' /> <script src='http://localhost/scan/wordpress/wp-includes/js/jquery/jquery.min.js?ver=3.6.0' id='jquery-core-js'></script> <script src='http://localhost/scan/wordpress/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.3.2' id='jquery-migrate-js'></script> <script id='ecs_ajax_load-js-extra'> var ecs_ajax_params = {"ajaxurl":"http:\/\/localhost\/scan\/wordpress\/wp-admin\/admin-ajax.php","posts":"{\"error\":\"\",\"m\":\"\",\"p\":0,\"post_parent\":\"\",\"subpost\":\"\",\"subpost_id\":\"\",\"attachment\":\"\",\"attachment_id\":0,\"name\":\"\",\"pagename\":\"\",\"page_id\":0,\"second\":\"\",\"minute\":\"\",\"hour\":\"\",\"day\":0,\"monthnum\":0,\"year\":0,\"w\":0,\"category_name\":\"\",\"tag\":\"\",\"cat\":\"\",\"tag_id\":\"\",\"author\":\"\",\"author_name\":\"\",\"feed\":\"\",\"tb\":\"\",\"paged\":0,\"meta_key\":\"\",\"meta_value\":\"\",\"preview\":\"\",\"s\":\"\",\"sentence\":\"\",\"title\":\"\",\"fields\":\"\",\"menu_order\":\"\",\"embed\":\"\",\"category__in\":[],\"category__not_in\":[],\"category__and\":[],\"post__in\":[],\"post__not_in\":[],\"post_name__in\":[],\"tag__in\":[],\"tag__not_in\":[],\"tag__and\":[],\"tag_slug__in\":[],\"tag_slug__and\":[],\"post_parent__in\":[],\"post_parent__not_in\":[],\"author__in\":[],\"author__not_in\":[],\"ignore_sticky_posts\":false,\"suppress_filters\":false,\"cache_results\":true,\"update_post_term_cache\":true,\"lazy_load_term_meta\":true,\"update_post_meta_cache\":true,\"post_type\":\"\",\"posts_per_page\":10,\"nopaging\":false,\"comments_per_page\":\"50\",\"no_found_rows\":false,\"order\":\"DESC\"}"}; </script> <script src='http://localhost/scan/wordpress/wp-content/plugins/ele-custom-skin/assets/js/ecs_ajax_pagination.js?ver=3.1.3' id='ecs_ajax_load-js'></script> <script src='http://localhost/scan/wordpress/wp-content/plugins/ele-custom-skin/assets/js/ecs.js?ver=3.1.3' id='ecs-script-js'></script> <link rel="https://api.w.org/" href="http://localhost/scan/wordpress/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://localhost/scan/wordpress/xmlrpc.php?rsd" /> <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://localhost/scan/wordpress/wp-includes/wlwmanifest.xml" /> <meta name="generator" content="WordPress 5.8" /> <meta name="generator" content="WooCommerce 7.0.0" /> <noscript><style>.woocommerce-product-gallery{ opacity: 1 !important; }</style></noscript> </head> <body class="home blog wp-embed-responsive theme-twentytwentyone woocommerce-no-js is-light-theme no-js hfeed elementor-default elementor-kit-10"> <div id="page" class="site"> <a class="skip-link screen-reader-text" href="#content">Skip to content</a> <header id="masthead" class="site-header has-title-and-tagline" role="banner"> <div class="site-branding"> <h1 class="site-title">yup-here</h1> <p class="site-description"> Just another WordPress site </p> </div><!-- .site-branding --> </header><!-- #masthead --> <div id="content" class="site-content"> <div id="primary" class="content-area"> <main id="main" class="site-main" role="main"> <article id="post-1" class="post-1 post type-post status-publish format-standard hentry category-uncategorized entry"> <header class="entry-header"> <h2 class="entry-title default-max-width"><a href="http://localhost/scan/wordpress/2025/02/28/hello-world/">Hello world!</a></h2></header><!-- .entry-header --> <div class="entry-content"> <p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p> </div><!-- .entry-content --> <footer class="entry-footer default-max-width"> <span class="posted-on">Published <time class="entry-date published updated" datetime="2025-02-28T01:47:30+00:00">February 28, 2025</time></span><div class="post-taxonomies"><span class="cat-links">Categorized as <a href="http://localhost/scan/wordpress/category/uncategorized/" rel="category tag">Uncategorized</a> </span></div> </footer><!-- .entry-footer --> </article><!-- #post-${ID} --> </main><!-- #main --> </div><!-- #primary --> </div><!-- #content --> <aside class="widget-area"> <section id="block-2" class="widget widget_block widget_search"><form role="search" method="get" action="http://localhost/scan/wordpress/" class="wp-block-search__button-outside wp-block-search__text-button wp-block-search"><label for="wp-block-search__input-1" class="wp-block-search__label">Search</label><div class="wp-block-search__inside-wrapper"><input type="search" id="wp-block-search__input-1" class="wp-block-search__input" name="s" value="" placeholder="" required /><button type="submit" class="wp-block-search__button ">Search</button></div></form></section><section id="block-3" class="widget widget_block"><div class="wp-block-group"><div class="wp-block-group__inner-container"><h2>Recent Posts</h2><ul class="wp-block-latest-posts__list wp-block-latest-posts"><li><a href="http://localhost/scan/wordpress/2025/02/28/hello-world/">Hello world!</a></li> </ul></div></div></section><section id="block-4" class="widget widget_block"><div class="wp-block-group"><div class="wp-block-group__inner-container"><h2>Recent Comments</h2><ol class="wp-block-latest-comments"><li class="wp-block-latest-comments__comment"><article><footer class="wp-block-latest-comments__comment-meta"><a class="wp-block-latest-comments__comment-author" href="https://wordpress.org/">A WordPress Commenter</a> on <a class="wp-block-latest-comments__comment-link" href="http://localhost/scan/wordpress/2025/02/28/hello-world/#comment-1">Hello world!</a></footer></article></li></ol></div></div></section> </aside><!-- .widget-area --> <footer id="colophon" class="site-footer" role="contentinfo"> <div class="site-info"> <div class="site-name"> yup-here </div><!-- .site-name --> <div class="powered-by"> Proudly powered by <a href="https://wordpress.org/">WordPress</a>. </div><!-- .powered-by --> </div><!-- .site-info --> </footer><!-- #colophon --> </div><!-- #page --> <script>document.body.classList.remove("no-js");</script> <script> if ( -1 !== navigator.userAgent.indexOf( 'MSIE' ) || -1 !== navigator.appVersion.indexOf( 'Trident/' ) ) { document.body.classList.add( 'is-IE' ); } </script> <script type="text/javascript"> (function () { var c = document.body.className; c = c.replace(/woocommerce-no-js/, 'woocommerce-js'); document.body.className = c; })(); </script> <script src='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js?ver=2.7.0-wc.7.0.0' id='jquery-blockui-js'></script> <script id='wc-add-to-cart-js-extra'> var wc_add_to_cart_params = {"ajax_url":"\/scan\/wordpress\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/scan\/wordpress\/?wc-ajax=%%endpoint%%","i18n_view_cart":"View cart","cart_url":"http:\/\/localhost\/scan\/wordpress\/cart\/","is_cart":"","cart_redirect_after_add":"no"}; </script> <script src='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.min.js?ver=7.0.0' id='wc-add-to-cart-js'></script> <script src='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.min.js?ver=2.1.4-wc.7.0.0' id='js-cookie-js'></script> <script id='woocommerce-js-extra'> var woocommerce_params = {"ajax_url":"\/scan\/wordpress\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/scan\/wordpress\/?wc-ajax=%%endpoint%%"}; </script> <script src='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.min.js?ver=7.0.0' id='woocommerce-js'></script> <script id='wc-cart-fragments-js-extra'> var wc_cart_fragments_params = {"ajax_url":"\/scan\/wordpress\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/scan\/wordpress\/?wc-ajax=%%endpoint%%","cart_hash_key":"wc_cart_hash_67da1dc18a3e11e4f2865063b3ad5420","fragment_name":"wc_fragments_67da1dc18a3e11e4f2865063b3ad5420","request_timeout":"5000"}; </script> <script src='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/js/frontend/cart-fragments.min.js?ver=7.0.0' id='wc-cart-fragments-js'></script> <script id='twenty-twenty-one-ie11-polyfills-js-after'> ( Element.prototype.matches && Element.prototype.closest && window.NodeList && NodeList.prototype.forEach ) || document.write( '<script src="http://localhost/scan/wordpress/wp-content/themes/twentytwentyone/assets/js/polyfills.js?ver=1.4"></scr' + 'ipt>' ); </script> <script src='http://localhost/scan/wordpress/wp-content/themes/twentytwentyone/assets/js/responsive-embeds.js?ver=1.4' id='twenty-twenty-one-responsive-embeds-script-js'></script> <script src='http://localhost/scan/wordpress/wp-includes/js/wp-embed.min.js?ver=5.8' id='wp-embed-js'></script> <script> /(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",(function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())}),!1); </script> </body> </html>Solution Ensure that your web server, application server, load balancer, etc. is configured to set the Content-Security-Policy header.
-
Hidden File Found (1)
GET http://localhost/scan/wordpress/composer.lock
Alert tags Alert description A sensitive file was identified as accessible or available. This may leak administrative, configuration, or credential information which can be leveraged by a malicious individual to further attack the system or conduct social engineering efforts.
Other info composer
Request Request line and header section (362 bytes)
GET http://localhost/scan/wordpress/composer.lock HTTP/1.1 host: localhost User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:136.0) Gecko/20100101 Firefox/136.0 Accept: */* Accept-Language: en-CA,en-US;q=0.7,en;q=0.3 X-Requested-With: XMLHttpRequest Origin: http://localhost Connection: keep-alive Referer: http://localhost/scan/wordpress/Request body (0 bytes)
Response Status line and header section (313 bytes)
HTTP/1.1 200 OK Date: Sat, 19 Apr 2025 15:55:26 GMT Server: Apache/2.4.54 (Unix) OpenSSL/1.1.1s PHP/7.4.33 mod_perl/2.0.12 Perl/v5.34.1 Last-Modified: Sun, 23 Mar 2025 00:36:48 GMT ETag: "a7b-630f7aecd2800" Accept-Ranges: bytes Content-Length: 2683 Keep-Alive: timeout=5, max=85 Connection: Keep-AliveResponse body (2683 bytes)
{ "_readme": [ "This file locks the dependencies of your project to a known state", "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], "content-hash": "92efe553d33e9e8e5a6c8a4f139bdf75", "packages": [], "packages-dev": [ { "name": "phpstan/phpstan", "version": "2.1.8", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", "reference": "f9adff3b87c03b12cc7e46a30a524648e497758f" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/phpstan/phpstan/zipball/f9adff3b87c03b12cc7e46a30a524648e497758f", "reference": "f9adff3b87c03b12cc7e46a30a524648e497758f", "shasum": "" }, "require": { "php": "^7.4|^8.0" }, "conflict": { "phpstan/phpstan-shim": "*" }, "bin": [ "phpstan", "phpstan.phar" ], "type": "library", "autoload": { "files": [ "bootstrap.php" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "description": "PHPStan - PHP Static Analysis Tool", "keywords": [ "dev", "static analysis" ], "support": { "docs": "https://phpstan.org/user-guide/getting-started", "forum": "https://github.com/phpstan/phpstan/discussions", "issues": "https://github.com/phpstan/phpstan/issues", "security": "https://github.com/phpstan/phpstan/security/policy", "source": "https://github.com/phpstan/phpstan-src" }, "funding": [ { "url": "https://github.com/ondrejmirtes", "type": "github" }, { "url": "https://github.com/phpstan", "type": "github" } ], "time": "2025-03-09T09:30:48+00:00" } ], "aliases": [], "minimum-stability": "stable", "stability-flags": {}, "prefer-stable": false, "prefer-lowest": false, "platform": { "php": ">=5.6.20", "ext-json": "*" }, "platform-dev": {}, "plugin-api-version": "2.6.0" }Evidence HTTP/1.1 200 OKSolution Consider whether or not the component is actually required in production, if it isn't then disable it. If it is then ensure access to it requires appropriate authentication and authorization, or limit exposure to internal systems or specific source IPs, etc.
-
-
-
Risk=Medium, Confidence=Medium (5)
-
http://code.jquery.com (1)
-
Cross-Domain Misconfiguration (1)
GET http://code.jquery.com/jquery-1.10.2.min.js
Alert tags Alert description Web browser data loading may be possible, due to a Cross Origin Resource Sharing (CORS) misconfiguration on the web server.
Other info The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing.
Request Request line and header section (291 bytes)
GET http://code.jquery.com/jquery-1.10.2.min.js HTTP/1.1 host: code.jquery.com User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:136.0) Gecko/20100101 Firefox/136.0 Accept: */* Accept-Language: en-CA,en-US;q=0.7,en;q=0.3 Connection: keep-alive Referer: http://localhost/Request body (0 bytes)
Response Status line and header section (613 bytes)
HTTP/1.1 200 OK Connection: keep-alive Content-Length: 93107 Server: nginx Content-Type: application/javascript; charset=utf-8 Last-Modified: Fri, 18 Oct 1991 12:00:00 GMT ETag: "28feccc0-16bb3" Cache-Control: public, max-age=31536000, stale-while-revalidate=604800 Access-Control-Allow-Origin: * Cross-Origin-Resource-Policy: cross-origin Via: 1.1 varnish, 1.1 varnish Accept-Ranges: bytes Age: 1575604 Date: Sat, 19 Apr 2025 15:20:32 GMT X-Served-By: cache-lga21955-LGA, cache-yul1970064-YUL X-Cache: HIT, HIT X-Cache-Hits: 3555, 0 X-Timer: S1745076032.218693,VS0,VE1 Vary: Accept-EncodingResponse body (93107 bytes)
/*! jQuery v1.10.2 | (c) 2005, 2013 jQuery Foundation, Inc. | jquery.org/license //@ sourceMappingURL=jquery-1.10.2.min.map */ (function(e,t){var n,r,i=typeof t,o=e.location,a=e.document,s=a.documentElement,l=e.jQuery,u=e.$,c={},p=[],f="1.10.2",d=p.concat,h=p.push,g=p.slice,m=p.indexOf,y=c.toString,v=c.hasOwnProperty,b=f.trim,x=function(e,t){return new x.fn.init(e,t,r)},w=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,T=/\S+/g,C=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,N=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,k=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,E=/^[\],:{}\s]*$/,S=/(?:^|:|,)(?:\s*\[)+/g,A=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,j=/"[^"\\\r\n]*"|true|false|null|-?(?:\d+\.|)\d+(?:[eE][+-]?\d+|)/g,D=/^-ms-/,L=/-([\da-z])/gi,H=function(e,t){return t.toUpperCase()},q=function(e){(a.addEventListener||"load"===e.type||"complete"===a.readyState)&&(_(),x.ready())},_=function(){a.addEventListener?(a.removeEventListener("DOMContentLoaded",q,!1),e.removeEventListener("load",q,!1)):(a.detachEvent("onreadystatechange",q),e.detachEvent("onload",q))};x.fn=x.prototype={jquery:f,constructor:x,init:function(e,n,r){var i,o;if(!e)return this;if("string"==typeof e){if(i="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&e.length>=3?[null,e,null]:N.exec(e),!i||!i[1]&&n)return!n||n.jquery?(n||r).find(e):this.constructor(n).find(e);if(i[1]){if(n=n instanceof x?n[0]:n,x.merge(this,x.parseHTML(i[1],n&&n.nodeType?n.ownerDocument||n:a,!0)),k.test(i[1])&&x.isPlainObject(n))for(i in n)x.isFunction(this[i])?this[i](n[i]):this.attr(i,n[i]);return this}if(o=a.getElementById(i[2]),o&&o.parentNode){if(o.id!==i[2])return r.find(e);this.length=1,this[0]=o}return this.context=a,this.selector=e,this}return e.nodeType?(this.context=this[0]=e,this.length=1,this):x.isFunction(e)?r.ready(e):(e.selector!==t&&(this.selector=e.selector,this.context=e.context),x.makeArray(e,this))},selector:"",length:0,toArray:function(){return g.call(this)},get:function(e){return null==e?this.toArray():0>e?this[this.length+e]:this[e]},pushStack:function(e){var t=x.merge(this.constructor(),e);return t.prevObject=this,t.context=this.context,t},each:function(e,t){return x.each(this,e,t)},ready:function(e){return x.ready.promise().done(e),this},slice:function(){return this.pushStack(g.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(0>e?t:0);return this.pushStack(n>=0&&t>n?[this[n]]:[])},map:function(e){return this.pushStack(x.map(this,function(t,n){return e.call(t,n,t)}))},end:function(){return this.prevObject||this.constructor(null)},push:h,sort:[].sort,splice:[].splice},x.fn.init.prototype=x.fn,x.extend=x.fn.extend=function(){var e,n,r,i,o,a,s=arguments[0]||{},l=1,u=arguments.length,c=!1;for("boolean"==typeof s&&(c=s,s=arguments[1]||{},l=2),"object"==typeof s||x.isFunction(s)||(s={}),u===l&&(s=this,--l);u>l;l++)if(null!=(o=arguments[l]))for(i in o)e=s[i],r=o[i],s!==r&&(c&&r&&(x.isPlainObject(r)||(n=x.isArray(r)))?(n?(n=!1,a=e&&x.isArray(e)?e:[]):a=e&&x.isPlainObject(e)?e:{},s[i]=x.extend(c,a,r)):r!==t&&(s[i]=r));return s},x.extend({expando:"jQuery"+(f+Math.random()).replace(/\D/g,""),noConflict:function(t){return e.$===x&&(e.$=u),t&&e.jQuery===x&&(e.jQuery=l),x},isReady:!1,readyWait:1,holdReady:function(e){e?x.readyWait++:x.ready(!0)},ready:function(e){if(e===!0?!--x.readyWait:!x.isReady){if(!a.body)return setTimeout(x.ready);x.isReady=!0,e!==!0&&--x.readyWait>0||(n.resolveWith(a,[x]),x.fn.trigger&&x(a).trigger("ready").off("ready"))}},isFunction:function(e){return"function"===x.type(e)},isArray:Array.isArray||function(e){return"array"===x.type(e)},isWindow:function(e){return null!=e&&e==e.window},isNumeric:function(e){return!isNaN(parseFloat(e))&&isFinite(e)},type:function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?c[y.call(e)]||"object":typeof e},isPlainObject:function(e){var n;if(!e||"object"!==x.type(e)||e.nodeType||x.isWindow(e))return!1;try{if(e.constructor&&!v.call(e,"constructor")&&!v.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(r){return!1}if(x.support.ownLast)for(n in e)return v.call(e,n);for(n in e);return n===t||v.call(e,n)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},error:function(e){throw Error(e)},parseHTML:function(e,t,n){if(!e||"string"!=typeof e)return null;"boolean"==typeof t&&(n=t,t=!1),t=t||a;var r=k.exec(e),i=!n&&[];return r?[t.createElement(r[1])]:(r=x.buildFragment([e],t,i),i&&x(i).remove(),x.merge([],r.childNodes))},parseJSON:function(n){return e.JSON&&e.JSON.parse?e.JSON.parse(n):null===n?n:"string"==typeof n&&(n=x.trim(n),n&&E.test(n.replace(A,"@").replace(j,"]").replace(S,"")))?Function("return "+n)():(x.error("Invalid JSON: "+n),t)},parseXML:function(n){var r,i;if(!n||"string"!=typeof n)return null;try{e.DOMParser?(i=new DOMParser,r=i.parseFromString(n,"text/xml")):(r=new ActiveXObject("Microsoft.XMLDOM"),r.async="false",r.loadXML(n))}catch(o){r=t}return r&&r.documentElement&&!r.getElementsByTagName("parsererror").length||x.error("Invalid XML: "+n),r},noop:function(){},globalEval:function(t){t&&x.trim(t)&&(e.execScript||function(t){e.eval.call(e,t)})(t)},camelCase:function(e){return e.replace(D,"ms-").replace(L,H)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t,n){var r,i=0,o=e.length,a=M(e);if(n){if(a){for(;o>i;i++)if(r=t.apply(e[i],n),r===!1)break}else for(i in e)if(r=t.apply(e[i],n),r===!1)break}else if(a){for(;o>i;i++)if(r=t.call(e[i],i,e[i]),r===!1)break}else for(i in e)if(r=t.call(e[i],i,e[i]),r===!1)break;return e},trim:b&&!b.call("\ufeff\u00a0")?function(e){return null==e?"":b.call(e)}:function(e){return null==e?"":(e+"").replace(C,"")},makeArray:function(e,t){var n=t||[];return null!=e&&(M(Object(e))?x.merge(n,"string"==typeof e?[e]:e):h.call(n,e)),n},inArray:function(e,t,n){var r;if(t){if(m)return m.call(t,e,n);for(r=t.length,n=n?0>n?Math.max(0,r+n):n:0;r>n;n++)if(n in t&&t[n]===e)return n}return-1},merge:function(e,n){var r=n.length,i=e.length,o=0;if("number"==typeof r)for(;r>o;o++)e[i++]=n[o];else while(n[o]!==t)e[i++]=n[o++];return e.length=i,e},grep:function(e,t,n){var r,i=[],o=0,a=e.length;for(n=!!n;a>o;o++)r=!!t(e[o],o),n!==r&&i.push(e[o]);return i},map:function(e,t,n){var r,i=0,o=e.length,a=M(e),s=[];if(a)for(;o>i;i++)r=t(e[i],i,n),null!=r&&(s[s.length]=r);else for(i in e)r=t(e[i],i,n),null!=r&&(s[s.length]=r);return d.apply([],s)},guid:1,proxy:function(e,n){var r,i,o;return"string"==typeof n&&(o=e[n],n=e,e=o),x.isFunction(e)?(r=g.call(arguments,2),i=function(){return e.apply(n||this,r.concat(g.call(arguments)))},i.guid=e.guid=e.guid||x.guid++,i):t},access:function(e,n,r,i,o,a,s){var l=0,u=e.length,c=null==r;if("object"===x.type(r)){o=!0;for(l in r)x.access(e,n,l,r[l],!0,a,s)}else if(i!==t&&(o=!0,x.isFunction(i)||(s=!0),c&&(s?(n.call(e,i),n=null):(c=n,n=function(e,t,n){return c.call(x(e),n)})),n))for(;u>l;l++)n(e[l],r,s?i:i.call(e[l],l,n(e[l],r)));return o?e:c?n.call(e):u?n(e[0],r):a},now:function(){return(new Date).getTime()},swap:function(e,t,n,r){var i,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=t[o];i=n.apply(e,r||[]);for(o in t)e.style[o]=a[o];return i}}),x.ready.promise=function(t){if(!n)if(n=x.Deferred(),"complete"===a.readyState)setTimeout(x.ready);else if(a.addEventListener)a.addEventListener("DOMContentLoaded",q,!1),e.addEventListener("load",q,!1);else{a.attachEvent("onreadystatechange",q),e.attachEvent("onload",q);var r=!1;try{r=null==e.frameElement&&a.documentElement}catch(i){}r&&r.doScroll&&function o(){if(!x.isReady){try{r.doScroll("left")}catch(e){return setTimeout(o,50)}_(),x.ready()}}()}return n.promise(t)},x.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(e,t){c["[object "+t+"]"]=t.toLowerCase()});function M(e){var t=e.length,n=x.type(e);return x.isWindow(e)?!1:1===e.nodeType&&t?!0:"array"===n||"function"!==n&&(0===t||"number"==typeof t&&t>0&&t-1 in e)}r=x(a),function(e,t){var n,r,i,o,a,s,l,u,c,p,f,d,h,g,m,y,v,b="sizzle"+-new Date,w=e.document,T=0,C=0,N=st(),k=st(),E=st(),S=!1,A=function(e,t){return e===t?(S=!0,0):0},j=typeof t,D=1<<31,L={}.hasOwnProperty,H=[],q=H.pop,_=H.push,M=H.push,O=H.slice,F=H.indexOf||function(e){var t=0,n=this.length;for(;n>t;t++)if(this[t]===e)return t;return-1},B="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",P="[\\x20\\t\\r\\n\\f]",R="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",W=R.replace("w","w#"),$="\\["+P+"*("+R+")"+P+"*(?:([*^$|!~]?=)"+P+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+W+")|)|)"+P+"*\\]",I=":("+R+")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|"+$.replace(3,8)+")*)|.*)\\)|)",z=RegExp("^"+P+"+|((?:^|[^\\\\])(?:\\\\.)*)"+P+"+$","g"),X=RegExp("^"+P+"*,"+P+"*"),U=RegExp("^"+P+"*([>+~]|"+P+")"+P+"*"),V=RegExp(P+"*[+~]"),Y=RegExp("="+P+"*([^\\]'\"]*)"+P+"*\\]","g"),J=RegExp(I),G=RegExp("^"+W+"$"),Q={ID:RegExp("^#("+R+")"),CLASS:RegExp("^\\.("+R+")"),TAG:RegExp("^("+R.replace("w","w*")+")"),ATTR:RegExp("^"+$),PSEUDO:RegExp("^"+I),CHILD:RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+P+"*(even|odd|(([+-]|)(\\d*)n|)"+P+"*(?:([+-]|)"+P+"*(\\d+)|))"+P+"*\\)|)","i"),bool:RegExp("^(?:"+B+")$","i"),needsContext:RegExp("^"+P+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+P+"*((?:-\\d)?\\d*)"+P+"*\\)|)(?=[^-]|$)","i")},K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,et=/^(?:input|select|textarea|button)$/i,tt=/^h\d$/i,nt=/'|\\/g,rt=RegExp("\\\\([\\da-f]{1,6}"+P+"?|("+P+")|.)","ig"),it=function(e,t,n){var r="0x"+t-65536;return r!==r||n?t:0>r?String.fromCharCode(r+65536):String.fromCharCode(55296|r>>10,56320|1023&r)};try{M.apply(H=O.call(w.childNodes),w.childNodes),H[w.childNodes.length].nodeType}catch(ot){M={apply:H.length?function(e,t){_.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function at(e,t,n,i){var o,a,s,l,u,c,d,m,y,x;if((t?t.ownerDocument||t:w)!==f&&p(t),t=t||f,n=n||[],!e||"string"!=typeof e)return n;if(1!==(l=t.nodeType)&&9!==l)return[];if(h&&!i){if(o=Z.exec(e))if(s=o[1]){if(9===l){if(a=t.getElementById(s),!a||!a.parentNode)return n;if(a.id===s)return n.push(a),n}else if(t.ownerDocument&&(a=t.ownerDocument.getElementById(s))&&v(t,a)&&a.id===s)return n.push(a),n}else{if(o[2])return M.apply(n,t.getElementsByTagName(e)),n;if((s=o[3])&&r.getElementsByClassName&&t.getElementsByClassName)return M.apply(n,t.getElementsByClassName(s)),n}if(r.qsa&&(!g||!g.test(e))){if(m=d=b,y=t,x=9===l&&e,1===l&&"object"!==t.nodeName.toLowerCase()){c=mt(e),(d=t.getAttribute("id"))?m=d.replace(nt,"\\$&"):t.setAttribute("id",m),m="[id='"+m+"'] ",u=c.length;while(u--)c[u]=m+yt(c[u]);y=V.test(e)&&t.parentNode||t,x=c.join(",")}if(x)try{return M.apply(n,y.querySelectorAll(x)),n}catch(T){}finally{d||t.removeAttribute("id")}}}return kt(e.replace(z,"$1"),t,n,i)}function st(){var e=[];function t(n,r){return e.push(n+=" ")>o.cacheLength&&delete t[e.shift()],t[n]=r}return t}function lt(e){return e[b]=!0,e}function ut(e){var t=f.createElement("div");try{return!!e(t)}catch(n){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function ct(e,t){var n=e.split("|"),r=e.length;while(r--)o.attrHandle[n[r]]=t}function pt(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&(~t.sourceIndex||D)-(~e.sourceIndex||D);if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function ft(e){return function(t){var n=t.nodeName.toLowerCase();return"input"===n&&t.type===e}}function dt(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function ht(e){return lt(function(t){return t=+t,lt(function(n,r){var i,o=e([],n.length,t),a=o.length;while(a--)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}s=at.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return t?"HTML"!==t.nodeName:!1},r=at.support={},p=at.setDocument=function(e){var n=e?e.ownerDocument||e:w,i=n.defaultView;return n!==f&&9===n.nodeType&&n.documentElement?(f=n,d=n.documentElement,h=!s(n),i&&i.attachEvent&&i!==i.top&&i.attachEvent("onbeforeunload",function(){p()}),r.attributes=ut(function(e){return e.className="i",!e.getAttribute("className")}),r.getElementsByTagName=ut(function(e){return e.appendChild(n.createComment("")),!e.getElementsByTagName("*").length}),r.getElementsByClassName=ut(function(e){return e.innerHTML="<div class='a'></div><div class='a i'></div>",e.firstChild.className="i",2===e.getElementsByClassName("i").length}),r.getById=ut(function(e){return d.appendChild(e).id=b,!n.getElementsByName||!n.getElementsByName(b).length}),r.getById?(o.find.ID=function(e,t){if(typeof t.getElementById!==j&&h){var n=t.getElementById(e);return n&&n.parentNode?[n]:[]}},o.filter.ID=function(e){var t=e.replace(rt,it);return function(e){return e.getAttribute("id")===t}}):(delete o.find.ID,o.filter.ID=function(e){var t=e.replace(rt,it);return function(e){var n=typeof e.getAttributeNode!==j&&e.getAttributeNode("id");return n&&n.value===t}}),o.find.TAG=r.getElementsByTagName?function(e,n){return typeof n.getElementsByTagName!==j?n.getElementsByTagName(e):t}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},o.find.CLASS=r.getElementsByClassName&&function(e,n){return typeof n.getElementsByClassName!==j&&h?n.getElementsByClassName(e):t},m=[],g=[],(r.qsa=K.test(n.querySelectorAll))&&(ut(function(e){e.innerHTML="<select><option selected=''></option></select>",e.querySelectorAll("[selected]").length||g.push("\\["+P+"*(?:value|"+B+")"),e.querySelectorAll(":checked").length||g.push(":checked")}),ut(function(e){var t=n.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("t",""),e.querySelectorAll("[t^='']").length&&g.push("[*^$]="+P+"*(?:''|\"\")"),e.querySelectorAll(":enabled").length||g.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),g.push(",.*:")})),(r.matchesSelector=K.test(y=d.webkitMatchesSelector||d.mozMatchesSelector||d.oMatchesSelector||d.msMatchesSelector))&&ut(function(e){r.disconnectedMatch=y.call(e,"div"),y.call(e,"[s!='']:x"),m.push("!=",I)}),g=g.length&&RegExp(g.join("|")),m=m.length&&RegExp(m.join("|")),v=K.test(d.contains)||d.compareDocumentPosition?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},A=d.compareDocumentPosition?function(e,t){if(e===t)return S=!0,0;var i=t.compareDocumentPosition&&e.compareDocumentPosition&&e.compareDocumentPosition(t);return i?1&i||!r.sortDetached&&t.compareDocumentPosition(e)===i?e===n||v(w,e)?-1:t===n||v(w,t)?1:c?F.call(c,e)-F.call(c,t):0:4&i?-1:1:e.compareDocumentPosition?-1:1}:function(e,t){var r,i=0,o=e.parentNode,a=t.parentNode,s=[e],l=[t];if(e===t)return S=!0,0;if(!o||!a)return e===n?-1:t===n?1:o?-1:a?1:c?F.call(c,e)-F.call(c,t):0;if(o===a)return pt(e,t);r=e;while(r=r.parentNode)s.unshift(r);r=t;while(r=r.parentNode)l.unshift(r);while(s[i]===l[i])i++;return i?pt(s[i],l[i]):s[i]===w?-1:l[i]===w?1:0},n):f},at.matches=function(e,t){return at(e,null,null,t)},at.matchesSelector=function(e,t){if((e.ownerDocument||e)!==f&&p(e),t=t.replace(Y,"='$1']"),!(!r.matchesSelector||!h||m&&m.test(t)||g&&g.test(t)))try{var n=y.call(e,t);if(n||r.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(i){}return at(t,f,null,[e]).length>0},at.contains=function(e,t){return(e.ownerDocument||e)!==f&&p(e),v(e,t)},at.attr=function(e,n){(e.ownerDocument||e)!==f&&p(e);var i=o.attrHandle[n.toLowerCase()],a=i&&L.call(o.attrHandle,n.toLowerCase())?i(e,n,!h):t;return a===t?r.attributes||!h?e.getAttribute(n):(a=e.getAttributeNode(n))&&a.specified?a.value:null:a},at.error=function(e){throw Error("Syntax error, unrecognized expression: "+e)},at.uniqueSort=function(e){var t,n=[],i=0,o=0;if(S=!r.detectDuplicates,c=!r.sortStable&&e.slice(0),e.sort(A),S){while(t=e[o++])t===e[o]&&(i=n.push(o));while(i--)e.splice(n[i],1)}return e},a=at.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=a(e)}else if(3===i||4===i)return e.nodeValue}else for(;t=e[r];r++)n+=a(t);return n},o=at.selectors={cacheLength:50,createPseudo:lt,match:Q,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(rt,it),e[3]=(e[4]||e[5]||"").replace(rt,it),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||at.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&at.error(e[0]),e},PSEUDO:function(e){var n,r=!e[5]&&e[2];return Q.CHILD.test(e[0])?null:(e[3]&&e[4]!==t?e[2]=e[4]:r&&J.test(r)&&(n=mt(r,!0))&&(n=r.indexOf(")",r.length-n)-r.length)&&(e[0]=e[0].slice(0,n),e[2]=r.slice(0,n)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(rt,it).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=N[e+" "];return t||(t=RegExp("(^|"+P+")"+e+"("+P+"|$)"))&&N(e,function(e){return t.test("string"==typeof e.className&&e.className||typeof e.getAttribute!==j&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=at.attr(r,e);return null==i?"!="===t:t?(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i+" ").indexOf(n)>-1:"|="===t?i===n||i.slice(0,n.length+1)===n+"-":!1):!0}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,l){var u,c,p,f,d,h,g=o!==a?"nextSibling":"previousSibling",m=t.parentNode,y=s&&t.nodeName.toLowerCase(),v=!l&&!s;if(m){if(o){while(g){p=t;while(p=p[g])if(s?p.nodeName.toLowerCase()===y:1===p.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?m.firstChild:m.lastChild],a&&v){c=m[b]||(m[b]={}),u=c[e]||[],d=u[0]===T&&u[1],f=u[0]===T&&u[2],p=d&&m.childNodes[d];while(p=++d&&p&&p[g]||(f=d=0)||h.pop())if(1===p.nodeType&&++f&&p===t){c[e]=[T,d,f];break}}else if(v&&(u=(t[b]||(t[b]={}))[e])&&u[0]===T)f=u[1];else while(p=++d&&p&&p[g]||(f=d=0)||h.pop())if((s?p.nodeName.toLowerCase()===y:1===p.nodeType)&&++f&&(v&&((p[b]||(p[b]={}))[e]=[T,f]),p===t))break;return f-=i,f===r||0===f%r&&f/r>=0}}},PSEUDO:function(e,t){var n,r=o.pseudos[e]||o.setFilters[e.toLowerCase()]||at.error("unsupported pseudo: "+e);return r[b]?r(t):r.length>1?(n=[e,e,"",t],o.setFilters.hasOwnProperty(e.toLowerCase())?lt(function(e,n){var i,o=r(e,t),a=o.length;while(a--)i=F.call(e,o[a]),e[i]=!(n[i]=o[a])}):function(e){return r(e,0,n)}):r}},pseudos:{not:lt(function(e){var t=[],n=[],r=l(e.replace(z,"$1"));return r[b]?lt(function(e,t,n,i){var o,a=r(e,null,i,[]),s=e.length;while(s--)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),!n.pop()}}),has:lt(function(e){return function(t){return at(e,t).length>0}}),contains:lt(function(e){return function(t){return(t.textContent||t.innerText||a(t)).indexOf(e)>-1}}),lang:lt(function(e){return G.test(e||"")||at.error("unsupported lang: "+e),e=e.replace(rt,it).toLowerCase(),function(t){var n;do if(n=h?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return n=n.toLowerCase(),n===e||0===n.indexOf(e+"-");while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===d},focus:function(e){return e===f.activeElement&&(!f.hasFocus||f.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:function(e){return e.disabled===!1},disabled:function(e){return e.disabled===!0},checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeName>"@"||3===e.nodeType||4===e.nodeType)return!1;return!0},parent:function(e){return!o.pseudos.empty(e)},header:function(e){return tt.test(e.nodeName)},input:function(e){return et.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||t.toLowerCase()===e.type)},first:ht(function(){return[0]}),last:ht(function(e,t){return[t-1]}),eq:ht(function(e,t,n){return[0>n?n+t:n]}),even:ht(function(e,t){var n=0;for(;t>n;n+=2)e.push(n);return e}),odd:ht(function(e,t){var n=1;for(;t>n;n+=2)e.push(n);return e}),lt:ht(function(e,t,n){var r=0>n?n+t:n;for(;--r>=0;)e.push(r);return e}),gt:ht(function(e,t,n){var r=0>n?n+t:n;for(;t>++r;)e.push(r);return e})}},o.pseudos.nth=o.pseudos.eq;for(n in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})o.pseudos[n]=ft(n);for(n in{submit:!0,reset:!0})o.pseudos[n]=dt(n);function gt(){}gt.prototype=o.filters=o.pseudos,o.setFilters=new gt;function mt(e,t){var n,r,i,a,s,l,u,c=k[e+" "];if(c)return t?0:c.slice(0);s=e,l=[],u=o.preFilter;while(s){(!n||(r=X.exec(s)))&&(r&&(s=s.slice(r[0].length)||s),l.push(i=[])),n=!1,(r=U.exec(s))&&(n=r.shift(),i.push({value:n,type:r[0].replace(z," ")}),s=s.slice(n.length));for(a in o.filter)!(r=Q[a].exec(s))||u[a]&&!(r=u[a](r))||(n=r.shift(),i.push({value:n,type:a,matches:r}),s=s.slice(n.length));if(!n)break}return t?s.length:s?at.error(e):k(e,l).slice(0)}function yt(e){var t=0,n=e.length,r="";for(;n>t;t++)r+=e[t].value;return r}function vt(e,t,n){var r=t.dir,o=n&&"parentNode"===r,a=C++;return t.first?function(t,n,i){while(t=t[r])if(1===t.nodeType||o)return e(t,n,i)}:function(t,n,s){var l,u,c,p=T+" "+a;if(s){while(t=t[r])if((1===t.nodeType||o)&&e(t,n,s))return!0}else while(t=t[r])if(1===t.nodeType||o)if(c=t[b]||(t[b]={}),(u=c[r])&&u[0]===p){if((l=u[1])===!0||l===i)return l===!0}else if(u=c[r]=[p],u[1]=e(t,n,s)||i,u[1]===!0)return!0}}function bt(e){return e.length>1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function xt(e,t,n,r,i){var o,a=[],s=0,l=e.length,u=null!=t;for(;l>s;s++)(o=e[s])&&(!n||n(o,r,i))&&(a.push(o),u&&t.push(s));return a}function wt(e,t,n,r,i,o){return r&&!r[b]&&(r=wt(r)),i&&!i[b]&&(i=wt(i,o)),lt(function(o,a,s,l){var u,c,p,f=[],d=[],h=a.length,g=o||Nt(t||"*",s.nodeType?[s]:s,[]),m=!e||!o&&t?g:xt(g,f,e,s,l),y=n?i||(o?e:h||r)?[]:a:m;if(n&&n(m,y,s,l),r){u=xt(y,d),r(u,[],s,l),c=u.length;while(c--)(p=u[c])&&(y[d[c]]=!(m[d[c]]=p))}if(o){if(i||e){if(i){u=[],c=y.length;while(c--)(p=y[c])&&u.push(m[c]=p);i(null,y=[],u,l)}c=y.length;while(c--)(p=y[c])&&(u=i?F.call(o,p):f[c])>-1&&(o[u]=!(a[u]=p))}}else y=xt(y===a?y.splice(h,y.length):y),i?i(null,a,y,l):M.apply(a,y)})}function Tt(e){var t,n,r,i=e.length,a=o.relative[e[0].type],s=a||o.relative[" "],l=a?1:0,c=vt(function(e){return e===t},s,!0),p=vt(function(e){return F.call(t,e)>-1},s,!0),f=[function(e,n,r){return!a&&(r||n!==u)||((t=n).nodeType?c(e,n,r):p(e,n,r))}];for(;i>l;l++)if(n=o.relative[e[l].type])f=[vt(bt(f),n)];else{if(n=o.filter[e[l].type].apply(null,e[l].matches),n[b]){for(r=++l;i>r;r++)if(o.relative[e[r].type])break;return wt(l>1&&bt(f),l>1&&yt(e.slice(0,l-1).concat({value:" "===e[l-2].type?"*":""})).replace(z,"$1"),n,r>l&&Tt(e.slice(l,r)),i>r&&Tt(e=e.slice(r)),i>r&&yt(e))}f.push(n)}return bt(f)}function Ct(e,t){var n=0,r=t.length>0,a=e.length>0,s=function(s,l,c,p,d){var h,g,m,y=[],v=0,b="0",x=s&&[],w=null!=d,C=u,N=s||a&&o.find.TAG("*",d&&l.parentNode||l),k=T+=null==C?1:Math.random()||.1;for(w&&(u=l!==f&&l,i=n);null!=(h=N[b]);b++){if(a&&h){g=0;while(m=e[g++])if(m(h,l,c)){p.push(h);break}w&&(T=k,i=++n)}r&&((h=!m&&h)&&v--,s&&x.push(h))}if(v+=b,r&&b!==v){g=0;while(m=t[g++])m(x,y,l,c);if(s){if(v>0)while(b--)x[b]||y[b]||(y[b]=q.call(p));y=xt(y)}M.apply(p,y),w&&!s&&y.length>0&&v+t.length>1&&at.uniqueSort(p)}return w&&(T=k,u=C),x};return r?lt(s):s}l=at.compile=function(e,t){var n,r=[],i=[],o=E[e+" "];if(!o){t||(t=mt(e)),n=t.length;while(n--)o=Tt(t[n]),o[b]?r.push(o):i.push(o);o=E(e,Ct(i,r))}return o};function Nt(e,t,n){var r=0,i=t.length;for(;i>r;r++)at(e,t[r],n);return n}function kt(e,t,n,i){var a,s,u,c,p,f=mt(e);if(!i&&1===f.length){if(s=f[0]=f[0].slice(0),s.length>2&&"ID"===(u=s[0]).type&&r.getById&&9===t.nodeType&&h&&o.relative[s[1].type]){if(t=(o.find.ID(u.matches[0].replace(rt,it),t)||[])[0],!t)return n;e=e.slice(s.shift().value.length)}a=Q.needsContext.test(e)?0:s.length;while(a--){if(u=s[a],o.relative[c=u.type])break;if((p=o.find[c])&&(i=p(u.matches[0].replace(rt,it),V.test(s[0].type)&&t.parentNode||t))){if(s.splice(a,1),e=i.length&&yt(s),!e)return M.apply(n,i),n;break}}}return l(e,f)(i,t,!h,n,V.test(e)),n}r.sortStable=b.split("").sort(A).join("")===b,r.detectDuplicates=S,p(),r.sortDetached=ut(function(e){return 1&e.compareDocumentPosition(f.createElement("div"))}),ut(function(e){return e.innerHTML="<a href='#'></a>","#"===e.firstChild.getAttribute("href")})||ct("type|href|height|width",function(e,n,r){return r?t:e.getAttribute(n,"type"===n.toLowerCase()?1:2)}),r.attributes&&ut(function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||ct("value",function(e,n,r){return r||"input"!==e.nodeName.toLowerCase()?t:e.defaultValue}),ut(function(e){return null==e.getAttribute("disabled")})||ct(B,function(e,n,r){var i;return r?t:(i=e.getAttributeNode(n))&&i.specified?i.value:e[n]===!0?n.toLowerCase():null}),x.find=at,x.expr=at.selectors,x.expr[":"]=x.expr.pseudos,x.unique=at.uniqueSort,x.text=at.getText,x.isXMLDoc=at.isXML,x.contains=at.contains}(e);var O={};function F(e){var t=O[e]={};return x.each(e.match(T)||[],function(e,n){t[n]=!0}),t}x.Callbacks=function(e){e="string"==typeof e?O[e]||F(e):x.extend({},e);var n,r,i,o,a,s,l=[],u=!e.once&&[],c=function(t){for(r=e.memory&&t,i=!0,a=s||0,s=0,o=l.length,n=!0;l&&o>a;a++)if(l[a].apply(t[0],t[1])===!1&&e.stopOnFalse){r=!1;break}n=!1,l&&(u?u.length&&c(u.shift()):r?l=[]:p.disable())},p={add:function(){if(l){var t=l.length;(function i(t){x.each(t,function(t,n){var r=x.type(n);"function"===r?e.unique&&p.has(n)||l.push(n):n&&n.length&&"string"!==r&&i(n)})})(arguments),n?o=l.length:r&&(s=t,c(r))}return this},remove:function(){return l&&x.each(arguments,function(e,t){var r;while((r=x.inArray(t,l,r))>-1)l.splice(r,1),n&&(o>=r&&o--,a>=r&&a--)}),this},has:function(e){return e?x.inArray(e,l)>-1:!(!l||!l.length)},empty:function(){return l=[],o=0,this},disable:function(){return l=u=r=t,this},disabled:function(){return!l},lock:function(){return u=t,r||p.disable(),this},locked:function(){return!u},fireWith:function(e,t){return!l||i&&!u||(t=t||[],t=[e,t.slice?t.slice():t],n?u.push(t):c(t)),this},fire:function(){return p.fireWith(this,arguments),this},fired:function(){return!!i}};return p},x.extend({Deferred:function(e){var t=[["resolve","done",x.Callbacks("once memory"),"resolved"],["reject","fail",x.Callbacks("once memory"),"rejected"],["notify","progress",x.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return x.Deferred(function(n){x.each(t,function(t,o){var a=o[0],s=x.isFunction(e[t])&&e[t];i[o[1]](function(){var e=s&&s.apply(this,arguments);e&&x.isFunction(e.promise)?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[a+"With"](this===r?n.promise():this,s?[e]:arguments)})}),e=null}).promise()},promise:function(e){return null!=e?x.extend(e,r):r}},i={};return r.pipe=r.then,x.each(t,function(e,o){var a=o[2],s=o[3];r[o[1]]=a.add,s&&a.add(function(){n=s},t[1^e][2].disable,t[2][2].lock),i[o[0]]=function(){return i[o[0]+"With"](this===i?r:this,arguments),this},i[o[0]+"With"]=a.fireWith}),r.promise(i),e&&e.call(i,i),i},when:function(e){var t=0,n=g.call(arguments),r=n.length,i=1!==r||e&&x.isFunction(e.promise)?r:0,o=1===i?e:x.Deferred(),a=function(e,t,n){return function(r){t[e]=this,n[e]=arguments.length>1?g.call(arguments):r,n===s?o.notifyWith(t,n):--i||o.resolveWith(t,n)}},s,l,u;if(r>1)for(s=Array(r),l=Array(r),u=Array(r);r>t;t++)n[t]&&x.isFunction(n[t].promise)?n[t].promise().done(a(t,u,n)).fail(o.reject).progress(a(t,l,s)):--i;return i||o.resolveWith(u,n),o.promise()}}),x.support=function(t){var n,r,o,s,l,u,c,p,f,d=a.createElement("div");if(d.setAttribute("className","t"),d.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",n=d.getElementsByTagName("*")||[],r=d.getElementsByTagName("a")[0],!r||!r.style||!n.length)return t;s=a.createElement("select"),u=s.appendChild(a.createElement("option")),o=d.getElementsByTagName("input")[0],r.style.cssText="top:1px;float:left;opacity:.5",t.getSetAttribute="t"!==d.className,t.leadingWhitespace=3===d.firstChild.nodeType,t.tbody=!d.getElementsByTagName("tbody").length,t.htmlSerialize=!!d.getElementsByTagName("link").length,t.style=/top/.test(r.getAttribute("style")),t.hrefNormalized="/a"===r.getAttribute("href"),t.opacity=/^0.5/.test(r.style.opacity),t.cssFloat=!!r.style.cssFloat,t.checkOn=!!o.value,t.optSelected=u.selected,t.enctype=!!a.createElement("form").enctype,t.html5Clone="<:nav></:nav>"!==a.createElement("nav").cloneNode(!0).outerHTML,t.inlineBlockNeedsLayout=!1,t.shrinkWrapBlocks=!1,t.pixelPosition=!1,t.deleteExpando=!0,t.noCloneEvent=!0,t.reliableMarginRight=!0,t.boxSizingReliable=!0,o.checked=!0,t.noCloneChecked=o.cloneNode(!0).checked,s.disabled=!0,t.optDisabled=!u.disabled;try{delete d.test}catch(h){t.deleteExpando=!1}o=a.createElement("input"),o.setAttribute("value",""),t.input=""===o.getAttribute("value"),o.value="t",o.setAttribute("type","radio"),t.radioValue="t"===o.value,o.setAttribute("checked","t"),o.setAttribute("name","t"),l=a.createDocumentFragment(),l.appendChild(o),t.appendChecked=o.checked,t.checkClone=l.cloneNode(!0).cloneNode(!0).lastChild.checked,d.attachEvent&&(d.attachEvent("onclick",function(){t.noCloneEvent=!1}),d.cloneNode(!0).click());for(f in{submit:!0,change:!0,focusin:!0})d.setAttribute(c="on"+f,"t"),t[f+"Bubbles"]=c in e||d.attributes[c].expando===!1;d.style.backgroundClip="content-box",d.cloneNode(!0).style.backgroundClip="",t.clearCloneStyle="content-box"===d.style.backgroundClip;for(f in x(t))break;return t.ownLast="0"!==f,x(function(){var n,r,o,s="padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;",l=a.getElementsByTagName("body")[0];l&&(n=a.createElement("div"),n.style.cssText="border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px",l.appendChild(n).appendChild(d),d.innerHTML="<table><tr><td></td><td>t</td></tr></table>",o=d.getElementsByTagName("td"),o[0].style.cssText="padding:0;margin:0;border:0;display:none",p=0===o[0].offsetHeight,o[0].style.display="",o[1].style.display="none",t.reliableHiddenOffsets=p&&0===o[0].offsetHeight,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",x.swap(l,null!=l.style.zoom?{zoom:1}:{},function(){t.boxSizing=4===d.offsetWidth}),e.getComputedStyle&&(t.pixelPosition="1%"!==(e.getComputedStyle(d,null)||{}).top,t.boxSizingReliable="4px"===(e.getComputedStyle(d,null)||{width:"4px"}).width,r=d.appendChild(a.createElement("div")),r.style.cssText=d.style.cssText=s,r.style.marginRight=r.style.width="0",d.style.width="1px",t.reliableMarginRight=!parseFloat((e.getComputedStyle(r,null)||{}).marginRight)),typeof d.style.zoom!==i&&(d.innerHTML="",d.style.cssText=s+"width:1px;padding:1px;display:inline;zoom:1",t.inlineBlockNeedsLayout=3===d.offsetWidth,d.style.display="block",d.innerHTML="<div></div>",d.firstChild.style.width="5px",t.shrinkWrapBlocks=3!==d.offsetWidth,t.inlineBlockNeedsLayout&&(l.style.zoom=1)),l.removeChild(n),n=d=o=r=null)}),n=s=l=u=r=o=null,t }({});var B=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,P=/([A-Z])/g;function R(e,n,r,i){if(x.acceptData(e)){var o,a,s=x.expando,l=e.nodeType,u=l?x.cache:e,c=l?e[s]:e[s]&&s;if(c&&u[c]&&(i||u[c].data)||r!==t||"string"!=typeof n)return c||(c=l?e[s]=p.pop()||x.guid++:s),u[c]||(u[c]=l?{}:{toJSON:x.noop}),("object"==typeof n||"function"==typeof n)&&(i?u[c]=x.extend(u[c],n):u[c].data=x.extend(u[c].data,n)),a=u[c],i||(a.data||(a.data={}),a=a.data),r!==t&&(a[x.camelCase(n)]=r),"string"==typeof n?(o=a[n],null==o&&(o=a[x.camelCase(n)])):o=a,o}}function W(e,t,n){if(x.acceptData(e)){var r,i,o=e.nodeType,a=o?x.cache:e,s=o?e[x.expando]:x.expando;if(a[s]){if(t&&(r=n?a[s]:a[s].data)){x.isArray(t)?t=t.concat(x.map(t,x.camelCase)):t in r?t=[t]:(t=x.camelCase(t),t=t in r?[t]:t.split(" ")),i=t.length;while(i--)delete r[t[i]];if(n?!I(r):!x.isEmptyObject(r))return}(n||(delete a[s].data,I(a[s])))&&(o?x.cleanData([e],!0):x.support.deleteExpando||a!=a.window?delete a[s]:a[s]=null)}}}x.extend({cache:{},noData:{applet:!0,embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(e){return e=e.nodeType?x.cache[e[x.expando]]:e[x.expando],!!e&&!I(e)},data:function(e,t,n){return R(e,t,n)},removeData:function(e,t){return W(e,t)},_data:function(e,t,n){return R(e,t,n,!0)},_removeData:function(e,t){return W(e,t,!0)},acceptData:function(e){if(e.nodeType&&1!==e.nodeType&&9!==e.nodeType)return!1;var t=e.nodeName&&x.noData[e.nodeName.toLowerCase()];return!t||t!==!0&&e.getAttribute("classid")===t}}),x.fn.extend({data:function(e,n){var r,i,o=null,a=0,s=this[0];if(e===t){if(this.length&&(o=x.data(s),1===s.nodeType&&!x._data(s,"parsedAttrs"))){for(r=s.attributes;r.length>a;a++)i=r[a].name,0===i.indexOf("data-")&&(i=x.camelCase(i.slice(5)),$(s,i,o[i]));x._data(s,"parsedAttrs",!0)}return o}return"object"==typeof e?this.each(function(){x.data(this,e)}):arguments.length>1?this.each(function(){x.data(this,e,n)}):s?$(s,e,x.data(s,e)):null},removeData:function(e){return this.each(function(){x.removeData(this,e)})}});function $(e,n,r){if(r===t&&1===e.nodeType){var i="data-"+n.replace(P,"-$1").toLowerCase();if(r=e.getAttribute(i),"string"==typeof r){try{r="true"===r?!0:"false"===r?!1:"null"===r?null:+r+""===r?+r:B.test(r)?x.parseJSON(r):r}catch(o){}x.data(e,n,r)}else r=t}return r}function I(e){var t;for(t in e)if(("data"!==t||!x.isEmptyObject(e[t]))&&"toJSON"!==t)return!1;return!0}x.extend({queue:function(e,n,r){var i;return e?(n=(n||"fx")+"queue",i=x._data(e,n),r&&(!i||x.isArray(r)?i=x._data(e,n,x.makeArray(r)):i.push(r)),i||[]):t},dequeue:function(e,t){t=t||"fx";var n=x.queue(e,t),r=n.length,i=n.shift(),o=x._queueHooks(e,t),a=function(){x.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,a,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return x._data(e,n)||x._data(e,n,{empty:x.Callbacks("once memory").add(function(){x._removeData(e,t+"queue"),x._removeData(e,n)})})}}),x.fn.extend({queue:function(e,n){var r=2;return"string"!=typeof e&&(n=e,e="fx",r--),r>arguments.length?x.queue(this[0],e):n===t?this:this.each(function(){var t=x.queue(this,e,n);x._queueHooks(this,e),"fx"===e&&"inprogress"!==t[0]&&x.dequeue(this,e)})},dequeue:function(e){return this.each(function(){x.dequeue(this,e)})},delay:function(e,t){return e=x.fx?x.fx.speeds[e]||e:e,t=t||"fx",this.queue(t,function(t,n){var r=setTimeout(t,e);n.stop=function(){clearTimeout(r)}})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,n){var r,i=1,o=x.Deferred(),a=this,s=this.length,l=function(){--i||o.resolveWith(a,[a])};"string"!=typeof e&&(n=e,e=t),e=e||"fx";while(s--)r=x._data(a[s],e+"queueHooks"),r&&r.empty&&(i++,r.empty.add(l));return l(),o.promise(n)}});var z,X,U=/[\t\r\n\f]/g,V=/\r/g,Y=/^(?:input|select|textarea|button|object)$/i,J=/^(?:a|area)$/i,G=/^(?:checked|selected)$/i,Q=x.support.getSetAttribute,K=x.support.input;x.fn.extend({attr:function(e,t){return x.access(this,x.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){x.removeAttr(this,e)})},prop:function(e,t){return x.access(this,x.prop,e,t,arguments.length>1)},removeProp:function(e){return e=x.propFix[e]||e,this.each(function(){try{this[e]=t,delete this[e]}catch(n){}})},addClass:function(e){var t,n,r,i,o,a=0,s=this.length,l="string"==typeof e&&e;if(x.isFunction(e))return this.each(function(t){x(this).addClass(e.call(this,t,this.className))});if(l)for(t=(e||"").match(T)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(U," "):" ")){o=0;while(i=t[o++])0>r.indexOf(" "+i+" ")&&(r+=i+" ");n.className=x.trim(r)}return this},removeClass:function(e){var t,n,r,i,o,a=0,s=this.length,l=0===arguments.length||"string"==typeof e&&e;if(x.isFunction(e))return this.each(function(t){x(this).removeClass(e.call(this,t,this.className))});if(l)for(t=(e||"").match(T)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(U," "):"")){o=0;while(i=t[o++])while(r.indexOf(" "+i+" ")>=0)r=r.replace(" "+i+" "," ");n.className=e?x.trim(r):""}return this},toggleClass:function(e,t){var n=typeof e;return"boolean"==typeof t&&"string"===n?t?this.addClass(e):this.removeClass(e):x.isFunction(e)?this.each(function(n){x(this).toggleClass(e.call(this,n,this.className,t),t)}):this.each(function(){if("string"===n){var t,r=0,o=x(this),a=e.match(T)||[];while(t=a[r++])o.hasClass(t)?o.removeClass(t):o.addClass(t)}else(n===i||"boolean"===n)&&(this.className&&x._data(this,"__className__",this.className),this.className=this.className||e===!1?"":x._data(this,"__className__")||"")})},hasClass:function(e){var t=" "+e+" ",n=0,r=this.length;for(;r>n;n++)if(1===this[n].nodeType&&(" "+this[n].className+" ").replace(U," ").indexOf(t)>=0)return!0;return!1},val:function(e){var n,r,i,o=this[0];{if(arguments.length)return i=x.isFunction(e),this.each(function(n){var o;1===this.nodeType&&(o=i?e.call(this,n,x(this).val()):e,null==o?o="":"number"==typeof o?o+="":x.isArray(o)&&(o=x.map(o,function(e){return null==e?"":e+""})),r=x.valHooks[this.type]||x.valHooks[this.nodeName.toLowerCase()],r&&"set"in r&&r.set(this,o,"value")!==t||(this.value=o))});if(o)return r=x.valHooks[o.type]||x.valHooks[o.nodeName.toLowerCase()],r&&"get"in r&&(n=r.get(o,"value"))!==t?n:(n=o.value,"string"==typeof n?n.replace(V,""):null==n?"":n)}}}),x.extend({valHooks:{option:{get:function(e){var t=x.find.attr(e,"value");return null!=t?t:e.text}},select:{get:function(e){var t,n,r=e.options,i=e.selectedIndex,o="select-one"===e.type||0>i,a=o?null:[],s=o?i+1:r.length,l=0>i?s:o?i:0;for(;s>l;l++)if(n=r[l],!(!n.selected&&l!==i||(x.support.optDisabled?n.disabled:null!==n.getAttribute("disabled"))||n.parentNode.disabled&&x.nodeName(n.parentNode,"optgroup"))){if(t=x(n).val(),o)return t;a.push(t)}return a},set:function(e,t){var n,r,i=e.options,o=x.makeArray(t),a=i.length;while(a--)r=i[a],(r.selected=x.inArray(x(r).val(),o)>=0)&&(n=!0);return n||(e.selectedIndex=-1),o}}},attr:function(e,n,r){var o,a,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return typeof e.getAttribute===i?x.prop(e,n,r):(1===s&&x.isXMLDoc(e)||(n=n.toLowerCase(),o=x.attrHooks[n]||(x.expr.match.bool.test(n)?X:z)),r===t?o&&"get"in o&&null!==(a=o.get(e,n))?a:(a=x.find.attr(e,n),null==a?t:a):null!==r?o&&"set"in o&&(a=o.set(e,r,n))!==t?a:(e.setAttribute(n,r+""),r):(x.removeAttr(e,n),t))},removeAttr:function(e,t){var n,r,i=0,o=t&&t.match(T);if(o&&1===e.nodeType)while(n=o[i++])r=x.propFix[n]||n,x.expr.match.bool.test(n)?K&&Q||!G.test(n)?e[r]=!1:e[x.camelCase("default-"+n)]=e[r]=!1:x.attr(e,n,""),e.removeAttribute(Q?n:r)},attrHooks:{type:{set:function(e,t){if(!x.support.radioValue&&"radio"===t&&x.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},propFix:{"for":"htmlFor","class":"className"},prop:function(e,n,r){var i,o,a,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return a=1!==s||!x.isXMLDoc(e),a&&(n=x.propFix[n]||n,o=x.propHooks[n]),r!==t?o&&"set"in o&&(i=o.set(e,r,n))!==t?i:e[n]=r:o&&"get"in o&&null!==(i=o.get(e,n))?i:e[n]},propHooks:{tabIndex:{get:function(e){var t=x.find.attr(e,"tabindex");return t?parseInt(t,10):Y.test(e.nodeName)||J.test(e.nodeName)&&e.href?0:-1}}}}),X={set:function(e,t,n){return t===!1?x.removeAttr(e,n):K&&Q||!G.test(n)?e.setAttribute(!Q&&x.propFix[n]||n,n):e[x.camelCase("default-"+n)]=e[n]=!0,n}},x.each(x.expr.match.bool.source.match(/\w+/g),function(e,n){var r=x.expr.attrHandle[n]||x.find.attr;x.expr.attrHandle[n]=K&&Q||!G.test(n)?function(e,n,i){var o=x.expr.attrHandle[n],a=i?t:(x.expr.attrHandle[n]=t)!=r(e,n,i)?n.toLowerCase():null;return x.expr.attrHandle[n]=o,a}:function(e,n,r){return r?t:e[x.camelCase("default-"+n)]?n.toLowerCase():null}}),K&&Q||(x.attrHooks.value={set:function(e,n,r){return x.nodeName(e,"input")?(e.defaultValue=n,t):z&&z.set(e,n,r)}}),Q||(z={set:function(e,n,r){var i=e.getAttributeNode(r);return i||e.setAttributeNode(i=e.ownerDocument.createAttribute(r)),i.value=n+="","value"===r||n===e.getAttribute(r)?n:t}},x.expr.attrHandle.id=x.expr.attrHandle.name=x.expr.attrHandle.coords=function(e,n,r){var i;return r?t:(i=e.getAttributeNode(n))&&""!==i.value?i.value:null},x.valHooks.button={get:function(e,n){var r=e.getAttributeNode(n);return r&&r.specified?r.value:t},set:z.set},x.attrHooks.contenteditable={set:function(e,t,n){z.set(e,""===t?!1:t,n)}},x.each(["width","height"],function(e,n){x.attrHooks[n]={set:function(e,r){return""===r?(e.setAttribute(n,"auto"),r):t}}})),x.support.hrefNormalized||x.each(["href","src"],function(e,t){x.propHooks[t]={get:function(e){return e.getAttribute(t,4)}}}),x.support.style||(x.attrHooks.style={get:function(e){return e.style.cssText||t},set:function(e,t){return e.style.cssText=t+""}}),x.support.optSelected||(x.propHooks.selected={get:function(e){var t=e.parentNode;return t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex),null}}),x.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){x.propFix[this.toLowerCase()]=this}),x.support.enctype||(x.propFix.enctype="encoding"),x.each(["radio","checkbox"],function(){x.valHooks[this]={set:function(e,n){return x.isArray(n)?e.checked=x.inArray(x(e).val(),n)>=0:t}},x.support.checkOn||(x.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})});var Z=/^(?:input|select|textarea)$/i,et=/^key/,tt=/^(?:mouse|contextmenu)|click/,nt=/^(?:focusinfocus|focusoutblur)$/,rt=/^([^.]*)(?:\.(.+)|)$/;function it(){return!0}function ot(){return!1}function at(){try{return a.activeElement}catch(e){}}x.event={global:{},add:function(e,n,r,o,a){var s,l,u,c,p,f,d,h,g,m,y,v=x._data(e);if(v){r.handler&&(c=r,r=c.handler,a=c.selector),r.guid||(r.guid=x.guid++),(l=v.events)||(l=v.events={}),(f=v.handle)||(f=v.handle=function(e){return typeof x===i||e&&x.event.triggered===e.type?t:x.event.dispatch.apply(f.elem,arguments)},f.elem=e),n=(n||"").match(T)||[""],u=n.length;while(u--)s=rt.exec(n[u])||[],g=y=s[1],m=(s[2]||"").split(".").sort(),g&&(p=x.event.special[g]||{},g=(a?p.delegateType:p.bindType)||g,p=x.event.special[g]||{},d=x.extend({type:g,origType:y,data:o,handler:r,guid:r.guid,selector:a,needsContext:a&&x.expr.match.needsContext.test(a),namespace:m.join(".")},c),(h=l[g])||(h=l[g]=[],h.delegateCount=0,p.setup&&p.setup.call(e,o,m,f)!==!1||(e.addEventListener?e.addEventListener(g,f,!1):e.attachEvent&&e.attachEvent("on"+g,f))),p.add&&(p.add.call(e,d),d.handler.guid||(d.handler.guid=r.guid)),a?h.splice(h.delegateCount++,0,d):h.push(d),x.event.global[g]=!0);e=null}},remove:function(e,t,n,r,i){var o,a,s,l,u,c,p,f,d,h,g,m=x.hasData(e)&&x._data(e);if(m&&(c=m.events)){t=(t||"").match(T)||[""],u=t.length;while(u--)if(s=rt.exec(t[u])||[],d=g=s[1],h=(s[2]||"").split(".").sort(),d){p=x.event.special[d]||{},d=(r?p.delegateType:p.bindType)||d,f=c[d]||[],s=s[2]&&RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),l=o=f.length;while(o--)a=f[o],!i&&g!==a.origType||n&&n.guid!==a.guid||s&&!s.test(a.namespace)||r&&r!==a.selector&&("**"!==r||!a.selector)||(f.splice(o,1),a.selector&&f.delegateCount--,p.remove&&p.remove.call(e,a));l&&!f.length&&(p.teardown&&p.teardown.call(e,h,m.handle)!==!1||x.removeEvent(e,d,m.handle),delete c[d])}else for(d in c)x.event.remove(e,d+t[u],n,r,!0);x.isEmptyObject(c)&&(delete m.handle,x._removeData(e,"events"))}},trigger:function(n,r,i,o){var s,l,u,c,p,f,d,h=[i||a],g=v.call(n,"type")?n.type:n,m=v.call(n,"namespace")?n.namespace.split("."):[];if(u=f=i=i||a,3!==i.nodeType&&8!==i.nodeType&&!nt.test(g+x.event.triggered)&&(g.indexOf(".")>=0&&(m=g.split("."),g=m.shift(),m.sort()),l=0>g.indexOf(":")&&"on"+g,n=n[x.expando]?n:new x.Event(g,"object"==typeof n&&n),n.isTrigger=o?2:3,n.namespace=m.join("."),n.namespace_re=n.namespace?RegExp("(^|\\.)"+m.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,n.result=t,n.target||(n.target=i),r=null==r?[n]:x.makeArray(r,[n]),p=x.event.special[g]||{},o||!p.trigger||p.trigger.apply(i,r)!==!1)){if(!o&&!p.noBubble&&!x.isWindow(i)){for(c=p.delegateType||g,nt.test(c+g)||(u=u.parentNode);u;u=u.parentNode)h.push(u),f=u;f===(i.ownerDocument||a)&&h.push(f.defaultView||f.parentWindow||e)}d=0;while((u=h[d++])&&!n.isPropagationStopped())n.type=d>1?c:p.bindType||g,s=(x._data(u,"events")||{})[n.type]&&x._data(u,"handle"),s&&s.apply(u,r),s=l&&u[l],s&&x.acceptData(u)&&s.apply&&s.apply(u,r)===!1&&n.preventDefault();if(n.type=g,!o&&!n.isDefaultPrevented()&&(!p._default||p._default.apply(h.pop(),r)===!1)&&x.acceptData(i)&&l&&i[g]&&!x.isWindow(i)){f=i[l],f&&(i[l]=null),x.event.triggered=g;try{i[g]()}catch(y){}x.event.triggered=t,f&&(i[l]=f)}return n.result}},dispatch:function(e){e=x.event.fix(e);var n,r,i,o,a,s=[],l=g.call(arguments),u=(x._data(this,"events")||{})[e.type]||[],c=x.event.special[e.type]||{};if(l[0]=e,e.delegateTarget=this,!c.preDispatch||c.preDispatch.call(this,e)!==!1){s=x.event.handlers.call(this,e,u),n=0;while((o=s[n++])&&!e.isPropagationStopped()){e.currentTarget=o.elem,a=0;while((i=o.handlers[a++])&&!e.isImmediatePropagationStopped())(!e.namespace_re||e.namespace_re.test(i.namespace))&&(e.handleObj=i,e.data=i.data,r=((x.event.special[i.origType]||{}).handle||i.handler).apply(o.elem,l),r!==t&&(e.result=r)===!1&&(e.preventDefault(),e.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,e),e.result}},handlers:function(e,n){var r,i,o,a,s=[],l=n.delegateCount,u=e.target;if(l&&u.nodeType&&(!e.button||"click"!==e.type))for(;u!=this;u=u.parentNode||this)if(1===u.nodeType&&(u.disabled!==!0||"click"!==e.type)){for(o=[],a=0;l>a;a++)i=n[a],r=i.selector+" ",o[r]===t&&(o[r]=i.needsContext?x(r,this).index(u)>=0:x.find(r,this,null,[u]).length),o[r]&&o.push(i);o.length&&s.push({elem:u,handlers:o})}return n.length>l&&s.push({elem:this,handlers:n.slice(l)}),s},fix:function(e){if(e[x.expando])return e;var t,n,r,i=e.type,o=e,s=this.fixHooks[i];s||(this.fixHooks[i]=s=tt.test(i)?this.mouseHooks:et.test(i)?this.keyHooks:{}),r=s.props?this.props.concat(s.props):this.props,e=new x.Event(o),t=r.length;while(t--)n=r[t],e[n]=o[n];return e.target||(e.target=o.srcElement||a),3===e.target.nodeType&&(e.target=e.target.parentNode),e.metaKey=!!e.metaKey,s.filter?s.filter(e,o):e},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(e,t){return null==e.which&&(e.which=null!=t.charCode?t.charCode:t.keyCode),e}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(e,n){var r,i,o,s=n.button,l=n.fromElement;return null==e.pageX&&null!=n.clientX&&(i=e.target.ownerDocument||a,o=i.documentElement,r=i.body,e.pageX=n.clientX+(o&&o.scrollLeft||r&&r.scrollLeft||0)-(o&&o.clientLeft||r&&r.clientLeft||0),e.pageY=n.clientY+(o&&o.scrollTop||r&&r.scrollTop||0)-(o&&o.clientTop||r&&r.clientTop||0)),!e.relatedTarget&&l&&(e.relatedTarget=l===e.target?n.toElement:l),e.which||s===t||(e.which=1&s?1:2&s?3:4&s?2:0),e}},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==at()&&this.focus)try{return this.focus(),!1}catch(e){}},delegateType:"focusin"},blur:{trigger:function(){return this===at()&&this.blur?(this.blur(),!1):t},delegateType:"focusout"},click:{trigger:function(){return x.nodeName(this,"input")&&"checkbox"===this.type&&this.click?(this.click(),!1):t},_default:function(e){return x.nodeName(e.target,"a")}},beforeunload:{postDispatch:function(e){e.result!==t&&(e.originalEvent.returnValue=e.result)}}},simulate:function(e,t,n,r){var i=x.extend(new x.Event,n,{type:e,isSimulated:!0,originalEvent:{}});r?x.event.trigger(i,null,t):x.event.dispatch.call(t,i),i.isDefaultPrevented()&&n.preventDefault()}},x.removeEvent=a.removeEventListener?function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n,!1)}:function(e,t,n){var r="on"+t;e.detachEvent&&(typeof e[r]===i&&(e[r]=null),e.detachEvent(r,n))},x.Event=function(e,n){return this instanceof x.Event?(e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||e.returnValue===!1||e.getPreventDefault&&e.getPreventDefault()?it:ot):this.type=e,n&&x.extend(this,n),this.timeStamp=e&&e.timeStamp||x.now(),this[x.expando]=!0,t):new x.Event(e,n)},x.Event.prototype={isDefaultPrevented:ot,isPropagationStopped:ot,isImmediatePropagationStopped:ot,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=it,e&&(e.preventDefault?e.preventDefault():e.returnValue=!1)},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=it,e&&(e.stopPropagation&&e.stopPropagation(),e.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=it,this.stopPropagation()}},x.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(e,t){x.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj;return(!i||i!==r&&!x.contains(r,i))&&(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}}),x.support.submitBubbles||(x.event.special.submit={setup:function(){return x.nodeName(this,"form")?!1:(x.event.add(this,"click._submit keypress._submit",function(e){var n=e.target,r=x.nodeName(n,"input")||x.nodeName(n,"button")?n.form:t;r&&!x._data(r,"submitBubbles")&&(x.event.add(r,"submit._submit",function(e){e._submit_bubble=!0}),x._data(r,"submitBubbles",!0))}),t)},postDispatch:function(e){e._submit_bubble&&(delete e._submit_bubble,this.parentNode&&!e.isTrigger&&x.event.simulate("submit",this.parentNode,e,!0))},teardown:function(){return x.nodeName(this,"form")?!1:(x.event.remove(this,"._submit"),t)}}),x.support.changeBubbles||(x.event.special.change={setup:function(){return Z.test(this.nodeName)?(("checkbox"===this.type||"radio"===this.type)&&(x.event.add(this,"propertychange._change",function(e){"checked"===e.originalEvent.propertyName&&(this._just_changed=!0)}),x.event.add(this,"click._change",function(e){this._just_changed&&!e.isTrigger&&(this._just_changed=!1),x.event.simulate("change",this,e,!0)})),!1):(x.event.add(this,"beforeactivate._change",function(e){var t=e.target;Z.test(t.nodeName)&&!x._data(t,"changeBubbles")&&(x.event.add(t,"change._change",function(e){!this.parentNode||e.isSimulated||e.isTrigger||x.event.simulate("change",this.parentNode,e,!0)}),x._data(t,"changeBubbles",!0))}),t)},handle:function(e){var n=e.target;return this!==n||e.isSimulated||e.isTrigger||"radio"!==n.type&&"checkbox"!==n.type?e.handleObj.handler.apply(this,arguments):t},teardown:function(){return x.event.remove(this,"._change"),!Z.test(this.nodeName)}}),x.support.focusinBubbles||x.each({focus:"focusin",blur:"focusout"},function(e,t){var n=0,r=function(e){x.event.simulate(t,e.target,x.event.fix(e),!0)};x.event.special[t]={setup:function(){0===n++&&a.addEventListener(e,r,!0)},teardown:function(){0===--n&&a.removeEventListener(e,r,!0)}}}),x.fn.extend({on:function(e,n,r,i,o){var a,s;if("object"==typeof e){"string"!=typeof n&&(r=r||n,n=t);for(a in e)this.on(a,n,r,e[a],o);return this}if(null==r&&null==i?(i=n,r=n=t):null==i&&("string"==typeof n?(i=r,r=t):(i=r,r=n,n=t)),i===!1)i=ot;else if(!i)return this;return 1===o&&(s=i,i=function(e){return x().off(e),s.apply(this,arguments)},i.guid=s.guid||(s.guid=x.guid++)),this.each(function(){x.event.add(this,e,i,r,n)})},one:function(e,t,n,r){return this.on(e,t,n,r,1)},off:function(e,n,r){var i,o;if(e&&e.preventDefault&&e.handleObj)return i=e.handleObj,x(e.delegateTarget).off(i.namespace?i.origType+"."+i.namespace:i.origType,i.selector,i.handler),this;if("object"==typeof e){for(o in e)this.off(o,n,e[o]);return this}return(n===!1||"function"==typeof n)&&(r=n,n=t),r===!1&&(r=ot),this.each(function(){x.event.remove(this,e,r,n)})},trigger:function(e,t){return this.each(function(){x.event.trigger(e,t,this)})},triggerHandler:function(e,n){var r=this[0];return r?x.event.trigger(e,n,r,!0):t}});var st=/^.[^:#\[\.,]*$/,lt=/^(?:parents|prev(?:Until|All))/,ut=x.expr.match.needsContext,ct={children:!0,contents:!0,next:!0,prev:!0};x.fn.extend({find:function(e){var t,n=[],r=this,i=r.length;if("string"!=typeof e)return this.pushStack(x(e).filter(function(){for(t=0;i>t;t++)if(x.contains(r[t],this))return!0}));for(t=0;i>t;t++)x.find(e,r[t],n);return n=this.pushStack(i>1?x.unique(n):n),n.selector=this.selector?this.selector+" "+e:e,n},has:function(e){var t,n=x(e,this),r=n.length;return this.filter(function(){for(t=0;r>t;t++)if(x.contains(this,n[t]))return!0})},not:function(e){return this.pushStack(ft(this,e||[],!0))},filter:function(e){return this.pushStack(ft(this,e||[],!1))},is:function(e){return!!ft(this,"string"==typeof e&&ut.test(e)?x(e):e||[],!1).length},closest:function(e,t){var n,r=0,i=this.length,o=[],a=ut.test(e)||"string"!=typeof e?x(e,t||this.context):0;for(;i>r;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(11>n.nodeType&&(a?a.index(n)>-1:1===n.nodeType&&x.find.matchesSelector(n,e))){n=o.push(n);break}return this.pushStack(o.length>1?x.unique(o):o)},index:function(e){return e?"string"==typeof e?x.inArray(this[0],x(e)):x.inArray(e.jquery?e[0]:e,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){var n="string"==typeof e?x(e,t):x.makeArray(e&&e.nodeType?[e]:e),r=x.merge(this.get(),n);return this.pushStack(x.unique(r))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}});function pt(e,t){do e=e[t];while(e&&1!==e.nodeType);return e}x.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return x.dir(e,"parentNode")},parentsUntil:function(e,t,n){return x.dir(e,"parentNode",n)},next:function(e){return pt(e,"nextSibling")},prev:function(e){return pt(e,"previousSibling")},nextAll:function(e){return x.dir(e,"nextSibling")},prevAll:function(e){return x.dir(e,"previousSibling")},nextUntil:function(e,t,n){return x.dir(e,"nextSibling",n)},prevUntil:function(e,t,n){return x.dir(e,"previousSibling",n)},siblings:function(e){return x.sibling((e.parentNode||{}).firstChild,e)},children:function(e){return x.sibling(e.firstChild)},contents:function(e){return x.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:x.merge([],e.childNodes)}},function(e,t){x.fn[e]=function(n,r){var i=x.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=x.filter(r,i)),this.length>1&&(ct[e]||(i=x.unique(i)),lt.test(e)&&(i=i.reverse())),this.pushStack(i)}}),x.extend({filter:function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?x.find.matchesSelector(r,e)?[r]:[]:x.find.matches(e,x.grep(t,function(e){return 1===e.nodeType}))},dir:function(e,n,r){var i=[],o=e[n];while(o&&9!==o.nodeType&&(r===t||1!==o.nodeType||!x(o).is(r)))1===o.nodeType&&i.push(o),o=o[n];return i},sibling:function(e,t){var n=[];for(;e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n}});function ft(e,t,n){if(x.isFunction(t))return x.grep(e,function(e,r){return!!t.call(e,r,e)!==n});if(t.nodeType)return x.grep(e,function(e){return e===t!==n});if("string"==typeof t){if(st.test(t))return x.filter(t,e,n);t=x.filter(t,e)}return x.grep(e,function(e){return x.inArray(e,t)>=0!==n})}function dt(e){var t=ht.split("|"),n=e.createDocumentFragment();if(n.createElement)while(t.length)n.createElement(t.pop());return n}var ht="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",gt=/ jQuery\d+="(?:null|\d+)"/g,mt=RegExp("<(?:"+ht+")[\\s/>]","i"),yt=/^\s+/,vt=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bt=/<([\w:]+)/,xt=/<tbody/i,wt=/<|&#?\w+;/,Tt=/<(?:script|style|link)/i,Ct=/^(?:checkbox|radio)$/i,Nt=/checked\s*(?:[^=]|=\s*.checked.)/i,kt=/^$|\/(?:java|ecma)script/i,Et=/^true\/(.*)/,St=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,At={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],area:[1,"<map>","</map>"],param:[1,"<object>","</object>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:x.support.htmlSerialize?[0,"",""]:[1,"X<div>","</div>"]},jt=dt(a),Dt=jt.appendChild(a.createElement("div"));At.optgroup=At.option,At.tbody=At.tfoot=At.colgroup=At.caption=At.thead,At.th=At.td,x.fn.extend({text:function(e){return x.access(this,function(e){return e===t?x.text(this):this.empty().append((this[0]&&this[0].ownerDocument||a).createTextNode(e))},null,e,arguments.length)},append:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Lt(this,e);t.appendChild(e)}})},prepend:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Lt(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},remove:function(e,t){var n,r=e?x.filter(e,this):this,i=0;for(;null!=(n=r[i]);i++)t||1!==n.nodeType||x.cleanData(Ft(n)),n.parentNode&&(t&&x.contains(n.ownerDocument,n)&&_t(Ft(n,"script")),n.parentNode.removeChild(n));return this},empty:function(){var e,t=0;for(;null!=(e=this[t]);t++){1===e.nodeType&&x.cleanData(Ft(e,!1));while(e.firstChild)e.removeChild(e.firstChild);e.options&&x.nodeName(e,"select")&&(e.options.length=0)}return this},clone:function(e,t){return e=null==e?!1:e,t=null==t?e:t,this.map(function(){return x.clone(this,e,t)})},html:function(e){return x.access(this,function(e){var n=this[0]||{},r=0,i=this.length;if(e===t)return 1===n.nodeType?n.innerHTML.replace(gt,""):t;if(!("string"!=typeof e||Tt.test(e)||!x.support.htmlSerialize&&mt.test(e)||!x.support.leadingWhitespace&&yt.test(e)||At[(bt.exec(e)||["",""])[1].toLowerCase()])){e=e.replace(vt,"<$1></$2>");try{for(;i>r;r++)n=this[r]||{},1===n.nodeType&&(x.cleanData(Ft(n,!1)),n.innerHTML=e);n=0}catch(o){}}n&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var e=x.map(this,function(e){return[e.nextSibling,e.parentNode]}),t=0;return this.domManip(arguments,function(n){var r=e[t++],i=e[t++];i&&(r&&r.parentNode!==i&&(r=this.nextSibling),x(this).remove(),i.insertBefore(n,r))},!0),t?this:this.remove()},detach:function(e){return this.remove(e,!0)},domManip:function(e,t,n){e=d.apply([],e);var r,i,o,a,s,l,u=0,c=this.length,p=this,f=c-1,h=e[0],g=x.isFunction(h);if(g||!(1>=c||"string"!=typeof h||x.support.checkClone)&&Nt.test(h))return this.each(function(r){var i=p.eq(r);g&&(e[0]=h.call(this,r,i.html())),i.domManip(e,t,n)});if(c&&(l=x.buildFragment(e,this[0].ownerDocument,!1,!n&&this),r=l.firstChild,1===l.childNodes.length&&(l=r),r)){for(a=x.map(Ft(l,"script"),Ht),o=a.length;c>u;u++)i=l,u!==f&&(i=x.clone(i,!0,!0),o&&x.merge(a,Ft(i,"script"))),t.call(this[u],i,u);if(o)for(s=a[a.length-1].ownerDocument,x.map(a,qt),u=0;o>u;u++)i=a[u],kt.test(i.type||"")&&!x._data(i,"globalEval")&&x.contains(s,i)&&(i.src?x._evalUrl(i.src):x.globalEval((i.text||i.textContent||i.innerHTML||"").replace(St,"")));l=r=null}return this}});function Lt(e,t){return x.nodeName(e,"table")&&x.nodeName(1===t.nodeType?t:t.firstChild,"tr")?e.getElementsByTagName("tbody")[0]||e.appendChild(e.ownerDocument.createElement("tbody")):e}function Ht(e){return e.type=(null!==x.find.attr(e,"type"))+"/"+e.type,e}function qt(e){var t=Et.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function _t(e,t){var n,r=0;for(;null!=(n=e[r]);r++)x._data(n,"globalEval",!t||x._data(t[r],"globalEval"))}function Mt(e,t){if(1===t.nodeType&&x.hasData(e)){var n,r,i,o=x._data(e),a=x._data(t,o),s=o.events;if(s){delete a.handle,a.events={};for(n in s)for(r=0,i=s[n].length;i>r;r++)x.event.add(t,n,s[n][r])}a.data&&(a.data=x.extend({},a.data))}}function Ot(e,t){var n,r,i;if(1===t.nodeType){if(n=t.nodeName.toLowerCase(),!x.support.noCloneEvent&&t[x.expando]){i=x._data(t);for(r in i.events)x.removeEvent(t,r,i.handle);t.removeAttribute(x.expando)}"script"===n&&t.text!==e.text?(Ht(t).text=e.text,qt(t)):"object"===n?(t.parentNode&&(t.outerHTML=e.outerHTML),x.support.html5Clone&&e.innerHTML&&!x.trim(t.innerHTML)&&(t.innerHTML=e.innerHTML)):"input"===n&&Ct.test(e.type)?(t.defaultChecked=t.checked=e.checked,t.value!==e.value&&(t.value=e.value)):"option"===n?t.defaultSelected=t.selected=e.defaultSelected:("input"===n||"textarea"===n)&&(t.defaultValue=e.defaultValue)}}x.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){x.fn[e]=function(e){var n,r=0,i=[],o=x(e),a=o.length-1;for(;a>=r;r++)n=r===a?this:this.clone(!0),x(o[r])[t](n),h.apply(i,n.get());return this.pushStack(i)}});function Ft(e,n){var r,o,a=0,s=typeof e.getElementsByTagName!==i?e.getElementsByTagName(n||"*"):typeof e.querySelectorAll!==i?e.querySelectorAll(n||"*"):t;if(!s)for(s=[],r=e.childNodes||e;null!=(o=r[a]);a++)!n||x.nodeName(o,n)?s.push(o):x.merge(s,Ft(o,n));return n===t||n&&x.nodeName(e,n)?x.merge([e],s):s}function Bt(e){Ct.test(e.type)&&(e.defaultChecked=e.checked)}x.extend({clone:function(e,t,n){var r,i,o,a,s,l=x.contains(e.ownerDocument,e);if(x.support.html5Clone||x.isXMLDoc(e)||!mt.test("<"+e.nodeName+">")?o=e.cloneNode(!0):(Dt.innerHTML=e.outerHTML,Dt.removeChild(o=Dt.firstChild)),!(x.support.noCloneEvent&&x.support.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||x.isXMLDoc(e)))for(r=Ft(o),s=Ft(e),a=0;null!=(i=s[a]);++a)r[a]&&Ot(i,r[a]);if(t)if(n)for(s=s||Ft(e),r=r||Ft(o),a=0;null!=(i=s[a]);a++)Mt(i,r[a]);else Mt(e,o);return r=Ft(o,"script"),r.length>0&&_t(r,!l&&Ft(e,"script")),r=s=i=null,o},buildFragment:function(e,t,n,r){var i,o,a,s,l,u,c,p=e.length,f=dt(t),d=[],h=0;for(;p>h;h++)if(o=e[h],o||0===o)if("object"===x.type(o))x.merge(d,o.nodeType?[o]:o);else if(wt.test(o)){s=s||f.appendChild(t.createElement("div")),l=(bt.exec(o)||["",""])[1].toLowerCase(),c=At[l]||At._default,s.innerHTML=c[1]+o.replace(vt,"<$1></$2>")+c[2],i=c[0];while(i--)s=s.lastChild;if(!x.support.leadingWhitespace&&yt.test(o)&&d.push(t.createTextNode(yt.exec(o)[0])),!x.support.tbody){o="table"!==l||xt.test(o)?"<table>"!==c[1]||xt.test(o)?0:s:s.firstChild,i=o&&o.childNodes.length;while(i--)x.nodeName(u=o.childNodes[i],"tbody")&&!u.childNodes.length&&o.removeChild(u)}x.merge(d,s.childNodes),s.textContent="";while(s.firstChild)s.removeChild(s.firstChild);s=f.lastChild}else d.push(t.createTextNode(o));s&&f.removeChild(s),x.support.appendChecked||x.grep(Ft(d,"input"),Bt),h=0;while(o=d[h++])if((!r||-1===x.inArray(o,r))&&(a=x.contains(o.ownerDocument,o),s=Ft(f.appendChild(o),"script"),a&&_t(s),n)){i=0;while(o=s[i++])kt.test(o.type||"")&&n.push(o)}return s=null,f},cleanData:function(e,t){var n,r,o,a,s=0,l=x.expando,u=x.cache,c=x.support.deleteExpando,f=x.event.special;for(;null!=(n=e[s]);s++)if((t||x.acceptData(n))&&(o=n[l],a=o&&u[o])){if(a.events)for(r in a.events)f[r]?x.event.remove(n,r):x.removeEvent(n,r,a.handle); u[o]&&(delete u[o],c?delete n[l]:typeof n.removeAttribute!==i?n.removeAttribute(l):n[l]=null,p.push(o))}},_evalUrl:function(e){return x.ajax({url:e,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})}}),x.fn.extend({wrapAll:function(e){if(x.isFunction(e))return this.each(function(t){x(this).wrapAll(e.call(this,t))});if(this[0]){var t=x(e,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstChild&&1===e.firstChild.nodeType)e=e.firstChild;return e}).append(this)}return this},wrapInner:function(e){return x.isFunction(e)?this.each(function(t){x(this).wrapInner(e.call(this,t))}):this.each(function(){var t=x(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=x.isFunction(e);return this.each(function(n){x(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){x.nodeName(this,"body")||x(this).replaceWith(this.childNodes)}).end()}});var Pt,Rt,Wt,$t=/alpha\([^)]*\)/i,It=/opacity\s*=\s*([^)]*)/,zt=/^(top|right|bottom|left)$/,Xt=/^(none|table(?!-c[ea]).+)/,Ut=/^margin/,Vt=RegExp("^("+w+")(.*)$","i"),Yt=RegExp("^("+w+")(?!px)[a-z%]+$","i"),Jt=RegExp("^([+-])=("+w+")","i"),Gt={BODY:"block"},Qt={position:"absolute",visibility:"hidden",display:"block"},Kt={letterSpacing:0,fontWeight:400},Zt=["Top","Right","Bottom","Left"],en=["Webkit","O","Moz","ms"];function tn(e,t){if(t in e)return t;var n=t.charAt(0).toUpperCase()+t.slice(1),r=t,i=en.length;while(i--)if(t=en[i]+n,t in e)return t;return r}function nn(e,t){return e=t||e,"none"===x.css(e,"display")||!x.contains(e.ownerDocument,e)}function rn(e,t){var n,r,i,o=[],a=0,s=e.length;for(;s>a;a++)r=e[a],r.style&&(o[a]=x._data(r,"olddisplay"),n=r.style.display,t?(o[a]||"none"!==n||(r.style.display=""),""===r.style.display&&nn(r)&&(o[a]=x._data(r,"olddisplay",ln(r.nodeName)))):o[a]||(i=nn(r),(n&&"none"!==n||!i)&&x._data(r,"olddisplay",i?n:x.css(r,"display"))));for(a=0;s>a;a++)r=e[a],r.style&&(t&&"none"!==r.style.display&&""!==r.style.display||(r.style.display=t?o[a]||"":"none"));return e}x.fn.extend({css:function(e,n){return x.access(this,function(e,n,r){var i,o,a={},s=0;if(x.isArray(n)){for(o=Rt(e),i=n.length;i>s;s++)a[n[s]]=x.css(e,n[s],!1,o);return a}return r!==t?x.style(e,n,r):x.css(e,n)},e,n,arguments.length>1)},show:function(){return rn(this,!0)},hide:function(){return rn(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){nn(this)?x(this).show():x(this).hide()})}}),x.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Wt(e,"opacity");return""===n?"1":n}}}},cssNumber:{columnCount:!0,fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":x.support.cssFloat?"cssFloat":"styleFloat"},style:function(e,n,r,i){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var o,a,s,l=x.camelCase(n),u=e.style;if(n=x.cssProps[l]||(x.cssProps[l]=tn(u,l)),s=x.cssHooks[n]||x.cssHooks[l],r===t)return s&&"get"in s&&(o=s.get(e,!1,i))!==t?o:u[n];if(a=typeof r,"string"===a&&(o=Jt.exec(r))&&(r=(o[1]+1)*o[2]+parseFloat(x.css(e,n)),a="number"),!(null==r||"number"===a&&isNaN(r)||("number"!==a||x.cssNumber[l]||(r+="px"),x.support.clearCloneStyle||""!==r||0!==n.indexOf("background")||(u[n]="inherit"),s&&"set"in s&&(r=s.set(e,r,i))===t)))try{u[n]=r}catch(c){}}},css:function(e,n,r,i){var o,a,s,l=x.camelCase(n);return n=x.cssProps[l]||(x.cssProps[l]=tn(e.style,l)),s=x.cssHooks[n]||x.cssHooks[l],s&&"get"in s&&(a=s.get(e,!0,r)),a===t&&(a=Wt(e,n,i)),"normal"===a&&n in Kt&&(a=Kt[n]),""===r||r?(o=parseFloat(a),r===!0||x.isNumeric(o)?o||0:a):a}}),e.getComputedStyle?(Rt=function(t){return e.getComputedStyle(t,null)},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),l=s?s.getPropertyValue(n)||s[n]:t,u=e.style;return s&&(""!==l||x.contains(e.ownerDocument,e)||(l=x.style(e,n)),Yt.test(l)&&Ut.test(n)&&(i=u.width,o=u.minWidth,a=u.maxWidth,u.minWidth=u.maxWidth=u.width=l,l=s.width,u.width=i,u.minWidth=o,u.maxWidth=a)),l}):a.documentElement.currentStyle&&(Rt=function(e){return e.currentStyle},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),l=s?s[n]:t,u=e.style;return null==l&&u&&u[n]&&(l=u[n]),Yt.test(l)&&!zt.test(n)&&(i=u.left,o=e.runtimeStyle,a=o&&o.left,a&&(o.left=e.currentStyle.left),u.left="fontSize"===n?"1em":l,l=u.pixelLeft+"px",u.left=i,a&&(o.left=a)),""===l?"auto":l});function on(e,t,n){var r=Vt.exec(t);return r?Math.max(0,r[1]-(n||0))+(r[2]||"px"):t}function an(e,t,n,r,i){var o=n===(r?"border":"content")?4:"width"===t?1:0,a=0;for(;4>o;o+=2)"margin"===n&&(a+=x.css(e,n+Zt[o],!0,i)),r?("content"===n&&(a-=x.css(e,"padding"+Zt[o],!0,i)),"margin"!==n&&(a-=x.css(e,"border"+Zt[o]+"Width",!0,i))):(a+=x.css(e,"padding"+Zt[o],!0,i),"padding"!==n&&(a+=x.css(e,"border"+Zt[o]+"Width",!0,i)));return a}function sn(e,t,n){var r=!0,i="width"===t?e.offsetWidth:e.offsetHeight,o=Rt(e),a=x.support.boxSizing&&"border-box"===x.css(e,"boxSizing",!1,o);if(0>=i||null==i){if(i=Wt(e,t,o),(0>i||null==i)&&(i=e.style[t]),Yt.test(i))return i;r=a&&(x.support.boxSizingReliable||i===e.style[t]),i=parseFloat(i)||0}return i+an(e,t,n||(a?"border":"content"),r,o)+"px"}function ln(e){var t=a,n=Gt[e];return n||(n=un(e,t),"none"!==n&&n||(Pt=(Pt||x("<iframe frameborder='0' width='0' height='0'/>").css("cssText","display:block !important")).appendTo(t.documentElement),t=(Pt[0].contentWindow||Pt[0].contentDocument).document,t.write("<!doctype html><html><body>"),t.close(),n=un(e,t),Pt.detach()),Gt[e]=n),n}function un(e,t){var n=x(t.createElement(e)).appendTo(t.body),r=x.css(n[0],"display");return n.remove(),r}x.each(["height","width"],function(e,n){x.cssHooks[n]={get:function(e,r,i){return r?0===e.offsetWidth&&Xt.test(x.css(e,"display"))?x.swap(e,Qt,function(){return sn(e,n,i)}):sn(e,n,i):t},set:function(e,t,r){var i=r&&Rt(e);return on(e,t,r?an(e,n,r,x.support.boxSizing&&"border-box"===x.css(e,"boxSizing",!1,i),i):0)}}}),x.support.opacity||(x.cssHooks.opacity={get:function(e,t){return It.test((t&&e.currentStyle?e.currentStyle.filter:e.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":t?"1":""},set:function(e,t){var n=e.style,r=e.currentStyle,i=x.isNumeric(t)?"alpha(opacity="+100*t+")":"",o=r&&r.filter||n.filter||"";n.zoom=1,(t>=1||""===t)&&""===x.trim(o.replace($t,""))&&n.removeAttribute&&(n.removeAttribute("filter"),""===t||r&&!r.filter)||(n.filter=$t.test(o)?o.replace($t,i):o+" "+i)}}),x(function(){x.support.reliableMarginRight||(x.cssHooks.marginRight={get:function(e,n){return n?x.swap(e,{display:"inline-block"},Wt,[e,"marginRight"]):t}}),!x.support.pixelPosition&&x.fn.position&&x.each(["top","left"],function(e,n){x.cssHooks[n]={get:function(e,r){return r?(r=Wt(e,n),Yt.test(r)?x(e).position()[n]+"px":r):t}}})}),x.expr&&x.expr.filters&&(x.expr.filters.hidden=function(e){return 0>=e.offsetWidth&&0>=e.offsetHeight||!x.support.reliableHiddenOffsets&&"none"===(e.style&&e.style.display||x.css(e,"display"))},x.expr.filters.visible=function(e){return!x.expr.filters.hidden(e)}),x.each({margin:"",padding:"",border:"Width"},function(e,t){x.cssHooks[e+t]={expand:function(n){var r=0,i={},o="string"==typeof n?n.split(" "):[n];for(;4>r;r++)i[e+Zt[r]+t]=o[r]||o[r-2]||o[0];return i}},Ut.test(e)||(x.cssHooks[e+t].set=on)});var cn=/%20/g,pn=/\[\]$/,fn=/\r?\n/g,dn=/^(?:submit|button|image|reset|file)$/i,hn=/^(?:input|select|textarea|keygen)/i;x.fn.extend({serialize:function(){return x.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=x.prop(this,"elements");return e?x.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!x(this).is(":disabled")&&hn.test(this.nodeName)&&!dn.test(e)&&(this.checked||!Ct.test(e))}).map(function(e,t){var n=x(this).val();return null==n?null:x.isArray(n)?x.map(n,function(e){return{name:t.name,value:e.replace(fn,"\r\n")}}):{name:t.name,value:n.replace(fn,"\r\n")}}).get()}}),x.param=function(e,n){var r,i=[],o=function(e,t){t=x.isFunction(t)?t():null==t?"":t,i[i.length]=encodeURIComponent(e)+"="+encodeURIComponent(t)};if(n===t&&(n=x.ajaxSettings&&x.ajaxSettings.traditional),x.isArray(e)||e.jquery&&!x.isPlainObject(e))x.each(e,function(){o(this.name,this.value)});else for(r in e)gn(r,e[r],n,o);return i.join("&").replace(cn,"+")};function gn(e,t,n,r){var i;if(x.isArray(t))x.each(t,function(t,i){n||pn.test(e)?r(e,i):gn(e+"["+("object"==typeof i?t:"")+"]",i,n,r)});else if(n||"object"!==x.type(t))r(e,t);else for(i in t)gn(e+"["+i+"]",t[i],n,r)}x.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(e,t){x.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}),x.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)},bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)}});var mn,yn,vn=x.now(),bn=/\?/,xn=/#.*$/,wn=/([?&])_=[^&]*/,Tn=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,Cn=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Nn=/^(?:GET|HEAD)$/,kn=/^\/\//,En=/^([\w.+-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,Sn=x.fn.load,An={},jn={},Dn="*/".concat("*");try{yn=o.href}catch(Ln){yn=a.createElement("a"),yn.href="",yn=yn.href}mn=En.exec(yn.toLowerCase())||[];function Hn(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(T)||[];if(x.isFunction(n))while(r=o[i++])"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function qn(e,n,r,i){var o={},a=e===jn;function s(l){var u;return o[l]=!0,x.each(e[l]||[],function(e,l){var c=l(n,r,i);return"string"!=typeof c||a||o[c]?a?!(u=c):t:(n.dataTypes.unshift(c),s(c),!1)}),u}return s(n.dataTypes[0])||!o["*"]&&s("*")}function _n(e,n){var r,i,o=x.ajaxSettings.flatOptions||{};for(i in n)n[i]!==t&&((o[i]?e:r||(r={}))[i]=n[i]);return r&&x.extend(!0,e,r),e}x.fn.load=function(e,n,r){if("string"!=typeof e&&Sn)return Sn.apply(this,arguments);var i,o,a,s=this,l=e.indexOf(" ");return l>=0&&(i=e.slice(l,e.length),e=e.slice(0,l)),x.isFunction(n)?(r=n,n=t):n&&"object"==typeof n&&(a="POST"),s.length>0&&x.ajax({url:e,type:a,dataType:"html",data:n}).done(function(e){o=arguments,s.html(i?x("<div>").append(x.parseHTML(e)).find(i):e)}).complete(r&&function(e,t){s.each(r,o||[e.responseText,t,e])}),this},x.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){x.fn[t]=function(e){return this.on(t,e)}}),x.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:yn,type:"GET",isLocal:Cn.test(mn[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Dn,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":x.parseJSON,"text xml":x.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?_n(_n(e,x.ajaxSettings),t):_n(x.ajaxSettings,e)},ajaxPrefilter:Hn(An),ajaxTransport:Hn(jn),ajax:function(e,n){"object"==typeof e&&(n=e,e=t),n=n||{};var r,i,o,a,s,l,u,c,p=x.ajaxSetup({},n),f=p.context||p,d=p.context&&(f.nodeType||f.jquery)?x(f):x.event,h=x.Deferred(),g=x.Callbacks("once memory"),m=p.statusCode||{},y={},v={},b=0,w="canceled",C={readyState:0,getResponseHeader:function(e){var t;if(2===b){if(!c){c={};while(t=Tn.exec(a))c[t[1].toLowerCase()]=t[2]}t=c[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return 2===b?a:null},setRequestHeader:function(e,t){var n=e.toLowerCase();return b||(e=v[n]=v[n]||e,y[e]=t),this},overrideMimeType:function(e){return b||(p.mimeType=e),this},statusCode:function(e){var t;if(e)if(2>b)for(t in e)m[t]=[m[t],e[t]];else C.always(e[C.status]);return this},abort:function(e){var t=e||w;return u&&u.abort(t),k(0,t),this}};if(h.promise(C).complete=g.add,C.success=C.done,C.error=C.fail,p.url=((e||p.url||yn)+"").replace(xn,"").replace(kn,mn[1]+"//"),p.type=n.method||n.type||p.method||p.type,p.dataTypes=x.trim(p.dataType||"*").toLowerCase().match(T)||[""],null==p.crossDomain&&(r=En.exec(p.url.toLowerCase()),p.crossDomain=!(!r||r[1]===mn[1]&&r[2]===mn[2]&&(r[3]||("http:"===r[1]?"80":"443"))===(mn[3]||("http:"===mn[1]?"80":"443")))),p.data&&p.processData&&"string"!=typeof p.data&&(p.data=x.param(p.data,p.traditional)),qn(An,p,n,C),2===b)return C;l=p.global,l&&0===x.active++&&x.event.trigger("ajaxStart"),p.type=p.type.toUpperCase(),p.hasContent=!Nn.test(p.type),o=p.url,p.hasContent||(p.data&&(o=p.url+=(bn.test(o)?"&":"?")+p.data,delete p.data),p.cache===!1&&(p.url=wn.test(o)?o.replace(wn,"$1_="+vn++):o+(bn.test(o)?"&":"?")+"_="+vn++)),p.ifModified&&(x.lastModified[o]&&C.setRequestHeader("If-Modified-Since",x.lastModified[o]),x.etag[o]&&C.setRequestHeader("If-None-Match",x.etag[o])),(p.data&&p.hasContent&&p.contentType!==!1||n.contentType)&&C.setRequestHeader("Content-Type",p.contentType),C.setRequestHeader("Accept",p.dataTypes[0]&&p.accepts[p.dataTypes[0]]?p.accepts[p.dataTypes[0]]+("*"!==p.dataTypes[0]?", "+Dn+"; q=0.01":""):p.accepts["*"]);for(i in p.headers)C.setRequestHeader(i,p.headers[i]);if(p.beforeSend&&(p.beforeSend.call(f,C,p)===!1||2===b))return C.abort();w="abort";for(i in{success:1,error:1,complete:1})C[i](p[i]);if(u=qn(jn,p,n,C)){C.readyState=1,l&&d.trigger("ajaxSend",[C,p]),p.async&&p.timeout>0&&(s=setTimeout(function(){C.abort("timeout")},p.timeout));try{b=1,u.send(y,k)}catch(N){if(!(2>b))throw N;k(-1,N)}}else k(-1,"No Transport");function k(e,n,r,i){var c,y,v,w,T,N=n;2!==b&&(b=2,s&&clearTimeout(s),u=t,a=i||"",C.readyState=e>0?4:0,c=e>=200&&300>e||304===e,r&&(w=Mn(p,C,r)),w=On(p,w,C,c),c?(p.ifModified&&(T=C.getResponseHeader("Last-Modified"),T&&(x.lastModified[o]=T),T=C.getResponseHeader("etag"),T&&(x.etag[o]=T)),204===e||"HEAD"===p.type?N="nocontent":304===e?N="notmodified":(N=w.state,y=w.data,v=w.error,c=!v)):(v=N,(e||!N)&&(N="error",0>e&&(e=0))),C.status=e,C.statusText=(n||N)+"",c?h.resolveWith(f,[y,N,C]):h.rejectWith(f,[C,N,v]),C.statusCode(m),m=t,l&&d.trigger(c?"ajaxSuccess":"ajaxError",[C,p,c?y:v]),g.fireWith(f,[C,N]),l&&(d.trigger("ajaxComplete",[C,p]),--x.active||x.event.trigger("ajaxStop")))}return C},getJSON:function(e,t,n){return x.get(e,t,n,"json")},getScript:function(e,n){return x.get(e,t,n,"script")}}),x.each(["get","post"],function(e,n){x[n]=function(e,r,i,o){return x.isFunction(r)&&(o=o||i,i=r,r=t),x.ajax({url:e,type:n,dataType:o,data:r,success:i})}});function Mn(e,n,r){var i,o,a,s,l=e.contents,u=e.dataTypes;while("*"===u[0])u.shift(),o===t&&(o=e.mimeType||n.getResponseHeader("Content-Type"));if(o)for(s in l)if(l[s]&&l[s].test(o)){u.unshift(s);break}if(u[0]in r)a=u[0];else{for(s in r){if(!u[0]||e.converters[s+" "+u[0]]){a=s;break}i||(i=s)}a=a||i}return a?(a!==u[0]&&u.unshift(a),r[a]):t}function On(e,t,n,r){var i,o,a,s,l,u={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)u[a.toLowerCase()]=e.converters[a];o=c.shift();while(o)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!l&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),l=o,o=c.shift())if("*"===o)o=l;else if("*"!==l&&l!==o){if(a=u[l+" "+o]||u["* "+o],!a)for(i in u)if(s=i.split(" "),s[1]===o&&(a=u[l+" "+s[0]]||u["* "+s[0]])){a===!0?a=u[i]:u[i]!==!0&&(o=s[0],c.unshift(s[1]));break}if(a!==!0)if(a&&e["throws"])t=a(t);else try{t=a(t)}catch(p){return{state:"parsererror",error:a?p:"No conversion from "+l+" to "+o}}}return{state:"success",data:t}}x.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(e){return x.globalEval(e),e}}}),x.ajaxPrefilter("script",function(e){e.cache===t&&(e.cache=!1),e.crossDomain&&(e.type="GET",e.global=!1)}),x.ajaxTransport("script",function(e){if(e.crossDomain){var n,r=a.head||x("head")[0]||a.documentElement;return{send:function(t,i){n=a.createElement("script"),n.async=!0,e.scriptCharset&&(n.charset=e.scriptCharset),n.src=e.url,n.onload=n.onreadystatechange=function(e,t){(t||!n.readyState||/loaded|complete/.test(n.readyState))&&(n.onload=n.onreadystatechange=null,n.parentNode&&n.parentNode.removeChild(n),n=null,t||i(200,"success"))},r.insertBefore(n,r.firstChild)},abort:function(){n&&n.onload(t,!0)}}}});var Fn=[],Bn=/(=)\?(?=&|$)|\?\?/;x.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Fn.pop()||x.expando+"_"+vn++;return this[e]=!0,e}}),x.ajaxPrefilter("json jsonp",function(n,r,i){var o,a,s,l=n.jsonp!==!1&&(Bn.test(n.url)?"url":"string"==typeof n.data&&!(n.contentType||"").indexOf("application/x-www-form-urlencoded")&&Bn.test(n.data)&&"data");return l||"jsonp"===n.dataTypes[0]?(o=n.jsonpCallback=x.isFunction(n.jsonpCallback)?n.jsonpCallback():n.jsonpCallback,l?n[l]=n[l].replace(Bn,"$1"+o):n.jsonp!==!1&&(n.url+=(bn.test(n.url)?"&":"?")+n.jsonp+"="+o),n.converters["script json"]=function(){return s||x.error(o+" was not called"),s[0]},n.dataTypes[0]="json",a=e[o],e[o]=function(){s=arguments},i.always(function(){e[o]=a,n[o]&&(n.jsonpCallback=r.jsonpCallback,Fn.push(o)),s&&x.isFunction(a)&&a(s[0]),s=a=t}),"script"):t});var Pn,Rn,Wn=0,$n=e.ActiveXObject&&function(){var e;for(e in Pn)Pn[e](t,!0)};function In(){try{return new e.XMLHttpRequest}catch(t){}}function zn(){try{return new e.ActiveXObject("Microsoft.XMLHTTP")}catch(t){}}x.ajaxSettings.xhr=e.ActiveXObject?function(){return!this.isLocal&&In()||zn()}:In,Rn=x.ajaxSettings.xhr(),x.support.cors=!!Rn&&"withCredentials"in Rn,Rn=x.support.ajax=!!Rn,Rn&&x.ajaxTransport(function(n){if(!n.crossDomain||x.support.cors){var r;return{send:function(i,o){var a,s,l=n.xhr();if(n.username?l.open(n.type,n.url,n.async,n.username,n.password):l.open(n.type,n.url,n.async),n.xhrFields)for(s in n.xhrFields)l[s]=n.xhrFields[s];n.mimeType&&l.overrideMimeType&&l.overrideMimeType(n.mimeType),n.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest");try{for(s in i)l.setRequestHeader(s,i[s])}catch(u){}l.send(n.hasContent&&n.data||null),r=function(e,i){var s,u,c,p;try{if(r&&(i||4===l.readyState))if(r=t,a&&(l.onreadystatechange=x.noop,$n&&delete Pn[a]),i)4!==l.readyState&&l.abort();else{p={},s=l.status,u=l.getAllResponseHeaders(),"string"==typeof l.responseText&&(p.text=l.responseText);try{c=l.statusText}catch(f){c=""}s||!n.isLocal||n.crossDomain?1223===s&&(s=204):s=p.text?200:404}}catch(d){i||o(-1,d)}p&&o(s,c,p,u)},n.async?4===l.readyState?setTimeout(r):(a=++Wn,$n&&(Pn||(Pn={},x(e).unload($n)),Pn[a]=r),l.onreadystatechange=r):r()},abort:function(){r&&r(t,!0)}}}});var Xn,Un,Vn=/^(?:toggle|show|hide)$/,Yn=RegExp("^(?:([+-])=|)("+w+")([a-z%]*)$","i"),Jn=/queueHooks$/,Gn=[nr],Qn={"*":[function(e,t){var n=this.createTween(e,t),r=n.cur(),i=Yn.exec(t),o=i&&i[3]||(x.cssNumber[e]?"":"px"),a=(x.cssNumber[e]||"px"!==o&&+r)&&Yn.exec(x.css(n.elem,e)),s=1,l=20;if(a&&a[3]!==o){o=o||a[3],i=i||[],a=+r||1;do s=s||".5",a/=s,x.style(n.elem,e,a+o);while(s!==(s=n.cur()/r)&&1!==s&&--l)}return i&&(a=n.start=+a||+r||0,n.unit=o,n.end=i[1]?a+(i[1]+1)*i[2]:+i[2]),n}]};function Kn(){return setTimeout(function(){Xn=t}),Xn=x.now()}function Zn(e,t,n){var r,i=(Qn[t]||[]).concat(Qn["*"]),o=0,a=i.length;for(;a>o;o++)if(r=i[o].call(n,t,e))return r}function er(e,t,n){var r,i,o=0,a=Gn.length,s=x.Deferred().always(function(){delete l.elem}),l=function(){if(i)return!1;var t=Xn||Kn(),n=Math.max(0,u.startTime+u.duration-t),r=n/u.duration||0,o=1-r,a=0,l=u.tweens.length;for(;l>a;a++)u.tweens[a].run(o);return s.notifyWith(e,[u,o,n]),1>o&&l?n:(s.resolveWith(e,[u]),!1)},u=s.promise({elem:e,props:x.extend({},t),opts:x.extend(!0,{specialEasing:{}},n),originalProperties:t,originalOptions:n,startTime:Xn||Kn(),duration:n.duration,tweens:[],createTween:function(t,n){var r=x.Tween(e,u.opts,t,n,u.opts.specialEasing[t]||u.opts.easing);return u.tweens.push(r),r},stop:function(t){var n=0,r=t?u.tweens.length:0;if(i)return this;for(i=!0;r>n;n++)u.tweens[n].run(1);return t?s.resolveWith(e,[u,t]):s.rejectWith(e,[u,t]),this}}),c=u.props;for(tr(c,u.opts.specialEasing);a>o;o++)if(r=Gn[o].call(u,e,c,u.opts))return r;return x.map(c,Zn,u),x.isFunction(u.opts.start)&&u.opts.start.call(e,u),x.fx.timer(x.extend(l,{elem:e,anim:u,queue:u.opts.queue})),u.progress(u.opts.progress).done(u.opts.done,u.opts.complete).fail(u.opts.fail).always(u.opts.always)}function tr(e,t){var n,r,i,o,a;for(n in e)if(r=x.camelCase(n),i=t[r],o=e[n],x.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),a=x.cssHooks[r],a&&"expand"in a){o=a.expand(o),delete e[r];for(n in o)n in e||(e[n]=o[n],t[n]=i)}else t[r]=i}x.Animation=x.extend(er,{tweener:function(e,t){x.isFunction(e)?(t=e,e=["*"]):e=e.split(" ");var n,r=0,i=e.length;for(;i>r;r++)n=e[r],Qn[n]=Qn[n]||[],Qn[n].unshift(t)},prefilter:function(e,t){t?Gn.unshift(e):Gn.push(e)}});function nr(e,t,n){var r,i,o,a,s,l,u=this,c={},p=e.style,f=e.nodeType&&nn(e),d=x._data(e,"fxshow");n.queue||(s=x._queueHooks(e,"fx"),null==s.unqueued&&(s.unqueued=0,l=s.empty.fire,s.empty.fire=function(){s.unqueued||l()}),s.unqueued++,u.always(function(){u.always(function(){s.unqueued--,x.queue(e,"fx").length||s.empty.fire()})})),1===e.nodeType&&("height"in t||"width"in t)&&(n.overflow=[p.overflow,p.overflowX,p.overflowY],"inline"===x.css(e,"display")&&"none"===x.css(e,"float")&&(x.support.inlineBlockNeedsLayout&&"inline"!==ln(e.nodeName)?p.zoom=1:p.display="inline-block")),n.overflow&&(p.overflow="hidden",x.support.shrinkWrapBlocks||u.always(function(){p.overflow=n.overflow[0],p.overflowX=n.overflow[1],p.overflowY=n.overflow[2]}));for(r in t)if(i=t[r],Vn.exec(i)){if(delete t[r],o=o||"toggle"===i,i===(f?"hide":"show"))continue;c[r]=d&&d[r]||x.style(e,r)}if(!x.isEmptyObject(c)){d?"hidden"in d&&(f=d.hidden):d=x._data(e,"fxshow",{}),o&&(d.hidden=!f),f?x(e).show():u.done(function(){x(e).hide()}),u.done(function(){var t;x._removeData(e,"fxshow");for(t in c)x.style(e,t,c[t])});for(r in c)a=Zn(f?d[r]:0,r,u),r in d||(d[r]=a.start,f&&(a.end=a.start,a.start="width"===r||"height"===r?1:0))}}function rr(e,t,n,r,i){return new rr.prototype.init(e,t,n,r,i)}x.Tween=rr,rr.prototype={constructor:rr,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||"swing",this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(x.cssNumber[n]?"":"px")},cur:function(){var e=rr.propHooks[this.prop];return e&&e.get?e.get(this):rr.propHooks._default.get(this)},run:function(e){var t,n=rr.propHooks[this.prop];return this.pos=t=this.options.duration?x.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):rr.propHooks._default.set(this),this}},rr.prototype.init.prototype=rr.prototype,rr.propHooks={_default:{get:function(e){var t;return null==e.elem[e.prop]||e.elem.style&&null!=e.elem.style[e.prop]?(t=x.css(e.elem,e.prop,""),t&&"auto"!==t?t:0):e.elem[e.prop]},set:function(e){x.fx.step[e.prop]?x.fx.step[e.prop](e):e.elem.style&&(null!=e.elem.style[x.cssProps[e.prop]]||x.cssHooks[e.prop])?x.style(e.elem,e.prop,e.now+e.unit):e.elem[e.prop]=e.now}}},rr.propHooks.scrollTop=rr.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},x.each(["toggle","show","hide"],function(e,t){var n=x.fn[t];x.fn[t]=function(e,r,i){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(ir(t,!0),e,r,i)}}),x.fn.extend({fadeTo:function(e,t,n,r){return this.filter(nn).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(e,t,n,r){var i=x.isEmptyObject(e),o=x.speed(t,n,r),a=function(){var t=er(this,x.extend({},e),o);(i||x._data(this,"finish"))&&t.stop(!0)};return a.finish=a,i||o.queue===!1?this.each(a):this.queue(o.queue,a)},stop:function(e,n,r){var i=function(e){var t=e.stop;delete e.stop,t(r)};return"string"!=typeof e&&(r=n,n=e,e=t),n&&e!==!1&&this.queue(e||"fx",[]),this.each(function(){var t=!0,n=null!=e&&e+"queueHooks",o=x.timers,a=x._data(this);if(n)a[n]&&a[n].stop&&i(a[n]);else for(n in a)a[n]&&a[n].stop&&Jn.test(n)&&i(a[n]);for(n=o.length;n--;)o[n].elem!==this||null!=e&&o[n].queue!==e||(o[n].anim.stop(r),t=!1,o.splice(n,1));(t||!r)&&x.dequeue(this,e)})},finish:function(e){return e!==!1&&(e=e||"fx"),this.each(function(){var t,n=x._data(this),r=n[e+"queue"],i=n[e+"queueHooks"],o=x.timers,a=r?r.length:0;for(n.finish=!0,x.queue(this,e,[]),i&&i.stop&&i.stop.call(this,!0),t=o.length;t--;)o[t].elem===this&&o[t].queue===e&&(o[t].anim.stop(!0),o.splice(t,1));for(t=0;a>t;t++)r[t]&&r[t].finish&&r[t].finish.call(this);delete n.finish})}});function ir(e,t){var n,r={height:e},i=0;for(t=t?1:0;4>i;i+=2-t)n=Zt[i],r["margin"+n]=r["padding"+n]=e;return t&&(r.opacity=r.width=e),r}x.each({slideDown:ir("show"),slideUp:ir("hide"),slideToggle:ir("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,t){x.fn[e]=function(e,n,r){return this.animate(t,e,n,r)}}),x.speed=function(e,t,n){var r=e&&"object"==typeof e?x.extend({},e):{complete:n||!n&&t||x.isFunction(e)&&e,duration:e,easing:n&&t||t&&!x.isFunction(t)&&t};return r.duration=x.fx.off?0:"number"==typeof r.duration?r.duration:r.duration in x.fx.speeds?x.fx.speeds[r.duration]:x.fx.speeds._default,(null==r.queue||r.queue===!0)&&(r.queue="fx"),r.old=r.complete,r.complete=function(){x.isFunction(r.old)&&r.old.call(this),r.queue&&x.dequeue(this,r.queue)},r},x.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2}},x.timers=[],x.fx=rr.prototype.init,x.fx.tick=function(){var e,n=x.timers,r=0;for(Xn=x.now();n.length>r;r++)e=n[r],e()||n[r]!==e||n.splice(r--,1);n.length||x.fx.stop(),Xn=t},x.fx.timer=function(e){e()&&x.timers.push(e)&&x.fx.start()},x.fx.interval=13,x.fx.start=function(){Un||(Un=setInterval(x.fx.tick,x.fx.interval))},x.fx.stop=function(){clearInterval(Un),Un=null},x.fx.speeds={slow:600,fast:200,_default:400},x.fx.step={},x.expr&&x.expr.filters&&(x.expr.filters.animated=function(e){return x.grep(x.timers,function(t){return e===t.elem}).length}),x.fn.offset=function(e){if(arguments.length)return e===t?this:this.each(function(t){x.offset.setOffset(this,e,t)});var n,r,o={top:0,left:0},a=this[0],s=a&&a.ownerDocument;if(s)return n=s.documentElement,x.contains(n,a)?(typeof a.getBoundingClientRect!==i&&(o=a.getBoundingClientRect()),r=or(s),{top:o.top+(r.pageYOffset||n.scrollTop)-(n.clientTop||0),left:o.left+(r.pageXOffset||n.scrollLeft)-(n.clientLeft||0)}):o},x.offset={setOffset:function(e,t,n){var r=x.css(e,"position");"static"===r&&(e.style.position="relative");var i=x(e),o=i.offset(),a=x.css(e,"top"),s=x.css(e,"left"),l=("absolute"===r||"fixed"===r)&&x.inArray("auto",[a,s])>-1,u={},c={},p,f;l?(c=i.position(),p=c.top,f=c.left):(p=parseFloat(a)||0,f=parseFloat(s)||0),x.isFunction(t)&&(t=t.call(e,n,o)),null!=t.top&&(u.top=t.top-o.top+p),null!=t.left&&(u.left=t.left-o.left+f),"using"in t?t.using.call(e,u):i.css(u)}},x.fn.extend({position:function(){if(this[0]){var e,t,n={top:0,left:0},r=this[0];return"fixed"===x.css(r,"position")?t=r.getBoundingClientRect():(e=this.offsetParent(),t=this.offset(),x.nodeName(e[0],"html")||(n=e.offset()),n.top+=x.css(e[0],"borderTopWidth",!0),n.left+=x.css(e[0],"borderLeftWidth",!0)),{top:t.top-n.top-x.css(r,"marginTop",!0),left:t.left-n.left-x.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent||s;while(e&&!x.nodeName(e,"html")&&"static"===x.css(e,"position"))e=e.offsetParent;return e||s})}}),x.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(e,n){var r=/Y/.test(n);x.fn[e]=function(i){return x.access(this,function(e,i,o){var a=or(e);return o===t?a?n in a?a[n]:a.document.documentElement[i]:e[i]:(a?a.scrollTo(r?x(a).scrollLeft():o,r?o:x(a).scrollTop()):e[i]=o,t)},e,i,arguments.length,null)}});function or(e){return x.isWindow(e)?e:9===e.nodeType?e.defaultView||e.parentWindow:!1}x.each({Height:"height",Width:"width"},function(e,n){x.each({padding:"inner"+e,content:n,"":"outer"+e},function(r,i){x.fn[i]=function(i,o){var a=arguments.length&&(r||"boolean"!=typeof i),s=r||(i===!0||o===!0?"margin":"border");return x.access(this,function(n,r,i){var o;return x.isWindow(n)?n.document.documentElement["client"+e]:9===n.nodeType?(o=n.documentElement,Math.max(n.body["scroll"+e],o["scroll"+e],n.body["offset"+e],o["offset"+e],o["client"+e])):i===t?x.css(n,r,s):x.style(n,r,i,s)},n,a?i:t,a,null)}})}),x.fn.size=function(){return this.length},x.fn.andSelf=x.fn.addBack,"object"==typeof module&&module&&"object"==typeof module.exports?module.exports=x:(e.jQuery=e.$=x,"function"==typeof define&&define.amd&&define("jquery",[],function(){return x}))})(window);Evidence Access-Control-Allow-Origin: *Solution Ensure that sensitive data is not available in an unauthenticated manner (using IP address white-listing, for instance).
Configure the "Access-Control-Allow-Origin" HTTP header to a more restrictive set of domains, or remove all CORS headers entirely, to allow the web browser to enforce the Same Origin Policy (SOP) in a more restrictive manner.
-
-
http://localhost (4)
-
Application Error Disclosure (1)
GET http://localhost/phpmyadmin/doc/html/faq.html
Alert tags Alert description This page contains an error/warning message that may disclose sensitive information like the location of the file that produced the unhandled exception. This information can be used to launch further attacks against the web application. The alert could be a false positive if the error message is found inside a documentation page.
Request Request line and header section (352 bytes)
GET http://localhost/phpmyadmin/doc/html/faq.html HTTP/1.1 host: localhost user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 pragma: no-cache cache-control: no-cache referer: http://localhost/phpmyadmin/ Cookie: pma_lang=en; phpMyAdmin=610f86c60f00a8f4dc92fe660c217e62Request body (0 bytes)
Response Status line and header section (287 bytes)
HTTP/1.1 200 OK Date: Sat, 19 Apr 2025 15:17:47 GMT Server: Apache/2.4.54 (Unix) OpenSSL/1.1.1s PHP/7.4.33 mod_perl/2.0.12 Perl/v5.34.1 Last-Modified: Wed, 11 May 2022 04:39:14 GMT ETag: "319b4-5deb505f5e080" Accept-Ranges: bytes Content-Length: 203188 Content-Type: text/htmlResponse body (203188 bytes)
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>FAQ - Frequently Asked Questions — phpMyAdmin 5.2.0 documentation</title> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> <link rel="stylesheet" href="_static/classic.css" type="text/css" /> <script id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script> <script src="_static/jquery.js"></script> <script src="_static/underscore.js"></script> <script src="_static/doctools.js"></script> <link rel="index" title="Index" href="genindex.html" /> <link rel="search" title="Search" href="search.html" /> <link rel="copyright" title="Copyright" href="copyright.html" /> <link rel="next" title="Developers Information" href="developers.html" /> <link rel="prev" title="Other sources of information" href="other.html" /> </head><body> <div class="related" role="navigation" aria-label="related navigation"> <h3>Navigation</h3> <ul> <li class="right" style="margin-right: 10px"> <a href="genindex.html" title="General Index" accesskey="I">index</a></li> <li class="right" > <a href="developers.html" title="Developers Information" accesskey="N">next</a> |</li> <li class="right" > <a href="other.html" title="Other sources of information" accesskey="P">previous</a> |</li> <li class="nav-item nav-item-0"><a href="index.html">phpMyAdmin 5.2.0 documentation</a> »</li> <li class="nav-item nav-item-this"><a href="">FAQ - Frequently Asked Questions</a></li> </ul> </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body" role="main"> <div class="section" id="faq-frequently-asked-questions"> <span id="faq"></span><h1>FAQ - Frequently Asked Questions<a class="headerlink" href="#faq-frequently-asked-questions" title="Permalink to this headline">¶</a></h1> <p>Please have a look at our <a class="reference external" href="https://www.phpmyadmin.net/docs/">Link section</a> on the official phpMyAdmin homepage for in-depth coverage of phpMyAdmin’s features and or interface.</p> <div class="section" id="server"> <span id="faqserver"></span><h2>Server<a class="headerlink" href="#server" title="Permalink to this headline">¶</a></h2> <div class="section" id="my-server-is-crashing-each-time-a-specific-action-is-required-or-phpmyadmin-sends-a-blank-page-or-a-page-full-of-cryptic-characters-to-my-browser-what-can-i-do"> <span id="faq1-1"></span><h3>1.1 My server is crashing each time a specific action is required or phpMyAdmin sends a blank page or a page full of cryptic characters to my browser, what can I do?<a class="headerlink" href="#my-server-is-crashing-each-time-a-specific-action-is-required-or-phpmyadmin-sends-a-blank-page-or-a-page-full-of-cryptic-characters-to-my-browser-what-can-i-do" title="Permalink to this headline">¶</a></h3> <p>Try to set the <span class="target" id="index-0"></span><a class="reference internal" href="config.html#cfg_OBGzip"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['OBGzip']</span></code></a> directive to <code class="docutils literal notranslate"><span class="pre">false</span></code> in your <code class="file docutils literal notranslate"><span class="pre">config.inc.php</span></code> file and the <code class="docutils literal notranslate"><span class="pre">zlib.output_compression</span></code> directive to <code class="docutils literal notranslate"><span class="pre">Off</span></code> in your php configuration file.</p> </div> <div class="section" id="my-apache-server-crashes-when-using-phpmyadmin"> <span id="faq1-2"></span><h3>1.2 My Apache server crashes when using phpMyAdmin.<a class="headerlink" href="#my-apache-server-crashes-when-using-phpmyadmin" title="Permalink to this headline">¶</a></h3> <p>You should first try the latest versions of Apache (and possibly MySQL). If your server keeps crashing, please ask for help in the various Apache support groups.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="#faq1-1"><span class="std std-ref">1.1 My server is crashing each time a specific action is required or phpMyAdmin sends a blank page or a page full of cryptic characters to my browser, what can I do?</span></a></p> </div> </div> <div class="section" id="withdrawn"> <span id="faq1-3"></span><h3>1.3 (withdrawn).<a class="headerlink" href="#withdrawn" title="Permalink to this headline">¶</a></h3> </div> <div class="section" id="using-phpmyadmin-on-iis-i-m-displayed-the-error-message-the-specified-cgi-application-misbehaved-by-not-returning-a-complete-set-of-http-headers"> <span id="faq1-4"></span><h3>1.4 Using phpMyAdmin on IIS, I’m displayed the error message: “The specified CGI application misbehaved by not returning a complete set of HTTP headers …”.<a class="headerlink" href="#using-phpmyadmin-on-iis-i-m-displayed-the-error-message-the-specified-cgi-application-misbehaved-by-not-returning-a-complete-set-of-http-headers" title="Permalink to this headline">¶</a></h3> <p>You just forgot to read the <em>install.txt</em> file from the PHP distribution. Have a look at the last message in this <a class="reference external" href="https://bugs.php.net/bug.php?id=12061">PHP bug report #12061</a> from the official PHP bug database.</p> </div> <div class="section" id="using-phpmyadmin-on-iis-i-m-facing-crashes-and-or-many-error-messages-with-the-http"> <span id="faq1-5"></span><h3>1.5 Using phpMyAdmin on IIS, I’m facing crashes and/or many error messages with the HTTP.<a class="headerlink" href="#using-phpmyadmin-on-iis-i-m-facing-crashes-and-or-many-error-messages-with-the-http" title="Permalink to this headline">¶</a></h3> <p>This is a known problem with the PHP <a class="reference internal" href="glossary.html#term-ISAPI"><span class="xref std std-term">ISAPI</span></a> filter: it’s not so stable. Please use instead the cookie authentication mode.</p> </div> <div class="section" id="i-can-t-use-phpmyadmin-on-pws-nothing-is-displayed"> <span id="faq1-6"></span><h3>1.6 I can’t use phpMyAdmin on PWS: nothing is displayed!<a class="headerlink" href="#i-can-t-use-phpmyadmin-on-pws-nothing-is-displayed" title="Permalink to this headline">¶</a></h3> <p>This seems to be a PWS bug. Filippo Simoncini found a workaround (at this time there is no better fix): remove or comment the <code class="docutils literal notranslate"><span class="pre">DOCTYPE</span></code> declarations (2 lines) from the scripts <code class="file docutils literal notranslate"><span class="pre">libraries/classes/Header.php</span></code> and <code class="file docutils literal notranslate"><span class="pre">index.php</span></code>.</p> </div> <div class="section" id="how-can-i-gzip-a-dump-or-a-csv-export-it-does-not-seem-to-work"> <span id="faq1-7"></span><h3>1.7 How can I gzip a dump or a CSV export? It does not seem to work.<a class="headerlink" href="#how-can-i-gzip-a-dump-or-a-csv-export-it-does-not-seem-to-work" title="Permalink to this headline">¶</a></h3> <p>This feature is based on the <code class="docutils literal notranslate"><span class="pre">gzencode()</span></code> PHP function to be more independent of the platform (Unix/Windows, Safe Mode or not, and so on). So, you must have Zlib support (<code class="docutils literal notranslate"><span class="pre">--with-zlib</span></code>).</p> </div> <div class="section" id="i-cannot-insert-a-text-file-in-a-table-and-i-get-an-error-about-safe-mode-being-in-effect"> <span id="faq1-8"></span><h3>1.8 I cannot insert a text file in a table, and I get an error about safe mode being in effect.<a class="headerlink" href="#i-cannot-insert-a-text-file-in-a-table-and-i-get-an-error-about-safe-mode-being-in-effect" title="Permalink to this headline">¶</a></h3> <p>Your uploaded file is saved by PHP in the “upload dir”, as defined in <code class="file docutils literal notranslate"><span class="pre">php.ini</span></code> by the variable <code class="docutils literal notranslate"><span class="pre">upload_tmp_dir</span></code> (usually the system default is <em>/tmp</em>). We recommend the following setup for Apache servers running in safe mode, to enable uploads of files while being reasonably secure:</p> <ul class="simple"> <li><p>create a separate directory for uploads: <strong class="command">mkdir /tmp/php</strong></p></li> <li><p>give ownership to the Apache server’s user.group: <strong class="command">chown apache.apache /tmp/php</strong></p></li> <li><p>give proper permission: <strong class="command">chmod 600 /tmp/php</strong></p></li> <li><p>put <code class="docutils literal notranslate"><span class="pre">upload_tmp_dir</span> <span class="pre">=</span> <span class="pre">/tmp/php</span></code> in <code class="file docutils literal notranslate"><span class="pre">php.ini</span></code></p></li> <li><p>restart Apache</p></li> </ul> </div> <div class="section" id="faq1-9"> <span id="id1"></span><h3>1.9 (withdrawn).<a class="headerlink" href="#faq1-9" title="Permalink to this headline">¶</a></h3> </div> <div class="section" id="i-m-having-troubles-when-uploading-files-with-phpmyadmin-running-on-a-secure-server-my-browser-is-internet-explorer-and-i-m-using-the-apache-server"> <span id="faq1-10"></span><h3>1.10 I’m having troubles when uploading files with phpMyAdmin running on a secure server. My browser is Internet Explorer and I’m using the Apache server.<a class="headerlink" href="#i-m-having-troubles-when-uploading-files-with-phpmyadmin-running-on-a-secure-server-my-browser-is-internet-explorer-and-i-m-using-the-apache-server" title="Permalink to this headline">¶</a></h3> <p>As suggested by “Rob M” in the phpWizard forum, add this line to your <em>httpd.conf</em>:</p> <div class="highlight-apache notranslate"><div class="highlight"><pre><span></span><span class="nb">SetEnvIf</span> <span class="k">User</span>-Agent <span class="s2">".*MSIE.*"</span> nokeepalive ssl-unclean-shutdown </pre></div> </div> <p>It seems to clear up many problems between Internet Explorer and SSL.</p> </div> <div class="section" id="i-get-an-open-basedir-restriction-while-uploading-a-file-from-the-import-tab"> <span id="faq1-11"></span><h3>1.11 I get an ‘open_basedir restriction’ while uploading a file from the import tab.<a class="headerlink" href="#i-get-an-open-basedir-restriction-while-uploading-a-file-from-the-import-tab" title="Permalink to this headline">¶</a></h3> <p>Since version 2.2.4, phpMyAdmin supports servers with open_basedir restrictions. However you need to create temporary directory and configure it as <span class="target" id="index-1"></span><a class="reference internal" href="config.html#cfg_TempDir"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['TempDir']</span></code></a>. The uploaded files will be moved there, and after execution of your <a class="reference internal" href="glossary.html#term-SQL"><span class="xref std std-term">SQL</span></a> commands, removed.</p> </div> <div class="section" id="i-have-lost-my-mysql-root-password-what-can-i-do"> <span id="faq1-12"></span><h3>1.12 I have lost my MySQL root password, what can I do?<a class="headerlink" href="#i-have-lost-my-mysql-root-password-what-can-i-do" title="Permalink to this headline">¶</a></h3> <p>phpMyAdmin does authenticate against MySQL server you’re using, so to recover from phpMyAdmin password loss, you need to recover at MySQL level.</p> <p>The MySQL manual explains how to <a class="reference external" href="https://dev.mysql.com/doc/refman/5.7/en/resetting-permissions.html">reset the permissions</a>.</p> <p>If you are using MySQL server installed by your hosting provider, please contact their support to recover the password for you.</p> </div> <div class="section" id="faq1-13"> <span id="id2"></span><h3>1.13 (withdrawn).<a class="headerlink" href="#faq1-13" title="Permalink to this headline">¶</a></h3> </div> <div class="section" id="faq1-14"> <span id="id3"></span><h3>1.14 (withdrawn).<a class="headerlink" href="#faq1-14" title="Permalink to this headline">¶</a></h3> </div> <div class="section" id="i-have-problems-with-mysql-user-column-names"> <span id="faq1-15"></span><h3>1.15 I have problems with <em>mysql.user</em> column names.<a class="headerlink" href="#i-have-problems-with-mysql-user-column-names" title="Permalink to this headline">¶</a></h3> <p>In previous MySQL versions, the <code class="docutils literal notranslate"><span class="pre">User</span></code> and <code class="docutils literal notranslate"><span class="pre">Password</span></code> columns were named <code class="docutils literal notranslate"><span class="pre">user</span></code> and <code class="docutils literal notranslate"><span class="pre">password</span></code>. Please modify your column names to align with current standards.</p> </div> <div class="section" id="i-cannot-upload-big-dump-files-memory-http-or-timeout-problems"> <span id="faq1-16"></span><h3>1.16 I cannot upload big dump files (memory, HTTP or timeout problems).<a class="headerlink" href="#i-cannot-upload-big-dump-files-memory-http-or-timeout-problems" title="Permalink to this headline">¶</a></h3> <p>Starting with version 2.7.0, the import engine has been re–written and these problems should not occur. If possible, upgrade your phpMyAdmin to the latest version to take advantage of the new import features.</p> <p>The first things to check (or ask your host provider to check) are the values of <code class="docutils literal notranslate"><span class="pre">max_execution_time</span></code>, <code class="docutils literal notranslate"><span class="pre">upload_max_filesize</span></code>, <code class="docutils literal notranslate"><span class="pre">memory_limit</span></code> and <code class="docutils literal notranslate"><span class="pre">post_max_size</span></code> in the <code class="file docutils literal notranslate"><span class="pre">php.ini</span></code> configuration file. All of these settings limit the maximum size of data that can be submitted and handled by PHP. Please note that <code class="docutils literal notranslate"><span class="pre">post_max_size</span></code> needs to be larger than <code class="docutils literal notranslate"><span class="pre">upload_max_filesize</span></code>. There exist several workarounds if your upload is too big or your hosting provider is unwilling to change the settings:</p> <ul> <li><p>Look at the <span class="target" id="index-2"></span><a class="reference internal" href="config.html#cfg_UploadDir"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['UploadDir']</span></code></a> feature. This allows one to upload a file to the server via scp, FTP, or your favorite file transfer method. PhpMyAdmin is then able to import the files from the temporary directory. More information is available in the <a class="reference internal" href="config.html#config"><span class="std std-ref">Configuration</span></a> of this document.</p></li> <li><p>Using a utility (such as <a class="reference external" href="https://www.ozerov.de/bigdump/">BigDump</a>) to split the files before uploading. We cannot support this or any third party applications, but are aware of users having success with it.</p></li> <li><p>If you have shell (command line) access, use MySQL to import the files directly. You can do this by issuing the “source” command from within MySQL:</p> <div class="highlight-mysql notranslate"><div class="highlight"><pre><span></span><span class="k">source</span> <span class="n">filename</span><span class="p">.</span><span class="k">sql</span><span class="p">;</span> </pre></div> </div> </li> </ul> </div> <div class="section" id="which-database-versions-does-phpmyadmin-support"> <span id="faq1-17"></span><h3>1.17 Which Database versions does phpMyAdmin support?<a class="headerlink" href="#which-database-versions-does-phpmyadmin-support" title="Permalink to this headline">¶</a></h3> <p>For <a class="reference external" href="https://www.mysql.com/">MySQL</a>, versions 5.5 and newer are supported. For older MySQL versions, our <a class="reference external" href="https://www.phpmyadmin.net/downloads/">Downloads</a> page offers older phpMyAdmin versions (which may have become unsupported).</p> <p>For <a class="reference external" href="https://mariadb.org/">MariaDB</a>, versions 5.5 and newer are supported.</p> </div> <div class="section" id="a-i-cannot-connect-to-the-mysql-server-it-always-returns-the-error-message-client-does-not-support-authentication-protocol-requested-by-server-consider-upgrading-mysql-client"> <span id="faq1-17a"></span><h3>1.17a I cannot connect to the MySQL server. It always returns the error message, “Client does not support authentication protocol requested by server; consider upgrading MySQL client”<a class="headerlink" href="#a-i-cannot-connect-to-the-mysql-server-it-always-returns-the-error-message-client-does-not-support-authentication-protocol-requested-by-server-consider-upgrading-mysql-client" title="Permalink to this headline">¶</a></h3> <p>You tried to access MySQL with an old MySQL client library. The version of your MySQL client library can be checked in your phpinfo() output. In general, it should have at least the same minor version as your server - as mentioned in <a class="reference internal" href="#faq1-17"><span class="std std-ref">1.17 Which Database versions does phpMyAdmin support?</span></a>. This problem is generally caused by using MySQL version 4.1 or newer. MySQL changed the authentication hash and your PHP is trying to use the old method. The proper solution is to use the <a class="reference external" href="https://www.php.net/mysqli">mysqli extension</a> with the proper client library to match your MySQL installation. More information (and several workarounds) are located in the <a class="reference external" href="https://dev.mysql.com/doc/refman/5.7/en/common-errors.html">MySQL Documentation</a>.</p> </div> <div class="section" id="faq1-18"> <span id="id4"></span><h3>1.18 (withdrawn).<a class="headerlink" href="#faq1-18" title="Permalink to this headline">¶</a></h3> </div> <div class="section" id="i-can-t-run-the-display-relations-feature-because-the-script-seems-not-to-know-the-font-face-i-m-using"> <span id="faq1-19"></span><h3>1.19 I can’t run the “display relations” feature because the script seems not to know the font face I’m using!<a class="headerlink" href="#i-can-t-run-the-display-relations-feature-because-the-script-seems-not-to-know-the-font-face-i-m-using" title="Permalink to this headline">¶</a></h3> <p>The <a class="reference internal" href="glossary.html#term-TCPDF"><span class="xref std std-term">TCPDF</span></a> library we’re using for this feature requires some special files to use font faces. Please refers to the <a class="reference external" href="https://tcpdf.org/">TCPDF manual</a> to build these files.</p> </div> <div class="section" id="i-receive-an-error-about-missing-mysqli-and-mysql-extensions"> <span id="faqmysql"></span><h3>1.20 I receive an error about missing mysqli and mysql extensions.<a class="headerlink" href="#i-receive-an-error-about-missing-mysqli-and-mysql-extensions" title="Permalink to this headline">¶</a></h3> <p>To connect to a MySQL server, PHP needs a set of MySQL functions called “MySQL extension”. This extension may be part of the PHP distribution (compiled-in), otherwise it needs to be loaded dynamically. Its name is probably <em>mysqli.so</em> or <em>php_mysqli.dll</em>. phpMyAdmin tried to load the extension but failed. Usually, the problem is solved by installing a software package called “PHP-MySQL” or something similar.</p> <p>There was two interfaces PHP provided as MySQL extensions - <code class="docutils literal notranslate"><span class="pre">mysql</span></code> and <code class="docutils literal notranslate"><span class="pre">mysqli</span></code>. The <code class="docutils literal notranslate"><span class="pre">mysql</span></code> interface was removed in PHP 7.0.</p> <p>This problem can be also caused by wrong paths in the <code class="file docutils literal notranslate"><span class="pre">php.ini</span></code> or using wrong <code class="file docutils literal notranslate"><span class="pre">php.ini</span></code>.</p> <p>Make sure that the extension files do exist in the folder which the <code class="docutils literal notranslate"><span class="pre">extension_dir</span></code> points to and that the corresponding lines in your <code class="file docutils literal notranslate"><span class="pre">php.ini</span></code> are not commented out (you can use <code class="docutils literal notranslate"><span class="pre">phpinfo()</span></code> to check current setup):</p> <div class="highlight-ini notranslate"><div class="highlight"><pre><span></span><span class="k">[PHP]</span> <span class="c1">; Directory in which the loadable extensions (modules) reside.</span> <span class="na">extension_dir</span> <span class="o">=</span> <span class="s">"C:/Apache2/modules/php/ext"</span> </pre></div> </div> <p>The <code class="file docutils literal notranslate"><span class="pre">php.ini</span></code> can be loaded from several locations (especially on Windows), so please check you’re updating the correct one. If using Apache, you can tell it to use specific path for this file using <code class="docutils literal notranslate"><span class="pre">PHPIniDir</span></code> directive:</p> <div class="highlight-apache notranslate"><div class="highlight"><pre><span></span><span class="nb">LoadModule</span> php7_module <span class="s2">"C:/php7/php7apache2_4.dll"</span> <span class="nt"><IfModule</span> <span class="s">php7_module</span><span class="nt">></span> <span class="nb">PHPIniDir</span> <span class="s2">"C:/php7"</span> <span class="nt"><Location></span> <span class="nb">AddType</span> text/html .php <span class="nb">AddHandler</span> application/x-httpd-php .php <span class="nt"></Location></span> <span class="nt"></IfModule></span> </pre></div> </div> <p>In some rare cases this problem can be also caused by other extensions loaded in PHP which prevent MySQL extensions to be loaded. If anything else fails, you can try commenting out extensions for other databases from <code class="file docutils literal notranslate"><span class="pre">php.ini</span></code>.</p> </div> <div class="section" id="i-am-running-the-cgi-version-of-php-under-unix-and-i-cannot-log-in-using-cookie-auth"> <span id="faq1-21"></span><h3>1.21 I am running the CGI version of PHP under Unix, and I cannot log in using cookie auth.<a class="headerlink" href="#i-am-running-the-cgi-version-of-php-under-unix-and-i-cannot-log-in-using-cookie-auth" title="Permalink to this headline">¶</a></h3> <p>In <code class="file docutils literal notranslate"><span class="pre">php.ini</span></code>, set <code class="docutils literal notranslate"><span class="pre">mysql.max_links</span></code> higher than 1.</p> </div> <div class="section" id="i-don-t-see-the-location-of-text-file-field-so-i-cannot-upload"> <span id="faq1-22"></span><h3>1.22 I don’t see the “Location of text file” field, so I cannot upload.<a class="headerlink" href="#i-don-t-see-the-location-of-text-file-field-so-i-cannot-upload" title="Permalink to this headline">¶</a></h3> <p>This is most likely because in <code class="file docutils literal notranslate"><span class="pre">php.ini</span></code>, your <code class="docutils literal notranslate"><span class="pre">file_uploads</span></code> parameter is not set to “on”.</p> </div> <div class="section" id="i-m-running-mysql-on-a-win32-machine-each-time-i-create-a-new-table-the-table-and-column-names-are-changed-to-lowercase"> <span id="faq1-23"></span><h3>1.23 I’m running MySQL on a Win32 machine. Each time I create a new table the table and column names are changed to lowercase!<a class="headerlink" href="#i-m-running-mysql-on-a-win32-machine-each-time-i-create-a-new-table-the-table-and-column-names-are-changed-to-lowercase" title="Permalink to this headline">¶</a></h3> <p>This happens because the MySQL directive <code class="docutils literal notranslate"><span class="pre">lower_case_table_names</span></code> defaults to 1 (<code class="docutils literal notranslate"><span class="pre">ON</span></code>) in the Win32 version of MySQL. You can change this behavior by simply changing the directive to 0 (<code class="docutils literal notranslate"><span class="pre">OFF</span></code>): Just edit your <code class="docutils literal notranslate"><span class="pre">my.ini</span></code> file that should be located in your Windows directory and add the following line to the group [mysqld]:</p> <div class="highlight-ini notranslate"><div class="highlight"><pre><span></span><span class="na">set-variable</span> <span class="o">=</span> <span class="s">lower_case_table_names=0</span> </pre></div> </div> <div class="admonition note"> <p class="admonition-title">Note</p> <p>Forcing this variable to 0 with –lower-case-table-names=0 on a case-insensitive filesystem and access MyISAM tablenames using different lettercases, index corruption may result.</p> </div> <p>Next, save the file and restart the MySQL service. You can always check the value of this directive using the query</p> <div class="highlight-mysql notranslate"><div class="highlight"><pre><span></span><span class="k">SHOW</span> <span class="k">VARIABLES</span> <span class="k">LIKE</span> <span class="s1">'lower_case_table_names'</span><span class="p">;</span> </pre></div> </div> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference external" href="https://dev.mysql.com/doc/refman/5.7/en/identifier-case-sensitivity.html">Identifier Case Sensitivity in the MySQL Reference Manual</a></p> </div> </div> <div class="section" id="faq1-24"> <span id="id5"></span><h3>1.24 (withdrawn).<a class="headerlink" href="#faq1-24" title="Permalink to this headline">¶</a></h3> </div> <div class="section" id="i-am-running-apache-with-mod-gzip-1-3-26-1a-on-windows-xp-and-i-get-problems-such-as-undefined-variables-when-i-run-a-sql-query"> <span id="faq1-25"></span><h3>1.25 I am running Apache with mod_gzip-1.3.26.1a on Windows XP, and I get problems, such as undefined variables when I run a SQL query.<a class="headerlink" href="#i-am-running-apache-with-mod-gzip-1-3-26-1a-on-windows-xp-and-i-get-problems-such-as-undefined-variables-when-i-run-a-sql-query" title="Permalink to this headline">¶</a></h3> <p>A tip from Jose Fandos: put a comment on the following two lines in httpd.conf, like this:</p> <div class="highlight-apache notranslate"><div class="highlight"><pre><span></span><span class="c"># mod_gzip_item_include file \.php$</span> <span class="c"># mod_gzip_item_include mime "application/x-httpd-php.*"</span> </pre></div> </div> <p>as this version of mod_gzip on Apache (Windows) has problems handling PHP scripts. Of course you have to restart Apache.</p> </div> <div class="section" id="i-just-installed-phpmyadmin-in-my-document-root-of-iis-but-i-get-the-error-no-input-file-specified-when-trying-to-run-phpmyadmin"> <span id="faq1-26"></span><h3>1.26 I just installed phpMyAdmin in my document root of IIS but I get the error “No input file specified” when trying to run phpMyAdmin.<a class="headerlink" href="#i-just-installed-phpmyadmin-in-my-document-root-of-iis-but-i-get-the-error-no-input-file-specified-when-trying-to-run-phpmyadmin" title="Permalink to this headline">¶</a></h3> <p>This is a permission problem. Right-click on the phpmyadmin folder and choose properties. Under the tab Security, click on “Add” and select the user “IUSR_machine” from the list. Now set their permissions and it should work.</p> </div> <div class="section" id="i-get-empty-page-when-i-want-to-view-huge-page-eg-db-structure-php-with-plenty-of-tables"> <span id="faq1-27"></span><h3>1.27 I get empty page when I want to view huge page (eg. db_structure.php with plenty of tables).<a class="headerlink" href="#i-get-empty-page-when-i-want-to-view-huge-page-eg-db-structure-php-with-plenty-of-tables" title="Permalink to this headline">¶</a></h3> <p>This was caused by a <a class="reference external" href="https://bugs.php.net/bug.php?id=21079">PHP bug</a> that occur when GZIP output buffering is enabled. If you turn off it (by <span class="target" id="index-3"></span><a class="reference internal" href="config.html#cfg_OBGzip"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['OBGzip']</span></code></a> in <code class="file docutils literal notranslate"><span class="pre">config.inc.php</span></code>), it should work. This bug will has been fixed in PHP 5.0.0.</p> </div> <div class="section" id="my-mysql-server-sometimes-refuses-queries-and-returns-the-message-errorcode-13-what-does-this-mean"> <span id="faq1-28"></span><h3>1.28 My MySQL server sometimes refuses queries and returns the message ‘Errorcode: 13’. What does this mean?<a class="headerlink" href="#my-mysql-server-sometimes-refuses-queries-and-returns-the-message-errorcode-13-what-does-this-mean" title="Permalink to this headline">¶</a></h3> <p>This can happen due to a MySQL bug when having database / table names with upper case characters although <code class="docutils literal notranslate"><span class="pre">lower_case_table_names</span></code> is set to 1. To fix this, turn off this directive, convert all database and table names to lower case and turn it on again. Alternatively, there’s a bug-fix available starting with MySQL 3.23.56 / 4.0.11-gamma.</p> </div> <div class="section" id="when-i-create-a-table-or-modify-a-column-i-get-an-error-and-the-columns-are-duplicated"> <span id="faq1-29"></span><h3>1.29 When I create a table or modify a column, I get an error and the columns are duplicated.<a class="headerlink" href="#when-i-create-a-table-or-modify-a-column-i-get-an-error-and-the-columns-are-duplicated" title="Permalink to this headline">¶</a></h3> <p>It is possible to configure Apache in such a way that PHP has problems interpreting .php files.</p> <p>The problems occur when two different (and conflicting) set of directives are used:</p> <div class="highlight-apache notranslate"><div class="highlight"><pre><span></span><span class="nb">SetOutputFilter</span> PHP <span class="nb">SetInputFilter</span> PHP </pre></div> </div> <p>and</p> <div class="highlight-apache notranslate"><div class="highlight"><pre><span></span><span class="nb">AddType</span> application/x-httpd-php .php </pre></div> </div> <p>In the case we saw, one set of directives was in <code class="docutils literal notranslate"><span class="pre">/etc/httpd/conf/httpd.conf</span></code>, while the other set was in <code class="docutils literal notranslate"><span class="pre">/etc/httpd/conf/addon-modules/php.conf</span></code>. The recommended way is with <code class="docutils literal notranslate"><span class="pre">AddType</span></code>, so just comment out the first set of lines and restart Apache:</p> <div class="highlight-apache notranslate"><div class="highlight"><pre><span></span><span class="c">#SetOutputFilter PHP</span> <span class="c">#SetInputFilter PHP</span> </pre></div> </div> </div> <div class="section" id="i-get-the-error-navigation-php-missing-hash"> <span id="faq1-30"></span><h3>1.30 I get the error “navigation.php: Missing hash”.<a class="headerlink" href="#i-get-the-error-navigation-php-missing-hash" title="Permalink to this headline">¶</a></h3> <p>This problem is known to happen when the server is running Turck MMCache but upgrading MMCache to version 2.3.21 solves the problem.</p> </div> <div class="section" id="which-php-versions-does-phpmyadmin-support"> <span id="faq1-31"></span><h3>1.31 Which PHP versions does phpMyAdmin support?<a class="headerlink" href="#which-php-versions-does-phpmyadmin-support" title="Permalink to this headline">¶</a></h3> <p>Since release 4.5, phpMyAdmin supports only PHP 5.5 and newer. Since release 4.1 phpMyAdmin supports only PHP 5.3 and newer. For PHP 5.2 you can use 4.0.x releases.</p> <p>PHP 7 is supported since phpMyAdmin 4.6, PHP 7.1 is supported since 4.6.5, PHP 7.2 is supported since 4.7.4.</p> <p>HHVM is supported up to phpMyAdmin 4.8.</p> <p>Since release 5.0, phpMyAdmin supports only PHP 7.1 and newer. Since release 5.2, phpMyAdmin supports only PHP 7.2 and newer.</p> </div> <div class="section" id="can-i-use-http-authentication-with-iis"> <span id="faq1-32"></span><h3>1.32 Can I use HTTP authentication with IIS?<a class="headerlink" href="#can-i-use-http-authentication-with-iis" title="Permalink to this headline">¶</a></h3> <p>Yes. This procedure was tested with phpMyAdmin 2.6.1, PHP 4.3.9 in <a class="reference internal" href="glossary.html#term-ISAPI"><span class="xref std std-term">ISAPI</span></a> mode under <a class="reference internal" href="glossary.html#term-IIS"><span class="xref std std-term">IIS</span></a> 5.1.</p> <ol class="arabic simple"> <li><p>In your <code class="file docutils literal notranslate"><span class="pre">php.ini</span></code> file, set <code class="docutils literal notranslate"><span class="pre">cgi.rfc2616_headers</span> <span class="pre">=</span> <span class="pre">0</span></code></p></li> <li><p>In <code class="docutils literal notranslate"><span class="pre">Web</span> <span class="pre">Site</span> <span class="pre">Properties</span> <span class="pre">-></span> <span class="pre">File/Directory</span> <span class="pre">Security</span> <span class="pre">-></span> <span class="pre">Anonymous</span> <span class="pre">Access</span></code> dialog box, check the <code class="docutils literal notranslate"><span class="pre">Anonymous</span> <span class="pre">access</span></code> checkbox and uncheck any other checkboxes (i.e. uncheck <code class="docutils literal notranslate"><span class="pre">Basic</span> <span class="pre">authentication</span></code>, <code class="docutils literal notranslate"><span class="pre">Integrated</span> <span class="pre">Windows</span> <span class="pre">authentication</span></code>, and <code class="docutils literal notranslate"><span class="pre">Digest</span></code> if it’s enabled.) Click <code class="docutils literal notranslate"><span class="pre">OK</span></code>.</p></li> <li><p>In <code class="docutils literal notranslate"><span class="pre">Custom</span> <span class="pre">Errors</span></code>, select the range of <code class="docutils literal notranslate"><span class="pre">401;1</span></code> through <code class="docutils literal notranslate"><span class="pre">401;5</span></code> and click the <code class="docutils literal notranslate"><span class="pre">Set</span> <span class="pre">to</span> <span class="pre">Default</span></code> button.</p></li> </ol> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><span class="target" id="index-4"></span><a class="rfc reference external" href="https://tools.ietf.org/html/rfc2616.html"><strong>RFC 2616</strong></a></p> </div> </div> <div class="section" id="faq1-33"> <span id="id6"></span><h3>1.33 (withdrawn).<a class="headerlink" href="#faq1-33" title="Permalink to this headline">¶</a></h3> </div> <div class="section" id="can-i-directly-access-a-database-or-table-pages"> <span id="faq1-34"></span><h3>1.34 Can I directly access a database or table pages?<a class="headerlink" href="#can-i-directly-access-a-database-or-table-pages" title="Permalink to this headline">¶</a></h3> <p>Yes. Out of the box, you can use a <a class="reference internal" href="glossary.html#term-URL"><span class="xref std std-term">URL</span></a> like <code class="docutils literal notranslate"><span class="pre">http://server/phpMyAdmin/index.php?server=X&db=database&table=table&target=script</span></code>. For <code class="docutils literal notranslate"><span class="pre">server</span></code> you can use the server number which refers to the numeric host index (from <code class="docutils literal notranslate"><span class="pre">$i</span></code>) in <code class="file docutils literal notranslate"><span class="pre">config.inc.php</span></code>. The table and script parts are optional.</p> <p>If you want a URL like <code class="docutils literal notranslate"><span class="pre">http://server/phpMyAdmin/database[/table][/script]</span></code>, you need to do some additional configuration. The following lines apply only for the <a class="reference external" href="https://httpd.apache.org">Apache</a> web server. First, make sure that you have enabled some features within the Apache global configuration. You need <code class="docutils literal notranslate"><span class="pre">Options</span> <span class="pre">SymLinksIfOwnerMatch</span></code> and <code class="docutils literal notranslate"><span class="pre">AllowOverride</span> <span class="pre">FileInfo</span></code> enabled for directory where phpMyAdmin is installed and you need mod_rewrite to be enabled. Then you just need to create the following <a class="reference internal" href="glossary.html#term-.htaccess"><span class="xref std std-term">.htaccess</span></a> file in root folder of phpMyAdmin installation (don’t forget to change directory name inside of it):</p> <div class="highlight-apache notranslate"><div class="highlight"><pre><span></span><span class="nb">RewriteEngine</span> <span class="k">On</span> <span class="nb">RewriteBase</span> <span class="sx">/path_to_phpMyAdmin</span> <span class="nb">RewriteRule</span> ^([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)/([a-z_]+\.php)$ index.php?db=$1&table=$2&target=$3 [R] <span class="nb">RewriteRule</span> ^([a-zA-Z0-9_]+)/([a-z_]+\.php)$ index.php?db=$1&target=$2 [R] <span class="nb">RewriteRule</span> ^([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)$ index.php?db=$1&table=$2 [R] <span class="nb">RewriteRule</span> ^([a-zA-Z0-9_]+)$ index.php?db=$1 [R] </pre></div> </div> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="#faq4-8"><span class="std std-ref">4.8 Which parameters can I use in the URL that starts phpMyAdmin?</span></a></p> </div> <div class="versionchanged"> <p><span class="versionmodified changed">Changed in version 5.1.0: </span>Support for using the <code class="docutils literal notranslate"><span class="pre">target</span></code> parameter was removed in phpMyAdmin 5.1.0. Use the <code class="docutils literal notranslate"><span class="pre">route</span></code> parameter instead.</p> </div> </div> <div class="section" id="can-i-use-http-authentication-with-apache-cgi"> <span id="faq1-35"></span><h3>1.35 Can I use HTTP authentication with Apache CGI?<a class="headerlink" href="#can-i-use-http-authentication-with-apache-cgi" title="Permalink to this headline">¶</a></h3> <p>Yes. However you need to pass authentication variable to <a class="reference internal" href="glossary.html#term-CGI"><span class="xref std std-term">CGI</span></a> using following rewrite rule:</p> <div class="highlight-apache notranslate"><div class="highlight"><pre><span></span><span class="nb">RewriteEngine</span> <span class="k">On</span> <span class="nb">RewriteRule</span> .* - [E=REMOTE_USER:%{HTTP:Authorization},L] </pre></div> </div> </div> <div class="section" id="i-get-an-error-500-internal-server-error"> <span id="faq1-36"></span><h3>1.36 I get an error “500 Internal Server Error”.<a class="headerlink" href="#i-get-an-error-500-internal-server-error" title="Permalink to this headline">¶</a></h3> <p>There can be many explanations to this and a look at your server’s error log file might give a clue.</p> </div> <div class="section" id="i-run-phpmyadmin-on-cluster-of-different-machines-and-password-encryption-in-cookie-auth-doesn-t-work"> <span id="faq1-37"></span><h3>1.37 I run phpMyAdmin on cluster of different machines and password encryption in cookie auth doesn’t work.<a class="headerlink" href="#i-run-phpmyadmin-on-cluster-of-different-machines-and-password-encryption-in-cookie-auth-doesn-t-work" title="Permalink to this headline">¶</a></h3> <p>If your cluster consist of different architectures, PHP code used for encryption/decryption won’t work correctly. This is caused by use of pack/unpack functions in code. Only solution is to use openssl extension which works fine in this case.</p> </div> <div class="section" id="can-i-use-phpmyadmin-on-a-server-on-which-suhosin-is-enabled"> <span id="faq1-38"></span><h3>1.38 Can I use phpMyAdmin on a server on which Suhosin is enabled?<a class="headerlink" href="#can-i-use-phpmyadmin-on-a-server-on-which-suhosin-is-enabled" title="Permalink to this headline">¶</a></h3> <p>Yes but the default configuration values of Suhosin are known to cause problems with some operations, for example editing a table with many columns and no <a class="reference internal" href="glossary.html#term-primary-key"><span class="xref std std-term">primary key</span></a> or with textual <a class="reference internal" href="glossary.html#term-primary-key"><span class="xref std std-term">primary key</span></a>.</p> <p>Suhosin configuration might lead to malfunction in some cases and it can not be fully avoided as phpMyAdmin is kind of application which needs to transfer big amounts of columns in single HTTP request, what is something what Suhosin tries to prevent. Generally all <code class="docutils literal notranslate"><span class="pre">suhosin.request.*</span></code>, <code class="docutils literal notranslate"><span class="pre">suhosin.post.*</span></code> and <code class="docutils literal notranslate"><span class="pre">suhosin.get.*</span></code> directives can have negative effect on phpMyAdmin usability. You can always find in your error logs which limit did cause dropping of variable, so you can diagnose the problem and adjust matching configuration variable.</p> <p>The default values for most Suhosin configuration options will work in most scenarios, however you might want to adjust at least following parameters:</p> <ul class="simple"> <li><p><a class="reference external" href="https://suhosin.org/stories/configuration.html#suhosin-request-max-vars">suhosin.request.max_vars</a> should be increased (eg. 2048)</p></li> <li><p><a class="reference external" href="https://suhosin.org/stories/configuration.html#suhosin-post-max-vars">suhosin.post.max_vars</a> should be increased (eg. 2048)</p></li> <li><p><a class="reference external" href="https://suhosin.org/stories/configuration.html#suhosin-request-max-array-index-length">suhosin.request.max_array_index_length</a> should be increased (eg. 256)</p></li> <li><p><a class="reference external" href="https://suhosin.org/stories/configuration.html#suhosin-post-max-array-index-length">suhosin.post.max_array_index_length</a> should be increased (eg. 256)</p></li> <li><p><a class="reference external" href="https://suhosin.org/stories/configuration.html#suhosin-request-max-totalname-length">suhosin.request.max_totalname_length</a> should be increased (eg. 8192)</p></li> <li><p><a class="reference external" href="https://suhosin.org/stories/configuration.html#suhosin-post-max-totalname-length">suhosin.post.max_totalname_length</a> should be increased (eg. 8192)</p></li> <li><p><a class="reference external" href="https://suhosin.org/stories/configuration.html#suhosin-get-max-value-length">suhosin.get.max_value_length</a> should be increased (eg. 1024)</p></li> <li><p><a class="reference external" href="https://suhosin.org/stories/configuration.html#suhosin-sql-bailout-on-error">suhosin.sql.bailout_on_error</a> needs to be disabled (the default)</p></li> <li><p><a class="reference external" href="https://suhosin.org/stories/configuration.html#logging-configuration">suhosin.log.*</a> should not include <a class="reference internal" href="glossary.html#term-SQL"><span class="xref std std-term">SQL</span></a>, otherwise you get big slowdown</p></li> <li><p><a class="reference external" href="https://suhosin.org/stories/configuration.html#suhosin-sql-union">suhosin.sql.union</a> must be disabled (which is the default).</p></li> <li><p><a class="reference external" href="https://suhosin.org/stories/configuration.html#suhosin-sql-multiselect">suhosin.sql.multiselect</a> must be disabled (which is the default).</p></li> <li><p><a class="reference external" href="https://suhosin.org/stories/configuration.html#suhosin-sql-comment">suhosin.sql.comment</a> must be disabled (which is the default).</p></li> </ul> <p>To further improve security, we also recommend these modifications:</p> <ul class="simple"> <li><p><a class="reference external" href="https://suhosin.org/stories/configuration.html#suhosin-executor-include-max-traversal">suhosin.executor.include.max_traversal</a> should be enabled as a mitigation against local file inclusion attacks. We suggest setting this to 2 as <code class="docutils literal notranslate"><span class="pre">../</span></code> is used with the ReCaptcha library.</p></li> <li><p><a class="reference external" href="https://suhosin.org/stories/configuration.html#suhosin-cookie-encrypt">suhosin.cookie.encrypt</a> should be enabled.</p></li> <li><p><a class="reference external" href="https://suhosin.org/stories/configuration.html#suhosin-executor-disable-emodifier">suhosin.executor.disable_emodifier</a> should be enabled.</p></li> </ul> <p>You can also disable the warning using the <span class="target" id="index-5"></span><a class="reference internal" href="config.html#cfg_SuhosinDisableWarning"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['SuhosinDisableWarning']</span></code></a>.</p> </div> <div class="section" id="when-i-try-to-connect-via-https-i-can-log-in-but-then-my-connection-is-redirected-back-to-http-what-can-cause-this-behavior"> <span id="faq1-39"></span><h3>1.39 When I try to connect via https, I can log in, but then my connection is redirected back to http. What can cause this behavior?<a class="headerlink" href="#when-i-try-to-connect-via-https-i-can-log-in-but-then-my-connection-is-redirected-back-to-http-what-can-cause-this-behavior" title="Permalink to this headline">¶</a></h3> <p>This is caused by the fact that PHP scripts have no knowledge that the site is using https. Depending on used webserver, you should configure it to let PHP know about URL and scheme used to access it.</p> <p>For example in Apache ensure that you have enabled <code class="docutils literal notranslate"><span class="pre">SSLOptions</span></code> and <code class="docutils literal notranslate"><span class="pre">StdEnvVars</span></code> in the configuration.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><<a class="reference external" href="https://httpd.apache.org/docs/2.4/mod/mod_ssl.html">https://httpd.apache.org/docs/2.4/mod/mod_ssl.html</a>></p> </div> </div> <div class="section" id="when-accessing-phpmyadmin-via-an-apache-reverse-proxy-cookie-login-does-not-work"> <span id="faq1-40"></span><h3>1.40 When accessing phpMyAdmin via an Apache reverse proxy, cookie login does not work.<a class="headerlink" href="#when-accessing-phpmyadmin-via-an-apache-reverse-proxy-cookie-login-does-not-work" title="Permalink to this headline">¶</a></h3> <p>To be able to use cookie auth Apache must know that it has to rewrite the set-cookie headers. Example from the Apache 2.2 documentation:</p> <div class="highlight-apache notranslate"><div class="highlight"><pre><span></span><span class="nb">ProxyPass</span> <span class="sx">/mirror/foo/</span> http://backend.example.com/ <span class="nb">ProxyPassReverse</span> <span class="sx">/mirror/foo/</span> http://backend.example.com/ <span class="nb">ProxyPassReverseCookieDomain</span> backend.example.com public.example.com <span class="nb">ProxyPassReverseCookiePath</span> / <span class="sx">/mirror/foo/</span> </pre></div> </div> <p>Note: if the backend url looks like <code class="docutils literal notranslate"><span class="pre">http://server/~user/phpmyadmin</span></code>, the tilde (~) must be url encoded as %7E in the ProxyPassReverse* lines. This is not specific to phpmyadmin, it’s just the behavior of Apache.</p> <div class="highlight-apache notranslate"><div class="highlight"><pre><span></span><span class="nb">ProxyPass</span> <span class="sx">/mirror/foo/</span> http://backend.example.com/~user/phpmyadmin <span class="nb">ProxyPassReverse</span> <span class="sx">/mirror/foo/</span> http://backend.example.com/%7Euser/phpmyadmin <span class="nb">ProxyPassReverseCookiePath</span> /%7Euser/phpmyadmin <span class="sx">/mirror/foo</span> </pre></div> </div> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><<a class="reference external" href="https://httpd.apache.org/docs/2.2/mod/mod_proxy.html">https://httpd.apache.org/docs/2.2/mod/mod_proxy.html</a>>, <span class="target" id="index-6"></span><a class="reference internal" href="config.html#cfg_PmaAbsoluteUri"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['PmaAbsoluteUri']</span></code></a></p> </div> </div> <div class="section" id="when-i-view-a-database-and-ask-to-see-its-privileges-i-get-an-error-about-an-unknown-column"> <span id="faq1-41"></span><h3>1.41 When I view a database and ask to see its privileges, I get an error about an unknown column.<a class="headerlink" href="#when-i-view-a-database-and-ask-to-see-its-privileges-i-get-an-error-about-an-unknown-column" title="Permalink to this headline">¶</a></h3> <p>The MySQL server’s privilege tables are not up to date, you need to run the <strong class="command">mysql_upgrade</strong> command on the server.</p> </div> <div class="section" id="how-can-i-prevent-robots-from-accessing-phpmyadmin"> <span id="faq1-42"></span><h3>1.42 How can I prevent robots from accessing phpMyAdmin?<a class="headerlink" href="#how-can-i-prevent-robots-from-accessing-phpmyadmin" title="Permalink to this headline">¶</a></h3> <p>You can add various rules to <a class="reference internal" href="glossary.html#term-.htaccess"><span class="xref std std-term">.htaccess</span></a> to filter access based on user agent field. This is quite easy to circumvent, but could prevent at least some robots accessing your installation.</p> <div class="highlight-apache notranslate"><div class="highlight"><pre><span></span><span class="nb">RewriteEngine</span> <span class="k">on</span> <span class="c"># Allow only GET and POST verbs</span> <span class="nb">RewriteCond</span> %{REQUEST_METHOD} !^(GET|POST)$ [NC,OR] <span class="c"># Ban Typical Vulnerability Scanners and others</span> <span class="c"># Kick out Script Kiddies</span> <span class="nb">RewriteCond</span> %{HTTP_USER_AGENT} ^(java|curl|wget).* [NC,OR] <span class="nb">RewriteCond</span> %{HTTP_USER_AGENT} ^.*(libwww-perl|curl|wget|python|nikto|wkito|pikto|scan|acunetix).* [NC,OR] <span class="nb">RewriteCond</span> %{HTTP_USER_AGENT} ^.*(winhttp|HTTrack|clshttp|archiver|loader|email|harvest|extract|grab|miner).* [NC,OR] <span class="c"># Ban Search Engines, Crawlers to your administrative panel</span> <span class="c"># No reasons to access from bots</span> <span class="c"># Ultimately Better than the useless robots.txt</span> <span class="c"># Did google respect robots.txt?</span> <span class="c"># Try google: intitle:phpMyAdmin intext:"Welcome to phpMyAdmin *.*.*" intext:"Log in" -wiki -forum -forums -questions intext:"Cookies must be enabled"</span> <span class="nb">RewriteCond</span> %{HTTP_USER_AGENT} ^.*(AdsBot-Google|ia_archiver|Scooter|Ask.Jeeves|Baiduspider|Exabot|FAST.Enterprise.Crawler|FAST-WebCrawler|www\.neomo\.de|Gigabot|Mediapartners-Google|Google.Desktop|Feedfetcher-Google|Googlebot|heise-IT-Markt-Crawler|heritrix|ibm.com\cs/crawler|ICCrawler|ichiro|MJ12bot|MetagerBot|msnbot-NewsBlogs|msnbot|msnbot-media|NG-Search|lucene.apache.org|NutchCVS|OmniExplorer_Bot|online.link.validator|psbot0|Seekbot|Sensis.Web.Crawler|SEO.search.Crawler|Seoma.\[SEO.Crawler\]|SEOsearch|Snappy|www.urltrends.com|www.tkl.iis.u-tokyo.ac.jp/~crawler|SynooBot|crawleradmin.t-info@telekom.de|TurnitinBot|voyager|W3.SiteSearch.Crawler|W3C-checklink|W3C_Validator|www.WISEnutbot.com|yacybot|Yahoo-MMCrawler|Yahoo\!.DE.Slurp|Yahoo\!.Slurp|YahooSeeker).* [NC] <span class="nb">RewriteRule</span> .* - [F] </pre></div> </div> </div> <div class="section" id="why-can-t-i-display-the-structure-of-my-table-containing-hundreds-of-columns"> <span id="faq1-43"></span><h3>1.43 Why can’t I display the structure of my table containing hundreds of columns?<a class="headerlink" href="#why-can-t-i-display-the-structure-of-my-table-containing-hundreds-of-columns" title="Permalink to this headline">¶</a></h3> <p>Because your PHP’s <code class="docutils literal notranslate"><span class="pre">memory_limit</span></code> is too low; adjust it in <code class="file docutils literal notranslate"><span class="pre">php.ini</span></code>.</p> </div> <div class="section" id="how-can-i-reduce-the-installed-size-of-phpmyadmin-on-disk"> <span id="faq1-44"></span><h3>1.44 How can I reduce the installed size of phpMyAdmin on disk?<a class="headerlink" href="#how-can-i-reduce-the-installed-size-of-phpmyadmin-on-disk" title="Permalink to this headline">¶</a></h3> <p>Some users have requested to be able to reduce the size of the phpMyAdmin installation. This is not recommended and could lead to confusion over missing features, but can be done. A list of files and corresponding functionality which degrade gracefully when removed include:</p> <ul class="simple"> <li><p><code class="file docutils literal notranslate"><span class="pre">./vendor/tecnickcom/tcpdf</span></code> folder (exporting to PDF)</p></li> <li><p><code class="file docutils literal notranslate"><span class="pre">./locale/</span></code> folder, or unused subfolders (interface translations)</p></li> <li><p>Any unused themes in <code class="file docutils literal notranslate"><span class="pre">./themes/</span></code></p></li> <li><p><code class="file docutils literal notranslate"><span class="pre">./js/vendor/jquery/src/</span></code> (included for licensing reasons)</p></li> <li><p><code class="file docutils literal notranslate"><span class="pre">./js/line_counts.php</span></code> (removed in phpMyAdmin 4.8)</p></li> <li><p><code class="file docutils literal notranslate"><span class="pre">./doc/</span></code> (documentation)</p></li> <li><p><code class="file docutils literal notranslate"><span class="pre">./setup/</span></code> (setup script)</p></li> <li><p><code class="file docutils literal notranslate"><span class="pre">./examples/</span></code></p></li> <li><p><code class="file docutils literal notranslate"><span class="pre">./sql/</span></code> (SQL scripts to configure advanced functionality)</p></li> <li><p><code class="file docutils literal notranslate"><span class="pre">./js/vendor/openlayers/</span></code> (GIS visualization)</p></li> </ul> </div> <div class="section" id="i-get-an-error-message-about-unknown-authentication-method-caching-sha2-password-when-trying-to-log-in"> <span id="faq1-45"></span><h3>1.45 I get an error message about unknown authentication method caching_sha2_password when trying to log in<a class="headerlink" href="#i-get-an-error-message-about-unknown-authentication-method-caching-sha2-password-when-trying-to-log-in" title="Permalink to this headline">¶</a></h3> <p>When logging in using MySQL version 8 or newer, you may encounter an error message like this:</p> <blockquote> <div><p>mysqli_real_connect(): The server requested authentication method unknown to the client [caching_sha2_password]</p> <p>mysqli_real_connect(): (HY000/2054): The server requested authentication method unknown to the client</p> </div></blockquote> <p>This error is because of a version compatibility problem between PHP and MySQL. The MySQL project introduced a new authentication method (our tests show this began with version 8.0.11) however PHP did not include the ability to use that authentication method. PHP reports that this was fixed in PHP version 7.4.</p> <p>Users experiencing this are encouraged to upgrade their PHP installation, however a workaround exists. Your MySQL user account can be set to use the older authentication with a command such as</p> <div class="highlight-mysql notranslate"><div class="highlight"><pre><span></span><span class="k">ALTER</span> <span class="k">USER</span> <span class="s1">'root'</span><span class="nv">@'localhost'</span> <span class="k">IDENTIFIED</span> <span class="k">WITH</span> <span class="n">mysql_native_password</span> <span class="k">BY</span> <span class="s1">'PASSWORD'</span><span class="p">;</span> </pre></div> </div> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><<a class="reference external" href="https://github.com/phpmyadmin/phpmyadmin/issues/14220">https://github.com/phpmyadmin/phpmyadmin/issues/14220</a>>, <<a class="reference external" href="https://stackoverflow.com/questions/49948350/phpmyadmin-on-mysql-8-0">https://stackoverflow.com/questions/49948350/phpmyadmin-on-mysql-8-0</a>>, <<a class="reference external" href="https://bugs.php.net/bug.php?id=76243">https://bugs.php.net/bug.php?id=76243</a>></p> </div> </div> </div> <div class="section" id="configuration"> <span id="faqconfig"></span><h2>Configuration<a class="headerlink" href="#configuration" title="Permalink to this headline">¶</a></h2> <div class="section" id="the-error-message-warning-cannot-add-header-information-headers-already-sent-by-is-displayed-what-s-the-problem"> <span id="faq2-1"></span><h3>2.1 The error message “Warning: Cannot add header information - headers already sent by …” is displayed, what’s the problem?<a class="headerlink" href="#the-error-message-warning-cannot-add-header-information-headers-already-sent-by-is-displayed-what-s-the-problem" title="Permalink to this headline">¶</a></h3> <p>Edit your <code class="file docutils literal notranslate"><span class="pre">config.inc.php</span></code> file and ensure there is nothing (I.E. no blank lines, no spaces, no characters…) neither before the <code class="docutils literal notranslate"><span class="pre"><?php</span></code> tag at the beginning, neither after the <code class="docutils literal notranslate"><span class="pre">?></span></code> tag at the end.</p> </div> <div class="section" id="phpmyadmin-can-t-connect-to-mysql-what-s-wrong"> <span id="faq2-2"></span><h3>2.2 phpMyAdmin can’t connect to MySQL. What’s wrong?<a class="headerlink" href="#phpmyadmin-can-t-connect-to-mysql-what-s-wrong" title="Permalink to this headline">¶</a></h3> <p>Either there is an error with your PHP setup or your username/password is wrong. Try to make a small script which uses mysql_connect and see if it works. If it doesn’t, it may be you haven’t even compiled MySQL support into PHP.</p> </div> <div class="section" id="the-error-message-warning-mysql-connection-failed-can-t-connect-to-local-mysql-server-through-socket-tmp-mysql-sock-111-is-displayed-what-can-i-do"> <span id="faq2-3"></span><h3>2.3 The error message “Warning: MySQL Connection Failed: Can’t connect to local MySQL server through socket ‘/tmp/mysql.sock’ (111) …” is displayed. What can I do?<a class="headerlink" href="#the-error-message-warning-mysql-connection-failed-can-t-connect-to-local-mysql-server-through-socket-tmp-mysql-sock-111-is-displayed-what-can-i-do" title="Permalink to this headline">¶</a></h3> <p>The error message can also be: <span class="guilabel">Error #2002 - The server is not responding (or the local MySQL server’s socket is not correctly configured)</span>.</p> <p>First, you need to determine what socket is being used by MySQL. To do this, connect to your server and go to the MySQL bin directory. In this directory there should be a file named <em>mysqladmin</em>. Type <code class="docutils literal notranslate"><span class="pre">./mysqladmin</span> <span class="pre">variables</span></code>, and this should give you a bunch of info about your MySQL server, including the socket (<em>/tmp/mysql.sock</em>, for example). You can also ask your ISP for the connection info or, if you’re hosting your own, connect from the ‘mysql’ command-line client and type ‘status’ to get the connection type and socket or port number.</p> <p>Then, you need to tell PHP to use this socket. You can do this for all PHP in the <code class="file docutils literal notranslate"><span class="pre">php.ini</span></code> or for phpMyAdmin only in the <code class="file docutils literal notranslate"><span class="pre">config.inc.php</span></code>. For example: <span class="target" id="index-7"></span><a class="reference internal" href="config.html#cfg_Servers_socket"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['socket']</span></code></a> Please also make sure that the permissions of this file allow to be readable by your webserver.</p> <p>On my RedHat-Box the socket of MySQL is <em>/var/lib/mysql/mysql.sock</em>. In your <code class="file docutils literal notranslate"><span class="pre">php.ini</span></code> you will find a line</p> <div class="highlight-ini notranslate"><div class="highlight"><pre><span></span><span class="na">mysql.default_socket</span> <span class="o">=</span> <span class="s">/tmp/mysql.sock</span> </pre></div> </div> <p>change it to</p> <div class="highlight-ini notranslate"><div class="highlight"><pre><span></span><span class="na">mysql.default_socket</span> <span class="o">=</span> <span class="s">/var/lib/mysql/mysql.sock</span> </pre></div> </div> <p>Then restart apache and it will work.</p> <p>Have also a look at the <a class="reference external" href="https://dev.mysql.com/doc/refman/5.7/en/can-not-connect-to-server.html">corresponding section of the MySQL documentation</a>.</p> </div> <div class="section" id="nothing-is-displayed-by-my-browser-when-i-try-to-run-phpmyadmin-what-can-i-do"> <span id="faq2-4"></span><h3>2.4 Nothing is displayed by my browser when I try to run phpMyAdmin, what can I do?<a class="headerlink" href="#nothing-is-displayed-by-my-browser-when-i-try-to-run-phpmyadmin-what-can-i-do" title="Permalink to this headline">¶</a></h3> <p>Try to set the <span class="target" id="index-8"></span><a class="reference internal" href="config.html#cfg_OBGzip"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['OBGzip']</span></code></a> directive to <code class="docutils literal notranslate"><span class="pre">false</span></code> in the phpMyAdmin configuration file. It helps sometime. Also have a look at your PHP version number: if it contains “b” or “alpha” it means you’re running a testing version of PHP. That’s not a so good idea, please upgrade to a plain revision.</p> </div> <div class="section" id="each-time-i-want-to-insert-or-change-a-row-or-drop-a-database-or-a-table-an-error-404-page-not-found-is-displayed-or-with-http-or-cookie-authentication-i-m-asked-to-log-in-again-what-s-wrong"> <span id="faq2-5"></span><h3>2.5 Each time I want to insert or change a row or drop a database or a table, an error 404 (page not found) is displayed or, with HTTP or cookie authentication, I’m asked to log in again. What’s wrong?<a class="headerlink" href="#each-time-i-want-to-insert-or-change-a-row-or-drop-a-database-or-a-table-an-error-404-page-not-found-is-displayed-or-with-http-or-cookie-authentication-i-m-asked-to-log-in-again-what-s-wrong" title="Permalink to this headline">¶</a></h3> <p>Check your webserver setup if it correctly fills in either PHP_SELF or REQUEST_URI variables.</p> <p>If you are running phpMyAdmin behind reverse proxy, please set the <span class="target" id="index-9"></span><a class="reference internal" href="config.html#cfg_PmaAbsoluteUri"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['PmaAbsoluteUri']</span></code></a> directive in the phpMyAdmin configuration file to match your setup.</p> </div> <div class="section" id="i-get-an-access-denied-for-user-root-localhost-using-password-yes-error-when-trying-to-access-a-mysql-server-on-a-host-which-is-port-forwarded-for-my-localhost"> <span id="faq2-6"></span><h3>2.6 I get an “Access denied for user: <a class="reference external" href="mailto:'root%40localhost">‘root<span>@</span>localhost</a>’ (Using password: YES)”-error when trying to access a MySQL-Server on a host which is port-forwarded for my localhost.<a class="headerlink" href="#i-get-an-access-denied-for-user-root-localhost-using-password-yes-error-when-trying-to-access-a-mysql-server-on-a-host-which-is-port-forwarded-for-my-localhost" title="Permalink to this headline">¶</a></h3> <p>When you are using a port on your localhost, which you redirect via port-forwarding to another host, MySQL is not resolving the localhost as expected. Erik Wasser explains: The solution is: if your host is “localhost” MySQL (the command line tool <strong class="command">mysql</strong> as well) always tries to use the socket connection for speeding up things. And that doesn’t work in this configuration with port forwarding. If you enter “127.0.0.1” as hostname, everything is right and MySQL uses the <a class="reference internal" href="glossary.html#term-TCP"><span class="xref std std-term">TCP</span></a> connection.</p> </div> <div class="section" id="using-and-creating-themes"> <span id="faqthemes"></span><h3>2.7 Using and creating themes<a class="headerlink" href="#using-and-creating-themes" title="Permalink to this headline">¶</a></h3> <p>See <a class="reference internal" href="themes.html#themes"><span class="std std-ref">Custom Themes</span></a>.</p> </div> <div class="section" id="i-get-missing-parameters-errors-what-can-i-do"> <span id="faqmissingparameters"></span><h3>2.8 I get “Missing parameters” errors, what can I do?<a class="headerlink" href="#i-get-missing-parameters-errors-what-can-i-do" title="Permalink to this headline">¶</a></h3> <p>Here are a few points to check:</p> <ul class="simple"> <li><p>In <code class="file docutils literal notranslate"><span class="pre">config.inc.php</span></code>, try to leave the <span class="target" id="index-10"></span><a class="reference internal" href="config.html#cfg_PmaAbsoluteUri"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['PmaAbsoluteUri']</span></code></a> directive empty. See also <a class="reference internal" href="#faq4-7"><span class="std std-ref">4.7 Authentication window is displayed more than once, why?</span></a>.</p></li> <li><p>Maybe you have a broken PHP installation or you need to upgrade your Zend Optimizer. See <<a class="reference external" href="https://bugs.php.net/bug.php?id=31134">https://bugs.php.net/bug.php?id=31134</a>>.</p></li> <li><p>If you are using Hardened PHP with the ini directive <code class="docutils literal notranslate"><span class="pre">varfilter.max_request_variables</span></code> set to the default (200) or another low value, you could get this error if your table has a high number of columns. Adjust this setting accordingly. (Thanks to Klaus Dorninger for the hint).</p></li> <li><p>In the <code class="file docutils literal notranslate"><span class="pre">php.ini</span></code> directive <code class="docutils literal notranslate"><span class="pre">arg_separator.input</span></code>, a value of “;” will cause this error. Replace it with “&;”.</p></li> <li><p>If you are using <a class="reference external" href="https://suhosin.org/stories/index.html">Suhosin</a>, you might want to increase <a class="reference external" href="https://suhosin.org/stories/faq.html">request limits</a>.</p></li> <li><p>The directory specified in the <code class="file docutils literal notranslate"><span class="pre">php.ini</span></code> directive <code class="docutils literal notranslate"><span class="pre">session.save_path</span></code> does not exist or is read-only (this can be caused by <a class="reference external" href="https://bugs.php.net/bug.php?id=39842">bug in the PHP installer</a>).</p></li> </ul> </div> <div class="section" id="seeing-an-upload-progress-bar"> <span id="faq2-9"></span><h3>2.9 Seeing an upload progress bar<a class="headerlink" href="#seeing-an-upload-progress-bar" title="Permalink to this headline">¶</a></h3> <p>To be able to see a progress bar during your uploads, your server must have the <a class="reference external" href="https://pecl.php.net/package/uploadprogress">uploadprogress</a> extension, and you must be running PHP 5.4.0 or higher. Moreover, the JSON extension has to be enabled in your PHP.</p> <p>If using PHP 5.4.0 or higher, you must set <code class="docutils literal notranslate"><span class="pre">session.upload_progress.enabled</span></code> to <code class="docutils literal notranslate"><span class="pre">1</span></code> in your <code class="file docutils literal notranslate"><span class="pre">php.ini</span></code>. However, starting from phpMyAdmin version 4.0.4, session-based upload progress has been temporarily deactivated due to its problematic behavior.</p> </div> </div> <div class="section" id="known-limitations"> <span id="faqlimitations"></span><h2>Known limitations<a class="headerlink" href="#known-limitations" title="Permalink to this headline">¶</a></h2> <div class="section" id="when-using-http-authentication-a-user-who-logged-out-can-not-log-in-again-in-with-the-same-nick"> <span id="login-bug"></span><h3>3.1 When using HTTP authentication, a user who logged out can not log in again in with the same nick.<a class="headerlink" href="#when-using-http-authentication-a-user-who-logged-out-can-not-log-in-again-in-with-the-same-nick" title="Permalink to this headline">¶</a></h3> <p>This is related to the authentication mechanism (protocol) used by phpMyAdmin. To bypass this problem: just close all the opened browser windows and then go back to phpMyAdmin. You should be able to log in again.</p> </div> <div class="section" id="when-dumping-a-large-table-in-compressed-mode-i-get-a-memory-limit-error-or-a-time-limit-error"> <span id="faq3-2"></span><h3>3.2 When dumping a large table in compressed mode, I get a memory limit error or a time limit error.<a class="headerlink" href="#when-dumping-a-large-table-in-compressed-mode-i-get-a-memory-limit-error-or-a-time-limit-error" title="Permalink to this headline">¶</a></h3> <p>Compressed dumps are built in memory and because of this are limited to php’s memory limit. For gzip/bzip2 exports this can be overcome since 2.5.4 using <span class="target" id="index-11"></span><a class="reference internal" href="config.html#cfg_CompressOnFly"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['CompressOnFly']</span></code></a> (enabled by default). zip exports can not be handled this way, so if you need zip files for larger dump, you have to use another way.</p> </div> <div class="section" id="with-innodb-tables-i-lose-foreign-key-relationships-when-i-rename-a-table-or-a-column"> <span id="faq3-3"></span><h3>3.3 With InnoDB tables, I lose foreign key relationships when I rename a table or a column.<a class="headerlink" href="#with-innodb-tables-i-lose-foreign-key-relationships-when-i-rename-a-table-or-a-column" title="Permalink to this headline">¶</a></h3> <p>This is an InnoDB bug, see <<a class="reference external" href="https://bugs.mysql.com/bug.php?id=21704">https://bugs.mysql.com/bug.php?id=21704</a>>.</p> </div> <div class="section" id="i-am-unable-to-import-dumps-i-created-with-the-mysqldump-tool-bundled-with-the-mysql-server-distribution"> <span id="faq3-4"></span><h3>3.4 I am unable to import dumps I created with the mysqldump tool bundled with the MySQL server distribution.<a class="headerlink" href="#i-am-unable-to-import-dumps-i-created-with-the-mysqldump-tool-bundled-with-the-mysql-server-distribution" title="Permalink to this headline">¶</a></h3> <p>The problem is that older versions of <code class="docutils literal notranslate"><span class="pre">mysqldump</span></code> created invalid comments like this:</p> <div class="highlight-mysql notranslate"><div class="highlight"><pre><span></span><span class="c1">-- MySQL dump 8.22</span> <span class="c1">--</span> <span class="c1">-- Host: localhost Database: database</span> <span class="o">---------------------------------------------------------</span> <span class="c1">-- Server version 3.23.54</span> </pre></div> </div> <p>The invalid part of the code is the horizontal line made of dashes that appears once in every dump created with mysqldump. If you want to run your dump you have to turn it into valid MySQL. This means, you have to add a whitespace after the first two dashes of the line or add a # before it: <code class="docutils literal notranslate"><span class="pre">--</span> <span class="pre">-------------------------------------------------------</span></code> or <code class="docutils literal notranslate"><span class="pre">#---------------------------------------------------------</span></code></p> </div> <div class="section" id="when-using-nested-folders-multiple-hierarchies-are-displayed-in-a-wrong-manner"> <span id="faq3-5"></span><h3>3.5 When using nested folders, multiple hierarchies are displayed in a wrong manner.<a class="headerlink" href="#when-using-nested-folders-multiple-hierarchies-are-displayed-in-a-wrong-manner" title="Permalink to this headline">¶</a></h3> <p>Please note that you should not use the separating string multiple times without any characters between them, or at the beginning/end of your table name. If you have to, think about using another TableSeparator or disabling that feature.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><span class="target" id="index-12"></span><a class="reference internal" href="config.html#cfg_NavigationTreeTableSeparator"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['NavigationTreeTableSeparator']</span></code></a></p> </div> </div> <div class="section" id="faq3-6"> <span id="id7"></span><h3>3.6 (withdrawn).<a class="headerlink" href="#faq3-6" title="Permalink to this headline">¶</a></h3> </div> <div class="section" id="i-have-table-with-many-100-columns-and-when-i-try-to-browse-table-i-get-series-of-errors-like-warning-unable-to-parse-url-how-can-this-be-fixed"> <span id="faq3-7"></span><h3>3.7 I have table with many (100+) columns and when I try to browse table I get series of errors like “Warning: unable to parse url”. How can this be fixed?<a class="headerlink" href="#i-have-table-with-many-100-columns-and-when-i-try-to-browse-table-i-get-series-of-errors-like-warning-unable-to-parse-url-how-can-this-be-fixed" title="Permalink to this headline">¶</a></h3> <p>Your table neither have a <a class="reference internal" href="glossary.html#term-primary-key"><span class="xref std std-term">primary key</span></a> nor an <a class="reference internal" href="glossary.html#term-unique-key"><span class="xref std std-term">unique key</span></a>, so we must use a long expression to identify this row. This causes problems to parse_url function. The workaround is to create a <a class="reference internal" href="glossary.html#term-primary-key"><span class="xref std std-term">primary key</span></a> or <a class="reference internal" href="glossary.html#term-unique-key"><span class="xref std std-term">unique key</span></a>.</p> </div> <div class="section" id="i-cannot-use-clickable-html-forms-in-columns-where-i-put-a-mime-transformation-onto"> <span id="faq3-8"></span><h3>3.8 I cannot use (clickable) HTML-forms in columns where I put a MIME-Transformation onto!<a class="headerlink" href="#i-cannot-use-clickable-html-forms-in-columns-where-i-put-a-mime-transformation-onto" title="Permalink to this headline">¶</a></h3> <p>Due to a surrounding form-container (for multi-row delete checkboxes), no nested forms can be put inside the table where phpMyAdmin displays the results. You can, however, use any form inside of a table if keep the parent form-container with the target to tbl_row_delete.php and just put your own input-elements inside. If you use a custom submit input field, the form will submit itself to the displaying page again, where you can validate the $HTTP_POST_VARS in a transformation. For a tutorial on how to effectively use transformations, see our <a class="reference external" href="https://www.phpmyadmin.net/docs/">Link section</a> on the official phpMyAdmin-homepage.</p> </div> <div class="section" id="i-get-error-messages-when-using-sql-mode-ansi-for-the-mysql-server"> <span id="faq3-9"></span><h3>3.9 I get error messages when using “–sql_mode=ANSI” for the MySQL server.<a class="headerlink" href="#i-get-error-messages-when-using-sql-mode-ansi-for-the-mysql-server" title="Permalink to this headline">¶</a></h3> <p>When MySQL is running in ANSI-compatibility mode, there are some major differences in how <a class="reference internal" href="glossary.html#term-SQL"><span class="xref std std-term">SQL</span></a> is structured (see <<a class="reference external" href="https://dev.mysql.com/doc/refman/5.7/en/sql-mode.html">https://dev.mysql.com/doc/refman/5.7/en/sql-mode.html</a>>). Most important of all, the quote-character (“) is interpreted as an identifier quote character and not as a string quote character, which makes many internal phpMyAdmin operations into invalid <a class="reference internal" href="glossary.html#term-SQL"><span class="xref std std-term">SQL</span></a> statements. There is no workaround to this behaviour. News to this item will be posted in <a class="reference external" href="https://github.com/phpmyadmin/phpmyadmin/issues/7383">issue #7383</a>.</p> </div> <div class="section" id="homonyms-and-no-primary-key-when-the-results-of-a-select-display-more-that-one-column-with-the-same-value-for-example-select-lastname-from-employees-where-firstname-like-a-and-two-smith-values-are-displayed-if-i-click-edit-i-cannot-be-sure-that-i-am-editing-the-intended-row"> <span id="faq3-10"></span><h3>3.10 Homonyms and no primary key: When the results of a SELECT display more that one column with the same value (for example <code class="docutils literal notranslate"><span class="pre">SELECT</span> <span class="pre">lastname</span> <span class="pre">from</span> <span class="pre">employees</span> <span class="pre">where</span> <span class="pre">firstname</span> <span class="pre">like</span> <span class="pre">'A%'</span></code> and two “Smith” values are displayed), if I click Edit I cannot be sure that I am editing the intended row.<a class="headerlink" href="#homonyms-and-no-primary-key-when-the-results-of-a-select-display-more-that-one-column-with-the-same-value-for-example-select-lastname-from-employees-where-firstname-like-a-and-two-smith-values-are-displayed-if-i-click-edit-i-cannot-be-sure-that-i-am-editing-the-intended-row" title="Permalink to this headline">¶</a></h3> <p>Please make sure that your table has a <a class="reference internal" href="glossary.html#term-primary-key"><span class="xref std std-term">primary key</span></a>, so that phpMyAdmin can use it for the Edit and Delete links.</p> </div> <div class="section" id="the-number-of-rows-for-innodb-tables-is-not-correct"> <span id="faq3-11"></span><h3>3.11 The number of rows for InnoDB tables is not correct.<a class="headerlink" href="#the-number-of-rows-for-innodb-tables-is-not-correct" title="Permalink to this headline">¶</a></h3> <p>phpMyAdmin uses a quick method to get the row count, and this method only returns an approximate count in the case of InnoDB tables. See <span class="target" id="index-13"></span><a class="reference internal" href="config.html#cfg_MaxExactCount"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['MaxExactCount']</span></code></a> for a way to modify those results, but this could have a serious impact on performance. However, one can easily replace the approximate row count with exact count by simply clicking on the approximate count. This can also be done for all tables at once by clicking on the rows sum displayed at the bottom.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><span class="target" id="index-14"></span><a class="reference internal" href="config.html#cfg_MaxExactCount"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['MaxExactCount']</span></code></a></p> </div> </div> <div class="section" id="faq3-12"> <span id="id9"></span><h3>3.12 (withdrawn).<a class="headerlink" href="#faq3-12" title="Permalink to this headline">¶</a></h3> </div> <div class="section" id="i-get-an-error-when-entering-use-followed-by-a-db-name-containing-an-hyphen"> <span id="faq3-13"></span><h3>3.13 I get an error when entering <code class="docutils literal notranslate"><span class="pre">USE</span></code> followed by a db name containing an hyphen.<a class="headerlink" href="#i-get-an-error-when-entering-use-followed-by-a-db-name-containing-an-hyphen" title="Permalink to this headline">¶</a></h3> <p>The tests I have made with MySQL 5.1.49 shows that the API does not accept this syntax for the USE command.</p> </div> <div class="section" id="i-am-not-able-to-browse-a-table-when-i-don-t-have-the-right-to-select-one-of-the-columns"> <span id="faq3-14"></span><h3>3.14 I am not able to browse a table when I don’t have the right to SELECT one of the columns.<a class="headerlink" href="#i-am-not-able-to-browse-a-table-when-i-don-t-have-the-right-to-select-one-of-the-columns" title="Permalink to this headline">¶</a></h3> <p>This has been a known limitation of phpMyAdmin since the beginning and it’s not likely to be solved in the future.</p> </div> <div class="section" id="faq3-15"> <span id="id10"></span><h3>3.15 (withdrawn).<a class="headerlink" href="#faq3-15" title="Permalink to this headline">¶</a></h3> </div> <div class="section" id="faq3-16"> <span id="id11"></span><h3>3.16 (withdrawn).<a class="headerlink" href="#faq3-16" title="Permalink to this headline">¶</a></h3> </div> <div class="section" id="faq3-17"> <span id="id12"></span><h3>3.17 (withdrawn).<a class="headerlink" href="#faq3-17" title="Permalink to this headline">¶</a></h3> </div> <div class="section" id="when-i-import-a-csv-file-that-contains-multiple-tables-they-are-lumped-together-into-a-single-table"> <span id="faq3-18"></span><h3>3.18 When I import a CSV file that contains multiple tables, they are lumped together into a single table.<a class="headerlink" href="#when-i-import-a-csv-file-that-contains-multiple-tables-they-are-lumped-together-into-a-single-table" title="Permalink to this headline">¶</a></h3> <p>There is no reliable way to differentiate tables in <a class="reference internal" href="glossary.html#term-CSV"><span class="xref std std-term">CSV</span></a> format. For the time being, you will have to break apart <a class="reference internal" href="glossary.html#term-CSV"><span class="xref std std-term">CSV</span></a> files containing multiple tables.</p> </div> <div class="section" id="when-i-import-a-file-and-have-phpmyadmin-determine-the-appropriate-data-structure-it-only-uses-int-decimal-and-varchar-types"> <span id="faq3-19"></span><h3>3.19 When I import a file and have phpMyAdmin determine the appropriate data structure it only uses int, decimal, and varchar types.<a class="headerlink" href="#when-i-import-a-file-and-have-phpmyadmin-determine-the-appropriate-data-structure-it-only-uses-int-decimal-and-varchar-types" title="Permalink to this headline">¶</a></h3> <p>Currently, the import type-detection system can only assign these MySQL types to columns. In future, more will likely be added but for the time being you will have to edit the structure to your liking post-import. Also, you should note the fact that phpMyAdmin will use the size of the largest item in any given column as the column size for the appropriate type. If you know you will be adding larger items to that column then you should manually adjust the column sizes accordingly. This is done for the sake of efficiency.</p> </div> <div class="section" id="after-upgrading-some-bookmarks-are-gone-or-their-content-cannot-be-shown"> <span id="faq3-20"></span><h3>3.20 After upgrading, some bookmarks are gone or their content cannot be shown.<a class="headerlink" href="#after-upgrading-some-bookmarks-are-gone-or-their-content-cannot-be-shown" title="Permalink to this headline">¶</a></h3> <p>At some point, the character set used to store bookmark content has changed. It’s better to recreate your bookmark from the newer phpMyAdmin version.</p> </div> <div class="section" id="i-am-unable-to-log-in-with-a-username-containing-unicode-characters-such-as-a"> <span id="faq3-21"></span><h3>3.21 I am unable to log in with a username containing unicode characters such as á.<a class="headerlink" href="#i-am-unable-to-log-in-with-a-username-containing-unicode-characters-such-as-a" title="Permalink to this headline">¶</a></h3> <p>This can happen if MySQL server is not configured to use utf-8 as default charset. This is a limitation of how PHP and the MySQL server interact; there is no way for PHP to set the charset before authenticating.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference external" href="https://github.com/phpmyadmin/phpmyadmin/issues/12232">phpMyAdmin issue 12232</a>, <a class="reference external" href="https://www.php.net/manual/en/mysqli.real-connect.php#refsect1-mysqli.real-connect-notes">MySQL documentation note</a></p> </div> </div> </div> <div class="section" id="isps-multi-user-installations"> <span id="faqmultiuser"></span><h2>ISPs, multi-user installations<a class="headerlink" href="#isps-multi-user-installations" title="Permalink to this headline">¶</a></h2> <div class="section" id="i-m-an-isp-can-i-setup-one-central-copy-of-phpmyadmin-or-do-i-need-to-install-it-for-each-customer"> <span id="faq4-1"></span><h3>4.1 I’m an ISP. Can I setup one central copy of phpMyAdmin or do I need to install it for each customer?<a class="headerlink" href="#i-m-an-isp-can-i-setup-one-central-copy-of-phpmyadmin-or-do-i-need-to-install-it-for-each-customer" title="Permalink to this headline">¶</a></h3> <p>Since version 2.0.3, you can setup a central copy of phpMyAdmin for all your users. The development of this feature was kindly sponsored by NetCologne GmbH. This requires a properly setup MySQL user management and phpMyAdmin <a class="reference internal" href="glossary.html#term-HTTP"><span class="xref std std-term">HTTP</span></a> or cookie authentication.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="setup.html#authentication-modes"><span class="std std-ref">Using authentication modes</span></a></p> </div> </div> <div class="section" id="what-s-the-preferred-way-of-making-phpmyadmin-secure-against-evil-access"> <span id="faq4-2"></span><h3>4.2 What’s the preferred way of making phpMyAdmin secure against evil access?<a class="headerlink" href="#what-s-the-preferred-way-of-making-phpmyadmin-secure-against-evil-access" title="Permalink to this headline">¶</a></h3> <p>This depends on your system. If you’re running a server which cannot be accessed by other people, it’s sufficient to use the directory protection bundled with your webserver (with Apache you can use <a class="reference internal" href="glossary.html#term-.htaccess"><span class="xref std std-term">.htaccess</span></a> files, for example). If other people have telnet access to your server, you should use phpMyAdmin’s <a class="reference internal" href="glossary.html#term-HTTP"><span class="xref std std-term">HTTP</span></a> or cookie authentication features.</p> <p>Suggestions:</p> <ul class="simple"> <li><p>Your <code class="file docutils literal notranslate"><span class="pre">config.inc.php</span></code> file should be <code class="docutils literal notranslate"><span class="pre">chmod</span> <span class="pre">660</span></code>.</p></li> <li><p>All your phpMyAdmin files should be chown -R phpmy.apache, where phpmy is a user whose password is only known to you, and apache is the group under which Apache runs.</p></li> <li><p>Follow security recommendations for PHP and your webserver.</p></li> </ul> </div> <div class="section" id="i-get-errors-about-not-being-able-to-include-a-file-in-lang-or-in-libraries"> <span id="faq4-3"></span><h3>4.3 I get errors about not being able to include a file in <em>/lang</em> or in <em>/libraries</em>.<a class="headerlink" href="#i-get-errors-about-not-being-able-to-include-a-file-in-lang-or-in-libraries" title="Permalink to this headline">¶</a></h3> <p>Check <code class="file docutils literal notranslate"><span class="pre">php.ini</span></code>, or ask your sysadmin to check it. The <code class="docutils literal notranslate"><span class="pre">include_path</span></code> must contain “.” somewhere in it, and <code class="docutils literal notranslate"><span class="pre">open_basedir</span></code>, if used, must contain “.” and “./lang” to allow normal operation of phpMyAdmin.</p> </div> <div class="section" id="phpmyadmin-always-gives-access-denied-when-using-http-authentication"> <span id="faq4-4"></span><h3>4.4 phpMyAdmin always gives “Access denied” when using HTTP authentication.<a class="headerlink" href="#phpmyadmin-always-gives-access-denied-when-using-http-authentication" title="Permalink to this headline">¶</a></h3> <p>This could happen for several reasons:</p> <ul class="simple"> <li><p><span class="target" id="index-15"></span><a class="reference internal" href="config.html#cfg_Servers_controluser"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['controluser']</span></code></a> and/or <span class="target" id="index-16"></span><a class="reference internal" href="config.html#cfg_Servers_controlpass"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['controlpass']</span></code></a> are wrong.</p></li> <li><p>The username/password you specify in the login dialog are invalid.</p></li> <li><p>You have already setup a security mechanism for the phpMyAdmin- directory, eg. a <a class="reference internal" href="glossary.html#term-.htaccess"><span class="xref std std-term">.htaccess</span></a> file. This would interfere with phpMyAdmin’s authentication, so remove it.</p></li> </ul> </div> <div class="section" id="is-it-possible-to-let-users-create-their-own-databases"> <span id="faq4-5"></span><h3>4.5 Is it possible to let users create their own databases?<a class="headerlink" href="#is-it-possible-to-let-users-create-their-own-databases" title="Permalink to this headline">¶</a></h3> <p>Starting with 2.2.5, in the user management page, you can enter a wildcard database name for a user (for example “joe%”), and put the privileges you want. For example, adding <code class="docutils literal notranslate"><span class="pre">SELECT,</span> <span class="pre">INSERT,</span> <span class="pre">UPDATE,</span> <span class="pre">DELETE,</span> <span class="pre">CREATE,</span> <span class="pre">DROP,</span> <span class="pre">INDEX,</span> <span class="pre">ALTER</span></code> would let a user create/manage their database(s).</p> </div> <div class="section" id="how-can-i-use-the-host-based-authentication-additions"> <span id="faq4-6"></span><h3>4.6 How can I use the Host-based authentication additions?<a class="headerlink" href="#how-can-i-use-the-host-based-authentication-additions" title="Permalink to this headline">¶</a></h3> <p>If you have existing rules from an old <a class="reference internal" href="glossary.html#term-.htaccess"><span class="xref std std-term">.htaccess</span></a> file, you can take them and add a username between the <code class="docutils literal notranslate"><span class="pre">'deny'</span></code>/<code class="docutils literal notranslate"><span class="pre">'allow'</span></code> and <code class="docutils literal notranslate"><span class="pre">'from'</span></code> strings. Using the username wildcard of <code class="docutils literal notranslate"><span class="pre">'%'</span></code> would be a major benefit here if your installation is suited to using it. Then you can just add those updated lines into the <span class="target" id="index-17"></span><a class="reference internal" href="config.html#cfg_Servers_AllowDeny_rules"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['AllowDeny']['rules']</span></code></a> array.</p> <p>If you want a pre-made sample, you can try this fragment. It stops the ‘root’ user from logging in from any networks other than the private network <a class="reference internal" href="glossary.html#term-IP"><span class="xref std std-term">IP</span></a> blocks.</p> <div class="highlight-php notranslate"><div class="highlight"><pre><span></span><span class="c1">//block root from logging in except from the private networks</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'AllowDeny'</span><span class="p">][</span><span class="s1">'order'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'deny,allow'</span><span class="p">;</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'AllowDeny'</span><span class="p">][</span><span class="s1">'rules'</span><span class="p">]</span> <span class="o">=</span> <span class="p">[</span> <span class="s1">'deny root from all'</span><span class="p">,</span> <span class="s1">'allow root from localhost'</span><span class="p">,</span> <span class="s1">'allow root from 10.0.0.0/8'</span><span class="p">,</span> <span class="s1">'allow root from 192.168.0.0/16'</span><span class="p">,</span> <span class="s1">'allow root from 172.16.0.0/12'</span><span class="p">,</span> <span class="p">];</span> </pre></div> </div> </div> <div class="section" id="authentication-window-is-displayed-more-than-once-why"> <span id="faq4-7"></span><h3>4.7 Authentication window is displayed more than once, why?<a class="headerlink" href="#authentication-window-is-displayed-more-than-once-why" title="Permalink to this headline">¶</a></h3> <p>This happens if you are using a <a class="reference internal" href="glossary.html#term-URL"><span class="xref std std-term">URL</span></a> to start phpMyAdmin which is different than the one set in your <span class="target" id="index-18"></span><a class="reference internal" href="config.html#cfg_PmaAbsoluteUri"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['PmaAbsoluteUri']</span></code></a>. For example, a missing “www”, or entering with an <a class="reference internal" href="glossary.html#term-IP"><span class="xref std std-term">IP</span></a> address while a domain name is defined in the config file.</p> </div> <div class="section" id="which-parameters-can-i-use-in-the-url-that-starts-phpmyadmin"> <span id="faq4-8"></span><h3>4.8 Which parameters can I use in the URL that starts phpMyAdmin?<a class="headerlink" href="#which-parameters-can-i-use-in-the-url-that-starts-phpmyadmin" title="Permalink to this headline">¶</a></h3> <p>When starting phpMyAdmin, you can use the <code class="docutils literal notranslate"><span class="pre">db</span></code> and <code class="docutils literal notranslate"><span class="pre">server</span></code> parameters. This last one can contain either the numeric host index (from <code class="docutils literal notranslate"><span class="pre">$i</span></code> of the configuration file) or one of the host names present in the configuration file.</p> <p>For example, to jump directly to a particular database, a URL can be constructed as <code class="docutils literal notranslate"><span class="pre">https://example.com/phpmyadmin/?db=sakila</span></code>.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="#faq1-34"><span class="std std-ref">1.34 Can I directly access a database or table pages?</span></a></p> </div> <div class="versionchanged"> <p><span class="versionmodified changed">Changed in version 4.9.0: </span>Support for using the <code class="docutils literal notranslate"><span class="pre">pma_username</span></code> and <code class="docutils literal notranslate"><span class="pre">pma_password</span></code> parameters was removed in phpMyAdmin 4.9.0 (see <a class="reference external" href="https://www.phpmyadmin.net/security/PMASA-2019-4/">PMASA-2019-4</a>).</p> </div> </div> </div> <div class="section" id="browsers-or-client-os"> <span id="faqbrowsers"></span><h2>Browsers or client OS<a class="headerlink" href="#browsers-or-client-os" title="Permalink to this headline">¶</a></h2> <div class="section" id="i-get-an-out-of-memory-error-and-my-controls-are-non-functional-when-trying-to-create-a-table-with-more-than-14-columns"> <span id="faq5-1"></span><h3>5.1 I get an out of memory error, and my controls are non-functional, when trying to create a table with more than 14 columns.<a class="headerlink" href="#i-get-an-out-of-memory-error-and-my-controls-are-non-functional-when-trying-to-create-a-table-with-more-than-14-columns" title="Permalink to this headline">¶</a></h3> <p>We could reproduce this problem only under Win98/98SE. Testing under WinNT4 or Win2K, we could easily create more than 60 columns. A workaround is to create a smaller number of columns, then come back to your table properties and add the other columns.</p> </div> <div class="section" id="with-xitami-2-5b4-phpmyadmin-won-t-process-form-fields"> <span id="faq5-2"></span><h3>5.2 With Xitami 2.5b4, phpMyAdmin won’t process form fields.<a class="headerlink" href="#with-xitami-2-5b4-phpmyadmin-won-t-process-form-fields" title="Permalink to this headline">¶</a></h3> <p>This is not a phpMyAdmin problem but a Xitami known bug: you’ll face it with each script/website that use forms. Upgrade or downgrade your Xitami server.</p> </div> <div class="section" id="i-have-problems-dumping-tables-with-konqueror-phpmyadmin-2-2-2"> <span id="faq5-3"></span><h3>5.3 I have problems dumping tables with Konqueror (phpMyAdmin 2.2.2).<a class="headerlink" href="#i-have-problems-dumping-tables-with-konqueror-phpmyadmin-2-2-2" title="Permalink to this headline">¶</a></h3> <p>With Konqueror 2.1.1: plain dumps, zip and gzip dumps work ok, except that the proposed file name for the dump is always ‘tbl_dump.php’. The bzip2 dumps don’t seem to work. With Konqueror 2.2.1: plain dumps work; zip dumps are placed into the user’s temporary directory, so they must be moved before closing Konqueror, or else they disappear. gzip dumps give an error message. Testing needs to be done for Konqueror 2.2.2.</p> </div> <div class="section" id="i-can-t-use-the-cookie-authentication-mode-because-internet-explorer-never-stores-the-cookies"> <span id="faq5-4"></span><h3>5.4 I can’t use the cookie authentication mode because Internet Explorer never stores the cookies.<a class="headerlink" href="#i-can-t-use-the-cookie-authentication-mode-because-internet-explorer-never-stores-the-cookies" title="Permalink to this headline">¶</a></h3> <p>MS Internet Explorer seems to be really buggy about cookies, at least till version 6.</p> </div> <div class="section" id="faq5-5"> <span id="id13"></span><h3>5.5 (withdrawn).<a class="headerlink" href="#faq5-5" title="Permalink to this headline">¶</a></h3> </div> <div class="section" id="faq5-6"> <span id="id14"></span><h3>5.6 (withdrawn).<a class="headerlink" href="#faq5-6" title="Permalink to this headline">¶</a></h3> </div> <div class="section" id="i-refresh-reload-my-browser-and-come-back-to-the-welcome-page"> <span id="faq5-7"></span><h3>5.7 I refresh (reload) my browser, and come back to the welcome page.<a class="headerlink" href="#i-refresh-reload-my-browser-and-come-back-to-the-welcome-page" title="Permalink to this headline">¶</a></h3> <p>Some browsers support right-clicking into the frame you want to refresh, just do this in the right frame.</p> </div> <div class="section" id="with-mozilla-0-9-7-i-have-problems-sending-a-query-modified-in-the-query-box"> <span id="faq5-8"></span><h3>5.8 With Mozilla 0.9.7 I have problems sending a query modified in the query box.<a class="headerlink" href="#with-mozilla-0-9-7-i-have-problems-sending-a-query-modified-in-the-query-box" title="Permalink to this headline">¶</a></h3> <p>Looks like a Mozilla bug: 0.9.6 was OK. We will keep an eye on future Mozilla versions.</p> </div> <div class="section" id="with-mozilla-0-9-to-1-0-and-netscape-7-0-pr1-i-can-t-type-a-whitespace-in-the-sql-query-edit-area-the-page-scrolls-down"> <span id="faq5-9"></span><h3>5.9 With Mozilla 0.9.? to 1.0 and Netscape 7.0-PR1 I can’t type a whitespace in the SQL-Query edit area: the page scrolls down.<a class="headerlink" href="#with-mozilla-0-9-to-1-0-and-netscape-7-0-pr1-i-can-t-type-a-whitespace-in-the-sql-query-edit-area-the-page-scrolls-down" title="Permalink to this headline">¶</a></h3> <p>This is a Mozilla bug (see bug #26882 at <a class="reference external" href="https://bugzilla.mozilla.org/">BugZilla</a>).</p> </div> <div class="section" id="faq5-10"> <span id="id15"></span><h3>5.10 (withdrawn).<a class="headerlink" href="#faq5-10" title="Permalink to this headline">¶</a></h3> </div> <div class="section" id="extended-ascii-characters-like-german-umlauts-are-displayed-wrong"> <span id="faq5-11"></span><h3>5.11 Extended-ASCII characters like German umlauts are displayed wrong.<a class="headerlink" href="#extended-ascii-characters-like-german-umlauts-are-displayed-wrong" title="Permalink to this headline">¶</a></h3> <p>Please ensure that you have set your browser’s character set to the one of the language file you have selected on phpMyAdmin’s start page. Alternatively, you can try the auto detection mode that is supported by the recent versions of the most browsers.</p> </div> <div class="section" id="mac-os-x-safari-browser-changes-special-characters-to"> <span id="faq5-12"></span><h3>5.12 Mac OS X Safari browser changes special characters to “?”.<a class="headerlink" href="#mac-os-x-safari-browser-changes-special-characters-to" title="Permalink to this headline">¶</a></h3> <p>This issue has been reported by a <a class="reference internal" href="glossary.html#term-macOS"><span class="xref std std-term">macOS</span></a> user, who adds that Chimera, Netscape and Mozilla do not have this problem.</p> </div> <div class="section" id="faq5-13"> <span id="id16"></span><h3>5.13 (withdrawn)<a class="headerlink" href="#faq5-13" title="Permalink to this headline">¶</a></h3> </div> <div class="section" id="faq5-14"> <span id="id17"></span><h3>5.14 (withdrawn)<a class="headerlink" href="#faq5-14" title="Permalink to this headline">¶</a></h3> </div> <div class="section" id="faq5-15"> <span id="id18"></span><h3>5.15 (withdrawn)<a class="headerlink" href="#faq5-15" title="Permalink to this headline">¶</a></h3> </div> <div class="section" id="with-internet-explorer-i-get-access-is-denied-javascript-errors-or-i-cannot-make-phpmyadmin-work-under-windows"> <span id="faq5-16"></span><h3>5.16 With Internet Explorer, I get “Access is denied” Javascript errors. Or I cannot make phpMyAdmin work under Windows.<a class="headerlink" href="#with-internet-explorer-i-get-access-is-denied-javascript-errors-or-i-cannot-make-phpmyadmin-work-under-windows" title="Permalink to this headline">¶</a></h3> <p>Please check the following points:</p> <ul class="simple"> <li><p>Maybe you have defined your <span class="target" id="index-19"></span><a class="reference internal" href="config.html#cfg_PmaAbsoluteUri"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['PmaAbsoluteUri']</span></code></a> setting in <code class="file docutils literal notranslate"><span class="pre">config.inc.php</span></code> to an <a class="reference internal" href="glossary.html#term-IP"><span class="xref std std-term">IP</span></a> address and you are starting phpMyAdmin with a <a class="reference internal" href="glossary.html#term-URL"><span class="xref std std-term">URL</span></a> containing a domain name, or the reverse situation.</p></li> <li><p>Security settings in IE and/or Microsoft Security Center are too high, thus blocking scripts execution.</p></li> <li><p>The Windows Firewall is blocking Apache and MySQL. You must allow <a class="reference internal" href="glossary.html#term-HTTP"><span class="xref std std-term">HTTP</span></a> ports (80 or 443) and MySQL port (usually 3306) in the “in” and “out” directions.</p></li> </ul> </div> <div class="section" id="with-firefox-i-cannot-delete-rows-of-data-or-drop-a-database"> <span id="faq5-17"></span><h3>5.17 With Firefox, I cannot delete rows of data or drop a database.<a class="headerlink" href="#with-firefox-i-cannot-delete-rows-of-data-or-drop-a-database" title="Permalink to this headline">¶</a></h3> <p>Many users have confirmed that the Tabbrowser Extensions plugin they installed in their Firefox is causing the problem.</p> </div> <div class="section" id="faq5-18"> <span id="id19"></span><h3>5.18 (withdrawn)<a class="headerlink" href="#faq5-18" title="Permalink to this headline">¶</a></h3> </div> <div class="section" id="i-get-javascript-errors-in-my-browser"> <span id="faq5-19"></span><h3>5.19 I get JavaScript errors in my browser.<a class="headerlink" href="#i-get-javascript-errors-in-my-browser" title="Permalink to this headline">¶</a></h3> <p>Issues have been reported with some combinations of browser extensions. To troubleshoot, disable all extensions then clear your browser cache to see if the problem goes away.</p> </div> <div class="section" id="i-get-errors-about-violating-content-security-policy"> <span id="faq5-20"></span><h3>5.20 I get errors about violating Content Security Policy.<a class="headerlink" href="#i-get-errors-about-violating-content-security-policy" title="Permalink to this headline">¶</a></h3> <p>If you see errors like:</p> <div class="highlight-text notranslate"><div class="highlight"><pre><span></span>Refused to apply inline style because it violates the following Content Security Policy directive </pre></div> </div> <p>This is usually caused by some software, which wrongly rewrites <em class="mailheader">Content Security Policy</em> headers. Usually this is caused by antivirus proxy or browser addons which are causing such errors.</p> <p>If you see these errors, try disabling the HTTP proxy in antivirus or disable the <em class="mailheader">Content Security Policy</em> rewriting in it. If that doesn’t help, try disabling browser extensions.</p> <p>Alternatively it can be also server configuration issue (if the webserver is configured to emit <em class="mailheader">Content Security Policy</em> headers, they can override the ones from phpMyAdmin).</p> <p>Programs known to cause these kind of errors:</p> <ul class="simple"> <li><p>Kaspersky Internet Security</p></li> </ul> </div> <div class="section" id="i-get-errors-about-potentially-unsafe-operation-when-browsing-table-or-executing-sql-query"> <span id="faq5-21"></span><h3>5.21 I get errors about potentially unsafe operation when browsing table or executing SQL query.<a class="headerlink" href="#i-get-errors-about-potentially-unsafe-operation-when-browsing-table-or-executing-sql-query" title="Permalink to this headline">¶</a></h3> <p>If you see errors like:</p> <div class="highlight-text notranslate"><div class="highlight"><pre><span></span>A potentially unsafe operation has been detected in your request to this site. </pre></div> </div> <p>This is usually caused by web application firewall doing requests filtering. It tries to prevent SQL injection, however phpMyAdmin is tool designed to execute SQL queries, thus it makes it unusable.</p> <p>Please allow phpMyAdmin scripts from the web application firewall settings or disable it completely for phpMyAdmin path.</p> <p>Programs known to cause these kind of errors:</p> <ul class="simple"> <li><p>Wordfence Web Application Firewall</p></li> </ul> </div> </div> <div class="section" id="using-phpmyadmin"> <span id="faqusing"></span><h2>Using phpMyAdmin<a class="headerlink" href="#using-phpmyadmin" title="Permalink to this headline">¶</a></h2> <div class="section" id="i-can-t-insert-new-rows-into-a-table-i-can-t-create-a-table-mysql-brings-up-a-sql-error"> <span id="faq6-1"></span><h3>6.1 I can’t insert new rows into a table / I can’t create a table - MySQL brings up a SQL error.<a class="headerlink" href="#i-can-t-insert-new-rows-into-a-table-i-can-t-create-a-table-mysql-brings-up-a-sql-error" title="Permalink to this headline">¶</a></h3> <p>Examine the <a class="reference internal" href="glossary.html#term-SQL"><span class="xref std std-term">SQL</span></a> error with care. Often the problem is caused by specifying a wrong column-type. Common errors include:</p> <ul class="simple"> <li><p>Using <code class="docutils literal notranslate"><span class="pre">VARCHAR</span></code> without a size argument</p></li> <li><p>Using <code class="docutils literal notranslate"><span class="pre">TEXT</span></code> or <code class="docutils literal notranslate"><span class="pre">BLOB</span></code> with a size argument</p></li> </ul> <p>Also, look at the syntax chapter in the MySQL manual to confirm that your syntax is correct.</p> </div> <div class="section" id="when-i-create-a-table-i-set-an-index-for-two-columns-and-phpmyadmin-generates-only-one-index-with-those-two-columns"> <span id="faq6-2"></span><h3>6.2 When I create a table, I set an index for two columns and phpMyAdmin generates only one index with those two columns.<a class="headerlink" href="#when-i-create-a-table-i-set-an-index-for-two-columns-and-phpmyadmin-generates-only-one-index-with-those-two-columns" title="Permalink to this headline">¶</a></h3> <p>This is the way to create a multi-columns index. If you want two indexes, create the first one when creating the table, save, then display the table properties and click the Index link to create the other index.</p> </div> <div class="section" id="how-can-i-insert-a-null-value-into-my-table"> <span id="faq6-3"></span><h3>6.3 How can I insert a null value into my table?<a class="headerlink" href="#how-can-i-insert-a-null-value-into-my-table" title="Permalink to this headline">¶</a></h3> <p>Since version 2.2.3, you have a checkbox for each column that can be null. Before 2.2.3, you had to enter “null”, without the quotes, as the column’s value. Since version 2.5.5, you have to use the checkbox to get a real NULL value, so if you enter “NULL” this means you want a literal NULL in the column, and not a NULL value (this works in PHP4).</p> </div> <div class="section" id="how-can-i-backup-my-database-or-table"> <span id="faq6-4"></span><h3>6.4 How can I backup my database or table?<a class="headerlink" href="#how-can-i-backup-my-database-or-table" title="Permalink to this headline">¶</a></h3> <p>Click on a database or table name in the navigation panel, the properties will be displayed. Then on the menu, click “Export”, you can dump the structure, the data, or both. This will generate standard <a class="reference internal" href="glossary.html#term-SQL"><span class="xref std std-term">SQL</span></a> statements that can be used to recreate your database/table. You will need to choose “Save as file”, so that phpMyAdmin can transmit the resulting dump to your station. Depending on your PHP configuration, you will see options to compress the dump. See also the <span class="target" id="index-20"></span><a class="reference internal" href="config.html#cfg_ExecTimeLimit"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['ExecTimeLimit']</span></code></a> configuration variable. For additional help on this subject, look for the word “dump” in this document.</p> </div> <div class="section" id="how-can-i-restore-upload-my-database-or-table-using-a-dump-how-can-i-run-a-sql-file"> <span id="faq6-5"></span><h3>6.5 How can I restore (upload) my database or table using a dump? How can I run a “.sql” file?<a class="headerlink" href="#how-can-i-restore-upload-my-database-or-table-using-a-dump-how-can-i-run-a-sql-file" title="Permalink to this headline">¶</a></h3> <p>Click on a database name in the navigation panel, the properties will be displayed. Select “Import” from the list of tabs in the right–hand frame (or “<a class="reference internal" href="glossary.html#term-SQL"><span class="xref std std-term">SQL</span></a>” if your phpMyAdmin version is previous to 2.7.0). In the “Location of the text file” section, type in the path to your dump filename, or use the Browse button. Then click Go. With version 2.7.0, the import engine has been re–written, if possible it is suggested that you upgrade to take advantage of the new features. For additional help on this subject, look for the word “upload” in this document.</p> <p>Note: For errors while importing of dumps exported from older MySQL versions to newer MySQL versions, please check <a class="reference internal" href="#faq6-41"><span class="std std-ref">6.41 I get import errors while importing the dumps exported from older MySQL versions (pre-5.7.6) into newer MySQL versions (5.7.7+), but they work fine when imported back on same older versions ?</span></a>.</p> </div> <div class="section" id="how-can-i-use-the-relation-table-in-query-by-example"> <span id="faq6-6"></span><h3>6.6 How can I use the relation table in Query-by-example?<a class="headerlink" href="#how-can-i-use-the-relation-table-in-query-by-example" title="Permalink to this headline">¶</a></h3> <p>Here is an example with the tables persons, towns and countries, all located in the database “mydb”. If you don’t have a <code class="docutils literal notranslate"><span class="pre">pma__relation</span></code> table, create it as explained in the configuration section. Then create the example tables:</p> <div class="highlight-mysql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">REL_countries</span> <span class="p">(</span> <span class="n">country_code</span> <span class="kt">char</span><span class="p">(</span><span class="mi">1</span><span class="p">)</span> <span class="k">NOT</span> <span class="no">NULL</span> <span class="k">default</span> <span class="s1">''</span><span class="p">,</span> <span class="k">description</span> <span class="kt">varchar</span><span class="p">(</span><span class="mi">10</span><span class="p">)</span> <span class="k">NOT</span> <span class="no">NULL</span> <span class="k">default</span> <span class="s1">''</span><span class="p">,</span> <span class="k">PRIMARY</span> <span class="k">KEY</span> <span class="p">(</span><span class="n">country_code</span><span class="p">)</span> <span class="p">)</span> <span class="k">ENGINE</span><span class="o">=</span><span class="n">MyISAM</span><span class="p">;</span> <span class="k">INSERT</span> <span class="k">INTO</span> <span class="n">REL_countries</span> <span class="k">VALUES</span> <span class="p">(</span><span class="s1">'C'</span><span class="p">,</span> <span class="s1">'Canada'</span><span class="p">);</span> <span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">REL_persons</span> <span class="p">(</span> <span class="n">id</span> <span class="kt">tinyint</span><span class="p">(</span><span class="mi">4</span><span class="p">)</span> <span class="k">NOT</span> <span class="no">NULL</span> <span class="k">auto_increment</span><span class="p">,</span> <span class="n">person_name</span> <span class="kt">varchar</span><span class="p">(</span><span class="mi">32</span><span class="p">)</span> <span class="k">NOT</span> <span class="no">NULL</span> <span class="k">default</span> <span class="s1">''</span><span class="p">,</span> <span class="n">town_code</span> <span class="kt">varchar</span><span class="p">(</span><span class="mi">5</span><span class="p">)</span> <span class="k">default</span> <span class="s1">'0'</span><span class="p">,</span> <span class="n">country_code</span> <span class="kt">char</span><span class="p">(</span><span class="mi">1</span><span class="p">)</span> <span class="k">NOT</span> <span class="no">NULL</span> <span class="k">default</span> <span class="s1">''</span><span class="p">,</span> <span class="k">PRIMARY</span> <span class="k">KEY</span> <span class="p">(</span><span class="n">id</span><span class="p">)</span> <span class="p">)</span> <span class="k">ENGINE</span><span class="o">=</span><span class="n">MyISAM</span><span class="p">;</span> <span class="k">INSERT</span> <span class="k">INTO</span> <span class="n">REL_persons</span> <span class="k">VALUES</span> <span class="p">(</span><span class="mi">11</span><span class="p">,</span> <span class="s1">'Marc'</span><span class="p">,</span> <span class="s1">'S'</span><span class="p">,</span> <span class="s1">'C'</span><span class="p">);</span> <span class="k">INSERT</span> <span class="k">INTO</span> <span class="n">REL_persons</span> <span class="k">VALUES</span> <span class="p">(</span><span class="mi">15</span><span class="p">,</span> <span class="s1">'Paul'</span><span class="p">,</span> <span class="s1">'S'</span><span class="p">,</span> <span class="s1">'C'</span><span class="p">);</span> <span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">REL_towns</span> <span class="p">(</span> <span class="n">town_code</span> <span class="kt">varchar</span><span class="p">(</span><span class="mi">5</span><span class="p">)</span> <span class="k">NOT</span> <span class="no">NULL</span> <span class="k">default</span> <span class="s1">'0'</span><span class="p">,</span> <span class="k">description</span> <span class="kt">varchar</span><span class="p">(</span><span class="mi">30</span><span class="p">)</span> <span class="k">NOT</span> <span class="no">NULL</span> <span class="k">default</span> <span class="s1">''</span><span class="p">,</span> <span class="k">PRIMARY</span> <span class="k">KEY</span> <span class="p">(</span><span class="n">town_code</span><span class="p">)</span> <span class="p">)</span> <span class="k">ENGINE</span><span class="o">=</span><span class="n">MyISAM</span><span class="p">;</span> <span class="k">INSERT</span> <span class="k">INTO</span> <span class="n">REL_towns</span> <span class="k">VALUES</span> <span class="p">(</span><span class="s1">'S'</span><span class="p">,</span> <span class="s1">'Sherbrooke'</span><span class="p">);</span> <span class="k">INSERT</span> <span class="k">INTO</span> <span class="n">REL_towns</span> <span class="k">VALUES</span> <span class="p">(</span><span class="s1">'M'</span><span class="p">,</span> <span class="s1">'Montréal'</span><span class="p">);</span> </pre></div> </div> <p>To setup appropriate links and display information:</p> <ul class="simple"> <li><p>on table “REL_persons” click Structure, then Relation view</p></li> <li><p>for “town_code”, choose from dropdowns, “mydb”, “REL_towns”, “town_code” for foreign database, table and column respectively</p></li> <li><p>for “country_code”, choose from dropdowns, “mydb”, “REL_countries”, “country_code” for foreign database, table and column respectively</p></li> <li><p>on table “REL_towns” click Structure, then Relation view</p></li> <li><p>in “Choose column to display”, choose “description”</p></li> <li><p>repeat the two previous steps for table “REL_countries”</p></li> </ul> <p>Then test like this:</p> <ul class="simple"> <li><p>Click on your db name in the navigation panel</p></li> <li><p>Choose “Query”</p></li> <li><p>Use tables: persons, towns, countries</p></li> <li><p>Click “Update query”</p></li> <li><p>In the columns row, choose persons.person_name and click the “Show” tickbox</p></li> <li><p>Do the same for towns.description and countries.descriptions in the other 2 columns</p></li> <li><p>Click “Update query” and you will see in the query box that the correct joins have been generated</p></li> <li><p>Click “Submit query”</p></li> </ul> </div> <div class="section" id="how-can-i-use-the-display-column-feature"> <span id="faqdisplay"></span><h3>6.7 How can I use the “display column” feature?<a class="headerlink" href="#how-can-i-use-the-display-column-feature" title="Permalink to this headline">¶</a></h3> <p>Starting from the previous example, create the <code class="docutils literal notranslate"><span class="pre">pma__table_info</span></code> as explained in the configuration section, then browse your persons table, and move the mouse over a town code or country code. See also <a class="reference internal" href="#faq6-21"><span class="std std-ref">6.21 In edit/insert mode, how can I see a list of possible values for a column, based on some foreign table?</span></a> for an additional feature that “display column” enables: drop-down list of possible values.</p> </div> <div class="section" id="how-can-i-produce-a-pdf-schema-of-my-database"> <span id="faqpdf"></span><h3>6.8 How can I produce a PDF schema of my database?<a class="headerlink" href="#how-can-i-produce-a-pdf-schema-of-my-database" title="Permalink to this headline">¶</a></h3> <p>First the configuration variables “relation”, “table_coords” and “pdf_pages” have to be filled in.</p> <ul class="simple"> <li><p>Select your database in the navigation panel.</p></li> <li><p>Choose “<span class="guilabel">Designer</span>” in the navigation bar at the top.</p></li> <li><p>Move the tables the way you want them.</p></li> <li><p>Choose “<span class="guilabel">Export schema</span>” in the left menu.</p></li> <li><p>The export modal will open.</p></li> <li><p>Select the type of export to <a class="reference internal" href="glossary.html#term-PDF"><span class="xref std std-term">PDF</span></a>, you may adjust the other settings.</p></li> <li><p>Submit the form and the file will start downloading.</p></li> </ul> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="relations.html#relations"><span class="std std-ref">Relations</span></a></p> </div> </div> <div class="section" id="phpmyadmin-is-changing-the-type-of-one-of-my-columns"> <span id="faq6-9"></span><h3>6.9 phpMyAdmin is changing the type of one of my columns!<a class="headerlink" href="#phpmyadmin-is-changing-the-type-of-one-of-my-columns" title="Permalink to this headline">¶</a></h3> <p>No, it’s MySQL that is doing <a class="reference external" href="https://dev.mysql.com/doc/refman/5.7/en/silent-column-changes.html">silent column type changing</a>.</p> </div> <div class="section" id="when-creating-a-privilege-what-happens-with-underscores-in-the-database-name"> <span id="underscore"></span><h3>6.10 When creating a privilege, what happens with underscores in the database name?<a class="headerlink" href="#when-creating-a-privilege-what-happens-with-underscores-in-the-database-name" title="Permalink to this headline">¶</a></h3> <p>If you do not put a backslash before the underscore, this is a wildcard grant, and the underscore means “any character”. So, if the database name is “john_db”, the user would get rights to john1db, john2db … If you put a backslash before the underscore, it means that the database name will have a real underscore.</p> </div> <div class="section" id="what-is-the-curious-symbol-o-in-the-statistics-pages"> <span id="faq6-11"></span><h3>6.11 What is the curious symbol ø in the statistics pages?<a class="headerlink" href="#what-is-the-curious-symbol-o-in-the-statistics-pages" title="Permalink to this headline">¶</a></h3> <p>It means “average”.</p> </div> <div class="section" id="i-want-to-understand-some-export-options"> <span id="faqexport"></span><h3>6.12 I want to understand some Export options.<a class="headerlink" href="#i-want-to-understand-some-export-options" title="Permalink to this headline">¶</a></h3> <p><strong>Structure:</strong></p> <ul class="simple"> <li><p>“Add DROP TABLE” will add a line telling MySQL to <a class="reference external" href="https://dev.mysql.com/doc/refman/5.7/en/drop-table.html">drop the table</a>, if it already exists during the import. It does NOT drop the table after your export, it only affects the import file.</p></li> <li><p>“If Not Exists” will only create the table if it doesn’t exist. Otherwise, you may get an error if the table name exists but has a different structure.</p></li> <li><p>“Add AUTO_INCREMENT value” ensures that AUTO_INCREMENT value (if any) will be included in backup.</p></li> <li><p>“Enclose table and column names with backquotes” ensures that column and table names formed with special characters are protected.</p></li> <li><p>“Add into comments” includes column comments, relations, and media types set in the pmadb in the dump as <a class="reference internal" href="glossary.html#term-SQL"><span class="xref std std-term">SQL</span></a> comments (<em>/* xxx */</em>).</p></li> </ul> <p><strong>Data:</strong></p> <ul class="simple"> <li><p>“Complete inserts” adds the column names on every INSERT command, for better documentation (but resulting file is bigger).</p></li> <li><p>“Extended inserts” provides a shorter dump file by using only once the INSERT verb and the table name.</p></li> <li><p>“Delayed inserts” are best explained in the <a class="reference external" href="https://dev.mysql.com/doc/refman/5.7/en/insert-delayed.html">MySQL manual - INSERT DELAYED Syntax</a>.</p></li> <li><p>“Ignore inserts” treats errors as a warning instead. Again, more info is provided in the <a class="reference external" href="https://dev.mysql.com/doc/refman/5.7/en/insert.html">MySQL manual - INSERT Syntax</a>, but basically with this selected, invalid values are adjusted and inserted rather than causing the entire statement to fail.</p></li> </ul> </div> <div class="section" id="i-would-like-to-create-a-database-with-a-dot-in-its-name"> <span id="faq6-13"></span><h3>6.13 I would like to create a database with a dot in its name.<a class="headerlink" href="#i-would-like-to-create-a-database-with-a-dot-in-its-name" title="Permalink to this headline">¶</a></h3> <p>This is a bad idea, because in MySQL the syntax “database.table” is the normal way to reference a database and table name. Worse, MySQL will usually let you create a database with a dot, but then you cannot work with it, nor delete it.</p> </div> <div class="section" id="faqsqlvalidator"> <span id="id20"></span><h3>6.14 (withdrawn).<a class="headerlink" href="#faqsqlvalidator" title="Permalink to this headline">¶</a></h3> </div> <div class="section" id="i-want-to-add-a-blob-column-and-put-an-index-on-it-but-mysql-says-blob-column-used-in-key-specification-without-a-key-length"> <span id="faq6-15"></span><h3>6.15 I want to add a BLOB column and put an index on it, but MySQL says “BLOB column ‘…’ used in key specification without a key length”.<a class="headerlink" href="#i-want-to-add-a-blob-column-and-put-an-index-on-it-but-mysql-says-blob-column-used-in-key-specification-without-a-key-length" title="Permalink to this headline">¶</a></h3> <p>The right way to do this, is to create the column without any indexes, then display the table structure and use the “Create an index” dialog. On this page, you will be able to choose your BLOB column, and set a size to the index, which is the condition to create an index on a BLOB column.</p> </div> <div class="section" id="how-can-i-simply-move-in-page-with-plenty-editing-fields"> <span id="faq6-16"></span><h3>6.16 How can I simply move in page with plenty editing fields?<a class="headerlink" href="#how-can-i-simply-move-in-page-with-plenty-editing-fields" title="Permalink to this headline">¶</a></h3> <p>You can use <kbd class="kbd docutils literal notranslate"><kbd class="kbd docutils literal notranslate">Ctrl</kbd>+<kbd class="kbd docutils literal notranslate">arrows</kbd></kbd> (<kbd class="kbd docutils literal notranslate"><kbd class="kbd docutils literal notranslate">Option</kbd>+<kbd class="kbd docutils literal notranslate">Arrows</kbd></kbd> in Safari) for moving on most pages with many editing fields (table structure changes, row editing, etc.).</p> </div> <div class="section" id="transformations-i-can-t-enter-my-own-mimetype-what-is-this-feature-then-useful-for"> <span id="faq6-17"></span><h3>6.17 Transformations: I can’t enter my own mimetype! What is this feature then useful for?<a class="headerlink" href="#transformations-i-can-t-enter-my-own-mimetype-what-is-this-feature-then-useful-for" title="Permalink to this headline">¶</a></h3> <p>Defining mimetypes is of no use if you can’t put transformations on them. Otherwise you could just put a comment on the column. Because entering your own mimetype will cause serious syntax checking issues and validation, this introduces a high-risk false- user-input situation. Instead you have to initialize mimetypes using functions or empty mimetype definitions.</p> <p>Plus, you have a whole overview of available mimetypes. Who knows all those mimetypes by heart so they can enter it at will?</p> </div> <div class="section" id="bookmarks-where-can-i-store-bookmarks-why-can-t-i-see-any-bookmarks-below-the-query-box-what-are-these-variables-for"> <span id="faqbookmark"></span><h3>6.18 Bookmarks: Where can I store bookmarks? Why can’t I see any bookmarks below the query box? What are these variables for?<a class="headerlink" href="#bookmarks-where-can-i-store-bookmarks-why-can-t-i-see-any-bookmarks-below-the-query-box-what-are-these-variables-for" title="Permalink to this headline">¶</a></h3> <p>You need to have configured the <a class="reference internal" href="setup.html#linked-tables"><span class="std std-ref">phpMyAdmin configuration storage</span></a> for using bookmarks feature. Once you have done that, you can use bookmarks in the <span class="guilabel">SQL</span> tab.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="bookmarks.html#bookmarks"><span class="std std-ref">Bookmarks</span></a></p> </div> </div> <div class="section" id="how-can-i-create-simple-latex-document-to-include-exported-table"> <span id="faq6-19"></span><h3>6.19 How can I create simple LATEX document to include exported table?<a class="headerlink" href="#how-can-i-create-simple-latex-document-to-include-exported-table" title="Permalink to this headline">¶</a></h3> <p>You can simply include table in your LATEX documents, minimal sample document should look like following one (assuming you have table exported in file <code class="file docutils literal notranslate"><span class="pre">table.tex</span></code>):</p> <div class="highlight-latex notranslate"><div class="highlight"><pre><span></span><span class="k">\documentclass</span><span class="nb">{</span>article<span class="nb">}</span> <span class="c">% or any class you want</span> <span class="k">\usepackage</span><span class="nb">{</span>longtable<span class="nb">}</span> <span class="c">% for displaying table</span> <span class="k">\begin</span><span class="nb">{</span>document<span class="nb">}</span> <span class="c">% start of document</span> <span class="k">\include</span><span class="nb">{</span>table<span class="nb">}</span> <span class="c">% including exported table</span> <span class="k">\end</span><span class="nb">{</span>document<span class="nb">}</span> <span class="c">% end of document</span> </pre></div> </div> </div> <div class="section" id="i-see-a-lot-of-databases-which-are-not-mine-and-cannot-access-them"> <span id="faq6-20"></span><h3>6.20 I see a lot of databases which are not mine, and cannot access them.<a class="headerlink" href="#i-see-a-lot-of-databases-which-are-not-mine-and-cannot-access-them" title="Permalink to this headline">¶</a></h3> <p>You have one of these global privileges: CREATE TEMPORARY TABLES, SHOW DATABASES, LOCK TABLES. Those privileges also enable users to see all the database names. So if your users do not need those privileges, you can remove them and their databases list will shorten.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><<a class="reference external" href="https://bugs.mysql.com/bug.php?id=179">https://bugs.mysql.com/bug.php?id=179</a>></p> </div> </div> <div class="section" id="in-edit-insert-mode-how-can-i-see-a-list-of-possible-values-for-a-column-based-on-some-foreign-table"> <span id="faq6-21"></span><h3>6.21 In edit/insert mode, how can I see a list of possible values for a column, based on some foreign table?<a class="headerlink" href="#in-edit-insert-mode-how-can-i-see-a-list-of-possible-values-for-a-column-based-on-some-foreign-table" title="Permalink to this headline">¶</a></h3> <p>You have to setup appropriate links between the tables, and also setup the “display column” in the foreign table. See <a class="reference internal" href="#faq6-6"><span class="std std-ref">6.6 How can I use the relation table in Query-by-example?</span></a> for an example. Then, if there are 100 values or less in the foreign table, a drop-down list of values will be available. You will see two lists of values, the first list containing the key and the display column, the second list containing the display column and the key. The reason for this is to be able to type the first letter of either the key or the display column. For 100 values or more, a distinct window will appear, to browse foreign key values and choose one. To change the default limit of 100, see <span class="target" id="index-21"></span><a class="reference internal" href="config.html#cfg_ForeignKeyMaxLimit"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['ForeignKeyMaxLimit']</span></code></a>.</p> </div> <div class="section" id="bookmarks-can-i-execute-a-default-bookmark-automatically-when-entering-browse-mode-for-a-table"> <span id="faq6-22"></span><h3>6.22 Bookmarks: Can I execute a default bookmark automatically when entering Browse mode for a table?<a class="headerlink" href="#bookmarks-can-i-execute-a-default-bookmark-automatically-when-entering-browse-mode-for-a-table" title="Permalink to this headline">¶</a></h3> <p>Yes. If a bookmark has the same label as a table name and it’s not a public bookmark, it will be executed.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="bookmarks.html#bookmarks"><span class="std std-ref">Bookmarks</span></a></p> </div> </div> <div class="section" id="export-i-heard-phpmyadmin-can-export-microsoft-excel-files"> <span id="faq6-23"></span><h3>6.23 Export: I heard phpMyAdmin can export Microsoft Excel files?<a class="headerlink" href="#export-i-heard-phpmyadmin-can-export-microsoft-excel-files" title="Permalink to this headline">¶</a></h3> <p>You can use <a class="reference internal" href="glossary.html#term-CSV"><span class="xref std std-term">CSV</span></a> for Microsoft Excel, which works out of the box.</p> <div class="versionchanged"> <p><span class="versionmodified changed">Changed in version 3.4.5: </span>Since phpMyAdmin 3.4.5 support for direct export to Microsoft Excel version 97 and newer was dropped.</p> </div> </div> <div class="section" id="now-that-phpmyadmin-supports-native-mysql-4-1-x-column-comments-what-happens-to-my-column-comments-stored-in-pmadb"> <span id="faq6-24"></span><h3>6.24 Now that phpMyAdmin supports native MySQL 4.1.x column comments, what happens to my column comments stored in pmadb?<a class="headerlink" href="#now-that-phpmyadmin-supports-native-mysql-4-1-x-column-comments-what-happens-to-my-column-comments-stored-in-pmadb" title="Permalink to this headline">¶</a></h3> <p>Automatic migration of a table’s pmadb-style column comments to the native ones is done whenever you enter Structure page for this table.</p> </div> <div class="section" id="faq6-25"> <span id="id21"></span><h3>6.25 (withdrawn).<a class="headerlink" href="#faq6-25" title="Permalink to this headline">¶</a></h3> </div> <div class="section" id="how-can-i-select-a-range-of-rows"> <span id="faq6-26"></span><h3>6.26 How can I select a range of rows?<a class="headerlink" href="#how-can-i-select-a-range-of-rows" title="Permalink to this headline">¶</a></h3> <p>Click the first row of the range, hold the shift key and click the last row of the range. This works everywhere you see rows, for example in Browse mode or on the Structure page.</p> </div> <div class="section" id="what-format-strings-can-i-use"> <span id="faq6-27"></span><h3>6.27 What format strings can I use?<a class="headerlink" href="#what-format-strings-can-i-use" title="Permalink to this headline">¶</a></h3> <p>In all places where phpMyAdmin accepts format strings, you can use <code class="docutils literal notranslate"><span class="pre">@VARIABLE@</span></code> expansion and <a class="reference external" href="https://www.php.net/strftime">strftime</a> format strings. The expanded variables depend on a context (for example, if you haven’t chosen a table, you can not get the table name), but the following variables can be used:</p> <dl class="simple"> <dt><code class="docutils literal notranslate"><span class="pre">@HTTP_HOST@</span></code></dt><dd><p>HTTP host that runs phpMyAdmin</p> </dd> <dt><code class="docutils literal notranslate"><span class="pre">@SERVER@</span></code></dt><dd><p>MySQL server name</p> </dd> <dt><code class="docutils literal notranslate"><span class="pre">@VERBOSE@</span></code></dt><dd><p>Verbose MySQL server name as defined in <span class="target" id="index-22"></span><a class="reference internal" href="config.html#cfg_Servers_verbose"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['verbose']</span></code></a></p> </dd> <dt><code class="docutils literal notranslate"><span class="pre">@VSERVER@</span></code></dt><dd><p>Verbose MySQL server name if set, otherwise normal</p> </dd> <dt><code class="docutils literal notranslate"><span class="pre">@DATABASE@</span></code></dt><dd><p>Currently opened database</p> </dd> <dt><code class="docutils literal notranslate"><span class="pre">@TABLE@</span></code></dt><dd><p>Currently opened table</p> </dd> <dt><code class="docutils literal notranslate"><span class="pre">@COLUMNS@</span></code></dt><dd><p>Columns of the currently opened table</p> </dd> <dt><code class="docutils literal notranslate"><span class="pre">@PHPMYADMIN@</span></code></dt><dd><p>phpMyAdmin with version</p> </dd> </dl> </div> <div class="section" id="faq6-28"> <span id="id22"></span><h3>6.28 (withdrawn).<a class="headerlink" href="#faq6-28" title="Permalink to this headline">¶</a></h3> </div> <div class="section" id="why-can-t-i-get-a-chart-from-my-query-result-table"> <span id="faq6-29"></span><h3>6.29 Why can’t I get a chart from my query result table?<a class="headerlink" href="#why-can-t-i-get-a-chart-from-my-query-result-table" title="Permalink to this headline">¶</a></h3> <p>Not every table can be put to the chart. Only tables with one, two or three columns can be visualised as a chart. Moreover the table must be in a special format for chart script to understand it. Currently supported formats can be found in <a class="reference internal" href="charts.html#charts"><span class="std std-ref">Charts</span></a>.</p> </div> <div class="section" id="import-how-can-i-import-esri-shapefiles"> <span id="faq6-30"></span><h3>6.30 Import: How can I import ESRI Shapefiles?<a class="headerlink" href="#import-how-can-i-import-esri-shapefiles" title="Permalink to this headline">¶</a></h3> <p>An ESRI Shapefile is actually a set of several files, where .shp file contains geometry data and .dbf file contains data related to those geometry data. To read data from .dbf file you need to have PHP compiled with the dBase extension (–enable-dbase). Otherwise only geometry data will be imported.</p> <p>To upload these set of files you can use either of the following methods:</p> <p>Configure upload directory with <span class="target" id="index-23"></span><a class="reference internal" href="config.html#cfg_UploadDir"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['UploadDir']</span></code></a>, upload both .shp and .dbf files with the same filename and chose the .shp file from the import page.</p> <p>Create a zip archive with .shp and .dbf files and import it. For this to work, you need to set <span class="target" id="index-24"></span><a class="reference internal" href="config.html#cfg_TempDir"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['TempDir']</span></code></a> to a place where the web server user can write (for example <code class="docutils literal notranslate"><span class="pre">'./tmp'</span></code>).</p> <p>To create the temporary directory on a UNIX-based system, you can do:</p> <div class="highlight-sh notranslate"><div class="highlight"><pre><span></span><span class="nb">cd</span> phpMyAdmin mkdir tmp chmod o+rwx tmp </pre></div> </div> </div> <div class="section" id="how-do-i-create-a-relation-in-designer"> <span id="faq6-31"></span><h3>6.31 How do I create a relation in designer?<a class="headerlink" href="#how-do-i-create-a-relation-in-designer" title="Permalink to this headline">¶</a></h3> <p>To select relation, click: The display column is shown in pink. To set/unset a column as the display column, click the “Choose column to display” icon, then click on the appropriate column name.</p> </div> <div class="section" id="how-can-i-use-the-zoom-search-feature"> <span id="faq6-32"></span><h3>6.32 How can I use the zoom search feature?<a class="headerlink" href="#how-can-i-use-the-zoom-search-feature" title="Permalink to this headline">¶</a></h3> <p>The Zoom search feature is an alternative to table search feature. It allows you to explore a table by representing its data in a scatter plot. You can locate this feature by selecting a table and clicking the <span class="guilabel">Search</span> tab. One of the sub-tabs in the <span class="guilabel">Table Search</span> page is <span class="guilabel">Zoom Search</span>.</p> <p>Consider the table REL_persons in <a class="reference internal" href="#faq6-6"><span class="std std-ref">6.6 How can I use the relation table in Query-by-example?</span></a> for an example. To use zoom search, two columns need to be selected, for example, id and town_code. The id values will be represented on one axis and town_code values on the other axis. Each row will be represented as a point in a scatter plot based on its id and town_code. You can include two additional search criteria apart from the two fields to display.</p> <p>You can choose which field should be displayed as label for each point. If a display column has been set for the table (see <a class="reference internal" href="#faqdisplay"><span class="std std-ref">6.7 How can I use the “display column” feature?</span></a>), it is taken as the label unless you specify otherwise. You can also select the maximum number of rows you want to be displayed in the plot by specifing it in the ‘Max rows to plot’ field. Once you have decided over your criteria, click ‘Go’ to display the plot.</p> <p>After the plot is generated, you can use the mouse wheel to zoom in and out of the plot. In addition, panning feature is enabled to navigate through the plot. You can zoom-in to a certain level of detail and use panning to locate your area of interest. Clicking on a point opens a dialogue box, displaying field values of the data row represented by the point. You can edit the values if required and click on submit to issue an update query. Basic instructions on how to use can be viewed by clicking the ‘How to use?’ link located just above the plot.</p> </div> <div class="section" id="when-browsing-a-table-how-can-i-copy-a-column-name"> <span id="faq6-33"></span><h3>6.33 When browsing a table, how can I copy a column name?<a class="headerlink" href="#when-browsing-a-table-how-can-i-copy-a-column-name" title="Permalink to this headline">¶</a></h3> <p>Selecting the name of the column within the browse table header cell for copying is difficult, as the columns support reordering by dragging the header cells as well as sorting by clicking on the linked column name. To copy a column name, double-click on the empty area next to the column name, when the tooltip tells you to do so. This will show you an input box with the column name. You may right-click the column name within this input box to copy it to your clipboard.</p> </div> <div class="section" id="how-can-i-use-the-favorite-tables-feature"> <span id="faq6-34"></span><h3>6.34 How can I use the Favorite Tables feature?<a class="headerlink" href="#how-can-i-use-the-favorite-tables-feature" title="Permalink to this headline">¶</a></h3> <p>Favorite Tables feature is very much similar to Recent Tables feature. It allows you to add a shortcut for the frequently used tables of any database in the navigation panel . You can easily navigate to any table in the list by simply choosing it from the list. These tables are stored in your browser’s local storage if you have not configured your <cite>phpMyAdmin Configuration Storage</cite>. Otherwise these entries are stored in <cite>phpMyAdmin Configuration Storage</cite>.</p> <p>IMPORTANT: In absence of <cite>phpMyAdmin Configuration Storage</cite>, your Favorite tables may be different in different browsers based on your different selections in them.</p> <p>To add a table to Favorite list simply click on the <cite>Gray</cite> star in front of a table name in the list of tables of a Database and wait until it turns to <cite>Yellow</cite>. To remove a table from list, simply click on the <cite>Yellow</cite> star and wait until it turns <cite>Gray</cite> again.</p> <p>Using <span class="target" id="index-25"></span><a class="reference internal" href="config.html#cfg_NumFavoriteTables"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['NumFavoriteTables']</span></code></a> in your <code class="file docutils literal notranslate"><span class="pre">config.inc.php</span></code> file, you can define the maximum number of favorite tables shown in the navigation panel. Its default value is <cite>10</cite>.</p> </div> <div class="section" id="how-can-i-use-the-range-search-feature"> <span id="faq6-35"></span><h3>6.35 How can I use the Range search feature?<a class="headerlink" href="#how-can-i-use-the-range-search-feature" title="Permalink to this headline">¶</a></h3> <p>With the help of range search feature, one can specify a range of values for particular column(s) while performing search operation on a table from the <cite>Search</cite> tab.</p> <p>To use this feature simply click on the <cite>BETWEEN</cite> or <cite>NOT BETWEEN</cite> operators from the operator select list in front of the column name. On choosing one of the above options, a dialog box will show up asking for the <cite>Minimum</cite> and <cite>Maximum</cite> value for that column. Only the specified range of values will be included in case of <cite>BETWEEN</cite> and excluded in case of <cite>NOT BETWEEN</cite> from the final results.</p> <p>Note: The Range search feature will work only <cite>Numeric</cite> and <cite>Date</cite> data type columns.</p> </div> <div class="section" id="what-is-central-columns-and-how-can-i-use-this-feature"> <span id="faq6-36"></span><h3>6.36 What is Central columns and how can I use this feature?<a class="headerlink" href="#what-is-central-columns-and-how-can-i-use-this-feature" title="Permalink to this headline">¶</a></h3> <p>As the name suggests, the Central columns feature enables to maintain a central list of columns per database to avoid similar name for the same data element and bring consistency of data type for the same data element. You can use the central list of columns to add an element to any table structure in that database which will save from writing similar column name and column definition.</p> <p>To add a column to central list, go to table structure page, check the columns you want to include and then simply click on “Add to central columns”. If you want to add all unique columns from more than one table from a database then go to database structure page, check the tables you want to include and then select “Add columns to central list”.</p> <p>To remove a column from central list, go to Table structure page, check the columns you want to remove and then simply click on “Remove from central columns”. If you want to remove all columns from more than one tables from a database then go to database structure page, check the tables you want to include and then select “Remove columns from central list”.</p> <p>To view and manage the central list, select the database you want to manage central columns for then from the top menu click on “Central columns”. You will be taken to a page where you will have options to edit, delete or add new columns to central list.</p> </div> <div class="section" id="how-can-i-use-improve-table-structure-feature"> <span id="faq6-37"></span><h3>6.37 How can I use Improve Table structure feature?<a class="headerlink" href="#how-can-i-use-improve-table-structure-feature" title="Permalink to this headline">¶</a></h3> <p>Improve table structure feature helps to bring the table structure upto Third Normal Form. A wizard is presented to user which asks questions about the elements during the various steps for normalization and a new structure is proposed accordingly to bring the table into the First/Second/Third Normal form. On startup of the wizard, user gets to select upto what normal form they want to normalize the table structure.</p> <p>Here is an example table which you can use to test all of the three First, Second and Third Normal Form.</p> <div class="highlight-mysql notranslate"><div class="highlight"><pre><span></span><span class="k">CREATE</span> <span class="k">TABLE</span> <span class="n">`VetOffice`</span> <span class="p">(</span> <span class="n">`petName`</span> <span class="kt">varchar</span><span class="p">(</span><span class="mi">64</span><span class="p">)</span> <span class="k">NOT</span> <span class="no">NULL</span><span class="p">,</span> <span class="n">`petBreed`</span> <span class="kt">varchar</span><span class="p">(</span><span class="mi">64</span><span class="p">)</span> <span class="k">NOT</span> <span class="no">NULL</span><span class="p">,</span> <span class="n">`petType`</span> <span class="kt">varchar</span><span class="p">(</span><span class="mi">64</span><span class="p">)</span> <span class="k">NOT</span> <span class="no">NULL</span><span class="p">,</span> <span class="n">`petDOB`</span> <span class="kt">date</span> <span class="k">NOT</span> <span class="no">NULL</span><span class="p">,</span> <span class="n">`ownerLastName`</span> <span class="kt">varchar</span><span class="p">(</span><span class="mi">64</span><span class="p">)</span> <span class="k">NOT</span> <span class="no">NULL</span><span class="p">,</span> <span class="n">`ownerFirstName`</span> <span class="kt">varchar</span><span class="p">(</span><span class="mi">64</span><span class="p">)</span> <span class="k">NOT</span> <span class="no">NULL</span><span class="p">,</span> <span class="n">`ownerPhone1`</span> <span class="kt">int</span><span class="p">(</span><span class="mi">12</span><span class="p">)</span> <span class="k">NOT</span> <span class="no">NULL</span><span class="p">,</span> <span class="n">`ownerPhone2`</span> <span class="kt">int</span><span class="p">(</span><span class="mi">12</span><span class="p">)</span> <span class="k">NOT</span> <span class="no">NULL</span><span class="p">,</span> <span class="n">`ownerEmail`</span> <span class="kt">varchar</span><span class="p">(</span><span class="mi">64</span><span class="p">)</span> <span class="k">NOT</span> <span class="no">NULL</span><span class="p">,</span> <span class="p">);</span> </pre></div> </div> <p>The above table is not in First normal Form as no <a class="reference internal" href="glossary.html#term-primary-key"><span class="xref std std-term">primary key</span></a> exists. Primary key is supposed to be (<cite>petName</cite>,`ownerLastName`,`ownerFirstName`) . If the <a class="reference internal" href="glossary.html#term-primary-key"><span class="xref std std-term">primary key</span></a> is chosen as suggested the resultant table won’t be in Second as well as Third Normal form as the following dependencies exists.</p> <div class="highlight-mysql notranslate"><div class="highlight"><pre><span></span><span class="p">(</span><span class="n">OwnerLastName</span><span class="p">,</span> <span class="n">OwnerFirstName</span><span class="p">)</span> <span class="o">-></span> <span class="n">OwnerEmail</span> <span class="p">(</span><span class="n">OwnerLastName</span><span class="p">,</span> <span class="n">OwnerFirstName</span><span class="p">)</span> <span class="o">-></span> <span class="n">OwnerPhone</span> <span class="n">PetBreed</span> <span class="o">-></span> <span class="n">PetType</span> </pre></div> </div> <p>Which says, OwnerEmail depends on OwnerLastName and OwnerFirstName. OwnerPhone depends on OwnerLastName and OwnerFirstName. PetType depends on PetBreed.</p> </div> <div class="section" id="how-can-i-reassign-auto-incremented-values"> <span id="faq6-38"></span><h3>6.38 How can I reassign auto-incremented values?<a class="headerlink" href="#how-can-i-reassign-auto-incremented-values" title="Permalink to this headline">¶</a></h3> <p>Some users prefer their AUTO_INCREMENT values to be consecutive; this is not always the case after row deletion.</p> <p>Here are the steps to accomplish this. These are manual steps because they involve a manual verification at one point.</p> <ul class="simple"> <li><p>Ensure that you have exclusive access to the table to rearrange</p></li> <li><p>On your <a class="reference internal" href="glossary.html#term-primary-key"><span class="xref std std-term">primary key</span></a> column (i.e. id), remove the AUTO_INCREMENT setting</p></li> <li><p>Delete your primary key in Structure > indexes</p></li> <li><p>Create a new column future_id as primary key, AUTO_INCREMENT</p></li> <li><p>Browse your table and verify that the new increments correspond to what you’re expecting</p></li> <li><p>Drop your old id column</p></li> <li><p>Rename the future_id column to id</p></li> <li><p>Move the new id column via Structure > Move columns</p></li> </ul> </div> <div class="section" id="what-is-the-adjust-privileges-option-when-renaming-copying-or-moving-a-database-table-column-or-procedure"> <span id="faq6-39"></span><h3>6.39 What is the “Adjust privileges” option when renaming, copying, or moving a database, table, column, or procedure?<a class="headerlink" href="#what-is-the-adjust-privileges-option-when-renaming-copying-or-moving-a-database-table-column-or-procedure" title="Permalink to this headline">¶</a></h3> <p>When renaming/copying/moving a database/table/column/procedure, MySQL does not adjust the original privileges relating to these objects on its own. By selecting this option, phpMyAdmin will adjust the privilege table so that users have the same privileges on the new items.</p> <p>For example: A user <a class="reference external" href="mailto:'bob'%40'localhost">‘bob’<span>@</span>’localhost</a>’ has a ‘SELECT’ privilege on a column named ‘id’. Now, if this column is renamed to ‘id_new’, MySQL, on its own, would <strong>not</strong> adjust the column privileges to the new column name. phpMyAdmin can make this adjustment for you automatically.</p> <p>Notes:</p> <ul class="simple"> <li><p>While adjusting privileges for a database, the privileges of all database-related elements (tables, columns and procedures) are also adjusted to the database’s new name.</p></li> <li><p>Similarly, while adjusting privileges for a table, the privileges of all the columns inside the new table are also adjusted.</p></li> <li><p>While adjusting privileges, the user performing the operation <strong>must</strong> have the following privileges:</p> <ul> <li><p>SELECT, INSERT, UPDATE, DELETE privileges on following tables: <cite>mysql</cite>.`db`, <cite>mysql</cite>.`columns_priv`, <cite>mysql</cite>.`tables_priv`, <cite>mysql</cite>.`procs_priv`</p></li> <li><p>FLUSH privilege (GLOBAL)</p></li> </ul> </li> </ul> <p>Thus, if you want to replicate the database/table/column/procedure as it is while renaming/copying/moving these objects, make sure you have checked this option.</p> </div> <div class="section" id="i-see-bind-parameters-checkbox-in-the-sql-page-how-do-i-write-parameterized-sql-queries"> <span id="faq6-40"></span><h3>6.40 I see “Bind parameters” checkbox in the “SQL” page. How do I write parameterized SQL queries?<a class="headerlink" href="#i-see-bind-parameters-checkbox-in-the-sql-page-how-do-i-write-parameterized-sql-queries" title="Permalink to this headline">¶</a></h3> <p>From version 4.5, phpMyAdmin allows users to execute parameterized queries in the “SQL” page. Parameters should be prefixed with a colon(:) and when the “Bind parameters” checkbox is checked these parameters will be identified and input fields for these parameters will be presented. Values entered in these field will be substituted in the query before being executed.</p> </div> <div class="section" id="i-get-import-errors-while-importing-the-dumps-exported-from-older-mysql-versions-pre-5-7-6-into-newer-mysql-versions-5-7-7-but-they-work-fine-when-imported-back-on-same-older-versions"> <span id="faq6-41"></span><h3>6.41 I get import errors while importing the dumps exported from older MySQL versions (pre-5.7.6) into newer MySQL versions (5.7.7+), but they work fine when imported back on same older versions ?<a class="headerlink" href="#i-get-import-errors-while-importing-the-dumps-exported-from-older-mysql-versions-pre-5-7-6-into-newer-mysql-versions-5-7-7-but-they-work-fine-when-imported-back-on-same-older-versions" title="Permalink to this headline">¶</a></h3> <p>If you get errors like <em>#1031 - Table storage engine for ‘table_name’ doesn’t have this option</em> while importing the dumps exported from pre-5.7.7 MySQL servers into new MySQL server versions 5.7.7+, it might be because ROW_FORMAT=FIXED is not supported with InnoDB tables. Moreover, the value of <a class="reference external" href="https://dev.mysql.com/doc/refman/5.7/en/innodb-parameters.html#sysvar_innodb_strict_mode">innodb_strict_mode</a> would define if this would be reported as a warning or as an error.</p> <p>Since MySQL version 5.7.9, the default value for <cite>innodb_strict_mode</cite> is <cite>ON</cite> and thus would generate an error when such a CREATE TABLE or ALTER TABLE statement is encountered.</p> <p>There are two ways of preventing such errors while importing:</p> <ul class="simple"> <li><p>Change the value of <cite>innodb_strict_mode</cite> to <cite>OFF</cite> before starting the import and turn it <cite>ON</cite> after the import is successfully completed.</p></li> <li><p>This can be achieved in two ways:</p> <ul> <li><p>Go to ‘Variables’ page and edit the value of <cite>innodb_strict_mode</cite></p></li> <li><p>Run the query : <cite>SET GLOBAL `innodb_strict_mode</cite> = ‘[value]’`</p></li> </ul> </li> </ul> <p>After the import is done, it is suggested that the value of <cite>innodb_strict_mode</cite> should be reset to the original value.</p> </div> </div> <div class="section" id="phpmyadmin-project"> <span id="faqproject"></span><h2>phpMyAdmin project<a class="headerlink" href="#phpmyadmin-project" title="Permalink to this headline">¶</a></h2> <div class="section" id="i-have-found-a-bug-how-do-i-inform-developers"> <span id="faq7-1"></span><h3>7.1 I have found a bug. How do I inform developers?<a class="headerlink" href="#i-have-found-a-bug-how-do-i-inform-developers" title="Permalink to this headline">¶</a></h3> <p>Our issues tracker is located at <<a class="reference external" href="https://github.com/phpmyadmin/phpmyadmin/issues">https://github.com/phpmyadmin/phpmyadmin/issues</a>>. For security issues, please refer to the instructions at <<a class="reference external" href="https://www.phpmyadmin.net/security">https://www.phpmyadmin.net/security</a>> to email the developers directly.</p> </div> <div class="section" id="i-want-to-translate-the-messages-to-a-new-language-or-upgrade-an-existing-language-where-do-i-start"> <span id="faq7-2"></span><h3>7.2 I want to translate the messages to a new language or upgrade an existing language, where do I start?<a class="headerlink" href="#i-want-to-translate-the-messages-to-a-new-language-or-upgrade-an-existing-language-where-do-i-start" title="Permalink to this headline">¶</a></h3> <p>Translations are very welcome and all you need to have are the language skills. The easiest way is to use our <a class="reference external" href="https://hosted.weblate.org/projects/phpmyadmin/">online translation service</a>. You can check out all the possibilities to translate in the <a class="reference external" href="https://www.phpmyadmin.net/translate/">translate section on our website</a>.</p> </div> <div class="section" id="i-would-like-to-help-out-with-the-development-of-phpmyadmin-how-should-i-proceed"> <span id="faq7-3"></span><h3>7.3 I would like to help out with the development of phpMyAdmin. How should I proceed?<a class="headerlink" href="#i-would-like-to-help-out-with-the-development-of-phpmyadmin-how-should-i-proceed" title="Permalink to this headline">¶</a></h3> <p>We welcome every contribution to the development of phpMyAdmin. You can check out all the possibilities to contribute in the <a class="reference external" href="https://www.phpmyadmin.net/contribute/">contribute section on our website</a>.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="developers.html#developers"><span class="std std-ref">Developers Information</span></a></p> </div> </div> </div> <div class="section" id="security"> <span id="faqsecurity"></span><h2>Security<a class="headerlink" href="#security" title="Permalink to this headline">¶</a></h2> <div class="section" id="where-can-i-get-information-about-the-security-alerts-issued-for-phpmyadmin"> <span id="faq8-1"></span><h3>8.1 Where can I get information about the security alerts issued for phpMyAdmin?<a class="headerlink" href="#where-can-i-get-information-about-the-security-alerts-issued-for-phpmyadmin" title="Permalink to this headline">¶</a></h3> <p>Please refer to <<a class="reference external" href="https://www.phpmyadmin.net/security/">https://www.phpmyadmin.net/security/</a>>.</p> </div> <div class="section" id="how-can-i-protect-phpmyadmin-against-brute-force-attacks"> <span id="faq8-2"></span><h3>8.2 How can I protect phpMyAdmin against brute force attacks?<a class="headerlink" href="#how-can-i-protect-phpmyadmin-against-brute-force-attacks" title="Permalink to this headline">¶</a></h3> <p>If you use Apache web server, phpMyAdmin exports information about authentication to the Apache environment and it can be used in Apache logs. Currently there are two variables available:</p> <dl class="simple"> <dt><code class="docutils literal notranslate"><span class="pre">userID</span></code></dt><dd><p>User name of currently active user (they do not have to be logged in).</p> </dd> <dt><code class="docutils literal notranslate"><span class="pre">userStatus</span></code></dt><dd><p>Status of currently active user, one of <code class="docutils literal notranslate"><span class="pre">ok</span></code> (user is logged in), <code class="docutils literal notranslate"><span class="pre">mysql-denied</span></code> (MySQL denied user login), <code class="docutils literal notranslate"><span class="pre">allow-denied</span></code> (user denied by allow/deny rules), <code class="docutils literal notranslate"><span class="pre">root-denied</span></code> (root is denied in configuration), <code class="docutils literal notranslate"><span class="pre">empty-denied</span></code> (empty password is denied).</p> </dd> </dl> <p><code class="docutils literal notranslate"><span class="pre">LogFormat</span></code> directive for Apache can look like following:</p> <div class="highlight-apache notranslate"><div class="highlight"><pre><span></span><span class="nb">LogFormat</span> <span class="s2">"%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %{userID}n %{userStatus}n"</span> pma_combined </pre></div> </div> <p>You can then use any log analyzing tools to detect possible break-in attempts.</p> </div> <div class="section" id="why-are-there-path-disclosures-when-directly-loading-certain-files"> <span id="faq8-3"></span><h3>8.3 Why are there path disclosures when directly loading certain files?<a class="headerlink" href="#why-are-there-path-disclosures-when-directly-loading-certain-files" title="Permalink to this headline">¶</a></h3> <p>This is a server configuration problem. Never enable <code class="docutils literal notranslate"><span class="pre">display_errors</span></code> on a production site.</p> </div> <div class="section" id="csv-files-exported-from-phpmyadmin-could-allow-a-formula-injection-attack"> <span id="faq8-4"></span><h3>8.4 CSV files exported from phpMyAdmin could allow a formula injection attack.<a class="headerlink" href="#csv-files-exported-from-phpmyadmin-could-allow-a-formula-injection-attack" title="Permalink to this headline">¶</a></h3> <p>It is possible to generate a <a class="reference internal" href="glossary.html#term-CSV"><span class="xref std std-term">CSV</span></a> file that, when imported to a spreadsheet program such as Microsoft Excel, could potentially allow the execution of arbitrary commands.</p> <p>The CSV files generated by phpMyAdmin could potentially contain text that would be interpreted by a spreadsheet program as a formula, but we do not believe escaping those fields is the proper behavior. There is no means to properly escape and differentiate between a desired text output and a formula that should be escaped, and CSV is a text format where function definitions should not be interpreted anyway. We have discussed this at length and feel it is the responsibility of the spreadsheet program to properly parse and sanitize such data on input instead.</p> <p>Google also has a <a class="reference external" href="https://sites.google.com/site/bughunteruniversity/nonvuln/csv-excel-formula-injection">similar view</a>.</p> </div> </div> <div class="section" id="synchronization"> <span id="faqsynchronization"></span><h2>Synchronization<a class="headerlink" href="#synchronization" title="Permalink to this headline">¶</a></h2> <div class="section" id="faq9-1"> <span id="id23"></span><h3>9.1 (withdrawn).<a class="headerlink" href="#faq9-1" title="Permalink to this headline">¶</a></h3> </div> <div class="section" id="faq9-2"> <span id="id24"></span><h3>9.2 (withdrawn).<a class="headerlink" href="#faq9-2" title="Permalink to this headline">¶</a></h3> </div> </div> </div> <div class="clearer"></div> </div> </div> </div> <div class="sphinxsidebar" role="navigation" aria-label="main navigation"> <div class="sphinxsidebarwrapper"> <h3><a href="index.html">Table of Contents</a></h3> <ul> <li><a class="reference internal" href="#">FAQ - Frequently Asked Questions</a><ul> <li><a class="reference internal" href="#server">Server</a><ul> <li><a class="reference internal" href="#my-server-is-crashing-each-time-a-specific-action-is-required-or-phpmyadmin-sends-a-blank-page-or-a-page-full-of-cryptic-characters-to-my-browser-what-can-i-do">1.1 My server is crashing each time a specific action is required or phpMyAdmin sends a blank page or a page full of cryptic characters to my browser, what can I do?</a></li> <li><a class="reference internal" href="#my-apache-server-crashes-when-using-phpmyadmin">1.2 My Apache server crashes when using phpMyAdmin.</a></li> <li><a class="reference internal" href="#withdrawn">1.3 (withdrawn).</a></li> <li><a class="reference internal" href="#using-phpmyadmin-on-iis-i-m-displayed-the-error-message-the-specified-cgi-application-misbehaved-by-not-returning-a-complete-set-of-http-headers">1.4 Using phpMyAdmin on IIS, I’m displayed the error message: “The specified CGI application misbehaved by not returning a complete set of HTTP headers …”.</a></li> <li><a class="reference internal" href="#using-phpmyadmin-on-iis-i-m-facing-crashes-and-or-many-error-messages-with-the-http">1.5 Using phpMyAdmin on IIS, I’m facing crashes and/or many error messages with the HTTP.</a></li> <li><a class="reference internal" href="#i-can-t-use-phpmyadmin-on-pws-nothing-is-displayed">1.6 I can’t use phpMyAdmin on PWS: nothing is displayed!</a></li> <li><a class="reference internal" href="#how-can-i-gzip-a-dump-or-a-csv-export-it-does-not-seem-to-work">1.7 How can I gzip a dump or a CSV export? It does not seem to work.</a></li> <li><a class="reference internal" href="#i-cannot-insert-a-text-file-in-a-table-and-i-get-an-error-about-safe-mode-being-in-effect">1.8 I cannot insert a text file in a table, and I get an error about safe mode being in effect.</a></li> <li><a class="reference internal" href="#faq1-9">1.9 (withdrawn).</a></li> <li><a class="reference internal" href="#i-m-having-troubles-when-uploading-files-with-phpmyadmin-running-on-a-secure-server-my-browser-is-internet-explorer-and-i-m-using-the-apache-server">1.10 I’m having troubles when uploading files with phpMyAdmin running on a secure server. My browser is Internet Explorer and I’m using the Apache server.</a></li> <li><a class="reference internal" href="#i-get-an-open-basedir-restriction-while-uploading-a-file-from-the-import-tab">1.11 I get an ‘open_basedir restriction’ while uploading a file from the import tab.</a></li> <li><a class="reference internal" href="#i-have-lost-my-mysql-root-password-what-can-i-do">1.12 I have lost my MySQL root password, what can I do?</a></li> <li><a class="reference internal" href="#faq1-13">1.13 (withdrawn).</a></li> <li><a class="reference internal" href="#faq1-14">1.14 (withdrawn).</a></li> <li><a class="reference internal" href="#i-have-problems-with-mysql-user-column-names">1.15 I have problems with <em>mysql.user</em> column names.</a></li> <li><a class="reference internal" href="#i-cannot-upload-big-dump-files-memory-http-or-timeout-problems">1.16 I cannot upload big dump files (memory, HTTP or timeout problems).</a></li> <li><a class="reference internal" href="#which-database-versions-does-phpmyadmin-support">1.17 Which Database versions does phpMyAdmin support?</a></li> <li><a class="reference internal" href="#a-i-cannot-connect-to-the-mysql-server-it-always-returns-the-error-message-client-does-not-support-authentication-protocol-requested-by-server-consider-upgrading-mysql-client">1.17a I cannot connect to the MySQL server. It always returns the error message, “Client does not support authentication protocol requested by server; consider upgrading MySQL client”</a></li> <li><a class="reference internal" href="#faq1-18">1.18 (withdrawn).</a></li> <li><a class="reference internal" href="#i-can-t-run-the-display-relations-feature-because-the-script-seems-not-to-know-the-font-face-i-m-using">1.19 I can’t run the “display relations” feature because the script seems not to know the font face I’m using!</a></li> <li><a class="reference internal" href="#i-receive-an-error-about-missing-mysqli-and-mysql-extensions">1.20 I receive an error about missing mysqli and mysql extensions.</a></li> <li><a class="reference internal" href="#i-am-running-the-cgi-version-of-php-under-unix-and-i-cannot-log-in-using-cookie-auth">1.21 I am running the CGI version of PHP under Unix, and I cannot log in using cookie auth.</a></li> <li><a class="reference internal" href="#i-don-t-see-the-location-of-text-file-field-so-i-cannot-upload">1.22 I don’t see the “Location of text file” field, so I cannot upload.</a></li> <li><a class="reference internal" href="#i-m-running-mysql-on-a-win32-machine-each-time-i-create-a-new-table-the-table-and-column-names-are-changed-to-lowercase">1.23 I’m running MySQL on a Win32 machine. Each time I create a new table the table and column names are changed to lowercase!</a></li> <li><a class="reference internal" href="#faq1-24">1.24 (withdrawn).</a></li> <li><a class="reference internal" href="#i-am-running-apache-with-mod-gzip-1-3-26-1a-on-windows-xp-and-i-get-problems-such-as-undefined-variables-when-i-run-a-sql-query">1.25 I am running Apache with mod_gzip-1.3.26.1a on Windows XP, and I get problems, such as undefined variables when I run a SQL query.</a></li> <li><a class="reference internal" href="#i-just-installed-phpmyadmin-in-my-document-root-of-iis-but-i-get-the-error-no-input-file-specified-when-trying-to-run-phpmyadmin">1.26 I just installed phpMyAdmin in my document root of IIS but I get the error “No input file specified” when trying to run phpMyAdmin.</a></li> <li><a class="reference internal" href="#i-get-empty-page-when-i-want-to-view-huge-page-eg-db-structure-php-with-plenty-of-tables">1.27 I get empty page when I want to view huge page (eg. db_structure.php with plenty of tables).</a></li> <li><a class="reference internal" href="#my-mysql-server-sometimes-refuses-queries-and-returns-the-message-errorcode-13-what-does-this-mean">1.28 My MySQL server sometimes refuses queries and returns the message ‘Errorcode: 13’. What does this mean?</a></li> <li><a class="reference internal" href="#when-i-create-a-table-or-modify-a-column-i-get-an-error-and-the-columns-are-duplicated">1.29 When I create a table or modify a column, I get an error and the columns are duplicated.</a></li> <li><a class="reference internal" href="#i-get-the-error-navigation-php-missing-hash">1.30 I get the error “navigation.php: Missing hash”.</a></li> <li><a class="reference internal" href="#which-php-versions-does-phpmyadmin-support">1.31 Which PHP versions does phpMyAdmin support?</a></li> <li><a class="reference internal" href="#can-i-use-http-authentication-with-iis">1.32 Can I use HTTP authentication with IIS?</a></li> <li><a class="reference internal" href="#faq1-33">1.33 (withdrawn).</a></li> <li><a class="reference internal" href="#can-i-directly-access-a-database-or-table-pages">1.34 Can I directly access a database or table pages?</a></li> <li><a class="reference internal" href="#can-i-use-http-authentication-with-apache-cgi">1.35 Can I use HTTP authentication with Apache CGI?</a></li> <li><a class="reference internal" href="#i-get-an-error-500-internal-server-error">1.36 I get an error “500 Internal Server Error”.</a></li> <li><a class="reference internal" href="#i-run-phpmyadmin-on-cluster-of-different-machines-and-password-encryption-in-cookie-auth-doesn-t-work">1.37 I run phpMyAdmin on cluster of different machines and password encryption in cookie auth doesn’t work.</a></li> <li><a class="reference internal" href="#can-i-use-phpmyadmin-on-a-server-on-which-suhosin-is-enabled">1.38 Can I use phpMyAdmin on a server on which Suhosin is enabled?</a></li> <li><a class="reference internal" href="#when-i-try-to-connect-via-https-i-can-log-in-but-then-my-connection-is-redirected-back-to-http-what-can-cause-this-behavior">1.39 When I try to connect via https, I can log in, but then my connection is redirected back to http. What can cause this behavior?</a></li> <li><a class="reference internal" href="#when-accessing-phpmyadmin-via-an-apache-reverse-proxy-cookie-login-does-not-work">1.40 When accessing phpMyAdmin via an Apache reverse proxy, cookie login does not work.</a></li> <li><a class="reference internal" href="#when-i-view-a-database-and-ask-to-see-its-privileges-i-get-an-error-about-an-unknown-column">1.41 When I view a database and ask to see its privileges, I get an error about an unknown column.</a></li> <li><a class="reference internal" href="#how-can-i-prevent-robots-from-accessing-phpmyadmin">1.42 How can I prevent robots from accessing phpMyAdmin?</a></li> <li><a class="reference internal" href="#why-can-t-i-display-the-structure-of-my-table-containing-hundreds-of-columns">1.43 Why can’t I display the structure of my table containing hundreds of columns?</a></li> <li><a class="reference internal" href="#how-can-i-reduce-the-installed-size-of-phpmyadmin-on-disk">1.44 How can I reduce the installed size of phpMyAdmin on disk?</a></li> <li><a class="reference internal" href="#i-get-an-error-message-about-unknown-authentication-method-caching-sha2-password-when-trying-to-log-in">1.45 I get an error message about unknown authentication method caching_sha2_password when trying to log in</a></li> </ul> </li> <li><a class="reference internal" href="#configuration">Configuration</a><ul> <li><a class="reference internal" href="#the-error-message-warning-cannot-add-header-information-headers-already-sent-by-is-displayed-what-s-the-problem">2.1 The error message “Warning: Cannot add header information - headers already sent by …” is displayed, what’s the problem?</a></li> <li><a class="reference internal" href="#phpmyadmin-can-t-connect-to-mysql-what-s-wrong">2.2 phpMyAdmin can’t connect to MySQL. What’s wrong?</a></li> <li><a class="reference internal" href="#the-error-message-warning-mysql-connection-failed-can-t-connect-to-local-mysql-server-through-socket-tmp-mysql-sock-111-is-displayed-what-can-i-do">2.3 The error message “Warning: MySQL Connection Failed: Can’t connect to local MySQL server through socket ‘/tmp/mysql.sock’ (111) …” is displayed. What can I do?</a></li> <li><a class="reference internal" href="#nothing-is-displayed-by-my-browser-when-i-try-to-run-phpmyadmin-what-can-i-do">2.4 Nothing is displayed by my browser when I try to run phpMyAdmin, what can I do?</a></li> <li><a class="reference internal" href="#each-time-i-want-to-insert-or-change-a-row-or-drop-a-database-or-a-table-an-error-404-page-not-found-is-displayed-or-with-http-or-cookie-authentication-i-m-asked-to-log-in-again-what-s-wrong">2.5 Each time I want to insert or change a row or drop a database or a table, an error 404 (page not found) is displayed or, with HTTP or cookie authentication, I’m asked to log in again. What’s wrong?</a></li> <li><a class="reference internal" href="#i-get-an-access-denied-for-user-root-localhost-using-password-yes-error-when-trying-to-access-a-mysql-server-on-a-host-which-is-port-forwarded-for-my-localhost">2.6 I get an “Access denied for user: ‘root@localhost’ (Using password: YES)”-error when trying to access a MySQL-Server on a host which is port-forwarded for my localhost.</a></li> <li><a class="reference internal" href="#using-and-creating-themes">2.7 Using and creating themes</a></li> <li><a class="reference internal" href="#i-get-missing-parameters-errors-what-can-i-do">2.8 I get “Missing parameters” errors, what can I do?</a></li> <li><a class="reference internal" href="#seeing-an-upload-progress-bar">2.9 Seeing an upload progress bar</a></li> </ul> </li> <li><a class="reference internal" href="#known-limitations">Known limitations</a><ul> <li><a class="reference internal" href="#when-using-http-authentication-a-user-who-logged-out-can-not-log-in-again-in-with-the-same-nick">3.1 When using HTTP authentication, a user who logged out can not log in again in with the same nick.</a></li> <li><a class="reference internal" href="#when-dumping-a-large-table-in-compressed-mode-i-get-a-memory-limit-error-or-a-time-limit-error">3.2 When dumping a large table in compressed mode, I get a memory limit error or a time limit error.</a></li> <li><a class="reference internal" href="#with-innodb-tables-i-lose-foreign-key-relationships-when-i-rename-a-table-or-a-column">3.3 With InnoDB tables, I lose foreign key relationships when I rename a table or a column.</a></li> <li><a class="reference internal" href="#i-am-unable-to-import-dumps-i-created-with-the-mysqldump-tool-bundled-with-the-mysql-server-distribution">3.4 I am unable to import dumps I created with the mysqldump tool bundled with the MySQL server distribution.</a></li> <li><a class="reference internal" href="#when-using-nested-folders-multiple-hierarchies-are-displayed-in-a-wrong-manner">3.5 When using nested folders, multiple hierarchies are displayed in a wrong manner.</a></li> <li><a class="reference internal" href="#faq3-6">3.6 (withdrawn).</a></li> <li><a class="reference internal" href="#i-have-table-with-many-100-columns-and-when-i-try-to-browse-table-i-get-series-of-errors-like-warning-unable-to-parse-url-how-can-this-be-fixed">3.7 I have table with many (100+) columns and when I try to browse table I get series of errors like “Warning: unable to parse url”. How can this be fixed?</a></li> <li><a class="reference internal" href="#i-cannot-use-clickable-html-forms-in-columns-where-i-put-a-mime-transformation-onto">3.8 I cannot use (clickable) HTML-forms in columns where I put a MIME-Transformation onto!</a></li> <li><a class="reference internal" href="#i-get-error-messages-when-using-sql-mode-ansi-for-the-mysql-server">3.9 I get error messages when using “–sql_mode=ANSI” for the MySQL server.</a></li> <li><a class="reference internal" href="#homonyms-and-no-primary-key-when-the-results-of-a-select-display-more-that-one-column-with-the-same-value-for-example-select-lastname-from-employees-where-firstname-like-a-and-two-smith-values-are-displayed-if-i-click-edit-i-cannot-be-sure-that-i-am-editing-the-intended-row">3.10 Homonyms and no primary key: When the results of a SELECT display more that one column with the same value (for example <code class="docutils literal notranslate"><span class="pre">SELECT</span> <span class="pre">lastname</span> <span class="pre">from</span> <span class="pre">employees</span> <span class="pre">where</span> <span class="pre">firstname</span> <span class="pre">like</span> <span class="pre">'A%'</span></code> and two “Smith” values are displayed), if I click Edit I cannot be sure that I am editing the intended row.</a></li> <li><a class="reference internal" href="#the-number-of-rows-for-innodb-tables-is-not-correct">3.11 The number of rows for InnoDB tables is not correct.</a></li> <li><a class="reference internal" href="#faq3-12">3.12 (withdrawn).</a></li> <li><a class="reference internal" href="#i-get-an-error-when-entering-use-followed-by-a-db-name-containing-an-hyphen">3.13 I get an error when entering <code class="docutils literal notranslate"><span class="pre">USE</span></code> followed by a db name containing an hyphen.</a></li> <li><a class="reference internal" href="#i-am-not-able-to-browse-a-table-when-i-don-t-have-the-right-to-select-one-of-the-columns">3.14 I am not able to browse a table when I don’t have the right to SELECT one of the columns.</a></li> <li><a class="reference internal" href="#faq3-15">3.15 (withdrawn).</a></li> <li><a class="reference internal" href="#faq3-16">3.16 (withdrawn).</a></li> <li><a class="reference internal" href="#faq3-17">3.17 (withdrawn).</a></li> <li><a class="reference internal" href="#when-i-import-a-csv-file-that-contains-multiple-tables-they-are-lumped-together-into-a-single-table">3.18 When I import a CSV file that contains multiple tables, they are lumped together into a single table.</a></li> <li><a class="reference internal" href="#when-i-import-a-file-and-have-phpmyadmin-determine-the-appropriate-data-structure-it-only-uses-int-decimal-and-varchar-types">3.19 When I import a file and have phpMyAdmin determine the appropriate data structure it only uses int, decimal, and varchar types.</a></li> <li><a class="reference internal" href="#after-upgrading-some-bookmarks-are-gone-or-their-content-cannot-be-shown">3.20 After upgrading, some bookmarks are gone or their content cannot be shown.</a></li> <li><a class="reference internal" href="#i-am-unable-to-log-in-with-a-username-containing-unicode-characters-such-as-a">3.21 I am unable to log in with a username containing unicode characters such as á.</a></li> </ul> </li> <li><a class="reference internal" href="#isps-multi-user-installations">ISPs, multi-user installations</a><ul> <li><a class="reference internal" href="#i-m-an-isp-can-i-setup-one-central-copy-of-phpmyadmin-or-do-i-need-to-install-it-for-each-customer">4.1 I’m an ISP. Can I setup one central copy of phpMyAdmin or do I need to install it for each customer?</a></li> <li><a class="reference internal" href="#what-s-the-preferred-way-of-making-phpmyadmin-secure-against-evil-access">4.2 What’s the preferred way of making phpMyAdmin secure against evil access?</a></li> <li><a class="reference internal" href="#i-get-errors-about-not-being-able-to-include-a-file-in-lang-or-in-libraries">4.3 I get errors about not being able to include a file in <em>/lang</em> or in <em>/libraries</em>.</a></li> <li><a class="reference internal" href="#phpmyadmin-always-gives-access-denied-when-using-http-authentication">4.4 phpMyAdmin always gives “Access denied” when using HTTP authentication.</a></li> <li><a class="reference internal" href="#is-it-possible-to-let-users-create-their-own-databases">4.5 Is it possible to let users create their own databases?</a></li> <li><a class="reference internal" href="#how-can-i-use-the-host-based-authentication-additions">4.6 How can I use the Host-based authentication additions?</a></li> <li><a class="reference internal" href="#authentication-window-is-displayed-more-than-once-why">4.7 Authentication window is displayed more than once, why?</a></li> <li><a class="reference internal" href="#which-parameters-can-i-use-in-the-url-that-starts-phpmyadmin">4.8 Which parameters can I use in the URL that starts phpMyAdmin?</a></li> </ul> </li> <li><a class="reference internal" href="#browsers-or-client-os">Browsers or client OS</a><ul> <li><a class="reference internal" href="#i-get-an-out-of-memory-error-and-my-controls-are-non-functional-when-trying-to-create-a-table-with-more-than-14-columns">5.1 I get an out of memory error, and my controls are non-functional, when trying to create a table with more than 14 columns.</a></li> <li><a class="reference internal" href="#with-xitami-2-5b4-phpmyadmin-won-t-process-form-fields">5.2 With Xitami 2.5b4, phpMyAdmin won’t process form fields.</a></li> <li><a class="reference internal" href="#i-have-problems-dumping-tables-with-konqueror-phpmyadmin-2-2-2">5.3 I have problems dumping tables with Konqueror (phpMyAdmin 2.2.2).</a></li> <li><a class="reference internal" href="#i-can-t-use-the-cookie-authentication-mode-because-internet-explorer-never-stores-the-cookies">5.4 I can’t use the cookie authentication mode because Internet Explorer never stores the cookies.</a></li> <li><a class="reference internal" href="#faq5-5">5.5 (withdrawn).</a></li> <li><a class="reference internal" href="#faq5-6">5.6 (withdrawn).</a></li> <li><a class="reference internal" href="#i-refresh-reload-my-browser-and-come-back-to-the-welcome-page">5.7 I refresh (reload) my browser, and come back to the welcome page.</a></li> <li><a class="reference internal" href="#with-mozilla-0-9-7-i-have-problems-sending-a-query-modified-in-the-query-box">5.8 With Mozilla 0.9.7 I have problems sending a query modified in the query box.</a></li> <li><a class="reference internal" href="#with-mozilla-0-9-to-1-0-and-netscape-7-0-pr1-i-can-t-type-a-whitespace-in-the-sql-query-edit-area-the-page-scrolls-down">5.9 With Mozilla 0.9.? to 1.0 and Netscape 7.0-PR1 I can’t type a whitespace in the SQL-Query edit area: the page scrolls down.</a></li> <li><a class="reference internal" href="#faq5-10">5.10 (withdrawn).</a></li> <li><a class="reference internal" href="#extended-ascii-characters-like-german-umlauts-are-displayed-wrong">5.11 Extended-ASCII characters like German umlauts are displayed wrong.</a></li> <li><a class="reference internal" href="#mac-os-x-safari-browser-changes-special-characters-to">5.12 Mac OS X Safari browser changes special characters to “?”.</a></li> <li><a class="reference internal" href="#faq5-13">5.13 (withdrawn)</a></li> <li><a class="reference internal" href="#faq5-14">5.14 (withdrawn)</a></li> <li><a class="reference internal" href="#faq5-15">5.15 (withdrawn)</a></li> <li><a class="reference internal" href="#with-internet-explorer-i-get-access-is-denied-javascript-errors-or-i-cannot-make-phpmyadmin-work-under-windows">5.16 With Internet Explorer, I get “Access is denied” Javascript errors. Or I cannot make phpMyAdmin work under Windows.</a></li> <li><a class="reference internal" href="#with-firefox-i-cannot-delete-rows-of-data-or-drop-a-database">5.17 With Firefox, I cannot delete rows of data or drop a database.</a></li> <li><a class="reference internal" href="#faq5-18">5.18 (withdrawn)</a></li> <li><a class="reference internal" href="#i-get-javascript-errors-in-my-browser">5.19 I get JavaScript errors in my browser.</a></li> <li><a class="reference internal" href="#i-get-errors-about-violating-content-security-policy">5.20 I get errors about violating Content Security Policy.</a></li> <li><a class="reference internal" href="#i-get-errors-about-potentially-unsafe-operation-when-browsing-table-or-executing-sql-query">5.21 I get errors about potentially unsafe operation when browsing table or executing SQL query.</a></li> </ul> </li> <li><a class="reference internal" href="#using-phpmyadmin">Using phpMyAdmin</a><ul> <li><a class="reference internal" href="#i-can-t-insert-new-rows-into-a-table-i-can-t-create-a-table-mysql-brings-up-a-sql-error">6.1 I can’t insert new rows into a table / I can’t create a table - MySQL brings up a SQL error.</a></li> <li><a class="reference internal" href="#when-i-create-a-table-i-set-an-index-for-two-columns-and-phpmyadmin-generates-only-one-index-with-those-two-columns">6.2 When I create a table, I set an index for two columns and phpMyAdmin generates only one index with those two columns.</a></li> <li><a class="reference internal" href="#how-can-i-insert-a-null-value-into-my-table">6.3 How can I insert a null value into my table?</a></li> <li><a class="reference internal" href="#how-can-i-backup-my-database-or-table">6.4 How can I backup my database or table?</a></li> <li><a class="reference internal" href="#how-can-i-restore-upload-my-database-or-table-using-a-dump-how-can-i-run-a-sql-file">6.5 How can I restore (upload) my database or table using a dump? How can I run a “.sql” file?</a></li> <li><a class="reference internal" href="#how-can-i-use-the-relation-table-in-query-by-example">6.6 How can I use the relation table in Query-by-example?</a></li> <li><a class="reference internal" href="#how-can-i-use-the-display-column-feature">6.7 How can I use the “display column” feature?</a></li> <li><a class="reference internal" href="#how-can-i-produce-a-pdf-schema-of-my-database">6.8 How can I produce a PDF schema of my database?</a></li> <li><a class="reference internal" href="#phpmyadmin-is-changing-the-type-of-one-of-my-columns">6.9 phpMyAdmin is changing the type of one of my columns!</a></li> <li><a class="reference internal" href="#when-creating-a-privilege-what-happens-with-underscores-in-the-database-name">6.10 When creating a privilege, what happens with underscores in the database name?</a></li> <li><a class="reference internal" href="#what-is-the-curious-symbol-o-in-the-statistics-pages">6.11 What is the curious symbol ø in the statistics pages?</a></li> <li><a class="reference internal" href="#i-want-to-understand-some-export-options">6.12 I want to understand some Export options.</a></li> <li><a class="reference internal" href="#i-would-like-to-create-a-database-with-a-dot-in-its-name">6.13 I would like to create a database with a dot in its name.</a></li> <li><a class="reference internal" href="#faqsqlvalidator">6.14 (withdrawn).</a></li> <li><a class="reference internal" href="#i-want-to-add-a-blob-column-and-put-an-index-on-it-but-mysql-says-blob-column-used-in-key-specification-without-a-key-length">6.15 I want to add a BLOB column and put an index on it, but MySQL says “BLOB column ‘…’ used in key specification without a key length”.</a></li> <li><a class="reference internal" href="#how-can-i-simply-move-in-page-with-plenty-editing-fields">6.16 How can I simply move in page with plenty editing fields?</a></li> <li><a class="reference internal" href="#transformations-i-can-t-enter-my-own-mimetype-what-is-this-feature-then-useful-for">6.17 Transformations: I can’t enter my own mimetype! What is this feature then useful for?</a></li> <li><a class="reference internal" href="#bookmarks-where-can-i-store-bookmarks-why-can-t-i-see-any-bookmarks-below-the-query-box-what-are-these-variables-for">6.18 Bookmarks: Where can I store bookmarks? Why can’t I see any bookmarks below the query box? What are these variables for?</a></li> <li><a class="reference internal" href="#how-can-i-create-simple-latex-document-to-include-exported-table">6.19 How can I create simple LATEX document to include exported table?</a></li> <li><a class="reference internal" href="#i-see-a-lot-of-databases-which-are-not-mine-and-cannot-access-them">6.20 I see a lot of databases which are not mine, and cannot access them.</a></li> <li><a class="reference internal" href="#in-edit-insert-mode-how-can-i-see-a-list-of-possible-values-for-a-column-based-on-some-foreign-table">6.21 In edit/insert mode, how can I see a list of possible values for a column, based on some foreign table?</a></li> <li><a class="reference internal" href="#bookmarks-can-i-execute-a-default-bookmark-automatically-when-entering-browse-mode-for-a-table">6.22 Bookmarks: Can I execute a default bookmark automatically when entering Browse mode for a table?</a></li> <li><a class="reference internal" href="#export-i-heard-phpmyadmin-can-export-microsoft-excel-files">6.23 Export: I heard phpMyAdmin can export Microsoft Excel files?</a></li> <li><a class="reference internal" href="#now-that-phpmyadmin-supports-native-mysql-4-1-x-column-comments-what-happens-to-my-column-comments-stored-in-pmadb">6.24 Now that phpMyAdmin supports native MySQL 4.1.x column comments, what happens to my column comments stored in pmadb?</a></li> <li><a class="reference internal" href="#faq6-25">6.25 (withdrawn).</a></li> <li><a class="reference internal" href="#how-can-i-select-a-range-of-rows">6.26 How can I select a range of rows?</a></li> <li><a class="reference internal" href="#what-format-strings-can-i-use">6.27 What format strings can I use?</a></li> <li><a class="reference internal" href="#faq6-28">6.28 (withdrawn).</a></li> <li><a class="reference internal" href="#why-can-t-i-get-a-chart-from-my-query-result-table">6.29 Why can’t I get a chart from my query result table?</a></li> <li><a class="reference internal" href="#import-how-can-i-import-esri-shapefiles">6.30 Import: How can I import ESRI Shapefiles?</a></li> <li><a class="reference internal" href="#how-do-i-create-a-relation-in-designer">6.31 How do I create a relation in designer?</a></li> <li><a class="reference internal" href="#how-can-i-use-the-zoom-search-feature">6.32 How can I use the zoom search feature?</a></li> <li><a class="reference internal" href="#when-browsing-a-table-how-can-i-copy-a-column-name">6.33 When browsing a table, how can I copy a column name?</a></li> <li><a class="reference internal" href="#how-can-i-use-the-favorite-tables-feature">6.34 How can I use the Favorite Tables feature?</a></li> <li><a class="reference internal" href="#how-can-i-use-the-range-search-feature">6.35 How can I use the Range search feature?</a></li> <li><a class="reference internal" href="#what-is-central-columns-and-how-can-i-use-this-feature">6.36 What is Central columns and how can I use this feature?</a></li> <li><a class="reference internal" href="#how-can-i-use-improve-table-structure-feature">6.37 How can I use Improve Table structure feature?</a></li> <li><a class="reference internal" href="#how-can-i-reassign-auto-incremented-values">6.38 How can I reassign auto-incremented values?</a></li> <li><a class="reference internal" href="#what-is-the-adjust-privileges-option-when-renaming-copying-or-moving-a-database-table-column-or-procedure">6.39 What is the “Adjust privileges” option when renaming, copying, or moving a database, table, column, or procedure?</a></li> <li><a class="reference internal" href="#i-see-bind-parameters-checkbox-in-the-sql-page-how-do-i-write-parameterized-sql-queries">6.40 I see “Bind parameters” checkbox in the “SQL” page. How do I write parameterized SQL queries?</a></li> <li><a class="reference internal" href="#i-get-import-errors-while-importing-the-dumps-exported-from-older-mysql-versions-pre-5-7-6-into-newer-mysql-versions-5-7-7-but-they-work-fine-when-imported-back-on-same-older-versions">6.41 I get import errors while importing the dumps exported from older MySQL versions (pre-5.7.6) into newer MySQL versions (5.7.7+), but they work fine when imported back on same older versions ?</a></li> </ul> </li> <li><a class="reference internal" href="#phpmyadmin-project">phpMyAdmin project</a><ul> <li><a class="reference internal" href="#i-have-found-a-bug-how-do-i-inform-developers">7.1 I have found a bug. How do I inform developers?</a></li> <li><a class="reference internal" href="#i-want-to-translate-the-messages-to-a-new-language-or-upgrade-an-existing-language-where-do-i-start">7.2 I want to translate the messages to a new language or upgrade an existing language, where do I start?</a></li> <li><a class="reference internal" href="#i-would-like-to-help-out-with-the-development-of-phpmyadmin-how-should-i-proceed">7.3 I would like to help out with the development of phpMyAdmin. How should I proceed?</a></li> </ul> </li> <li><a class="reference internal" href="#security">Security</a><ul> <li><a class="reference internal" href="#where-can-i-get-information-about-the-security-alerts-issued-for-phpmyadmin">8.1 Where can I get information about the security alerts issued for phpMyAdmin?</a></li> <li><a class="reference internal" href="#how-can-i-protect-phpmyadmin-against-brute-force-attacks">8.2 How can I protect phpMyAdmin against brute force attacks?</a></li> <li><a class="reference internal" href="#why-are-there-path-disclosures-when-directly-loading-certain-files">8.3 Why are there path disclosures when directly loading certain files?</a></li> <li><a class="reference internal" href="#csv-files-exported-from-phpmyadmin-could-allow-a-formula-injection-attack">8.4 CSV files exported from phpMyAdmin could allow a formula injection attack.</a></li> </ul> </li> <li><a class="reference internal" href="#synchronization">Synchronization</a><ul> <li><a class="reference internal" href="#faq9-1">9.1 (withdrawn).</a></li> <li><a class="reference internal" href="#faq9-2">9.2 (withdrawn).</a></li> </ul> </li> </ul> </li> </ul> <h4>Previous topic</h4> <p class="topless"><a href="other.html" title="previous chapter">Other sources of information</a></p> <h4>Next topic</h4> <p class="topless"><a href="developers.html" title="next chapter">Developers Information</a></p> <div role="note" aria-label="source link"> <h3>This Page</h3> <ul class="this-page-menu"> <li><a href="_sources/faq.rst.txt" rel="nofollow">Show Source</a></li> </ul> </div> <div id="searchbox" style="display: none" role="search"> <h3 id="searchlabel">Quick search</h3> <div class="searchformwrapper"> <form class="search" action="search.html" method="get"> <input type="text" name="q" aria-labelledby="searchlabel" /> <input type="submit" value="Go" /> </form> </div> </div> <script>$('#searchbox').show(0);</script> </div> </div> <div class="clearer"></div> </div> <div class="related" role="navigation" aria-label="related navigation"> <h3>Navigation</h3> <ul> <li class="right" style="margin-right: 10px"> <a href="genindex.html" title="General Index" >index</a></li> <li class="right" > <a href="developers.html" title="Developers Information" >next</a> |</li> <li class="right" > <a href="other.html" title="Other sources of information" >previous</a> |</li> <li class="nav-item nav-item-0"><a href="index.html">phpMyAdmin 5.2.0 documentation</a> »</li> <li class="nav-item nav-item-this"><a href="">FAQ - Frequently Asked Questions</a></li> </ul> </div> <div class="footer" role="contentinfo"> © <a href="copyright.html">Copyright</a> 2012 - 2021, The phpMyAdmin devel team. Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 3.4.3. </div> </body> </html>Evidence Internal Server ErrorSolution Review the source code of this page. Implement custom error pages. Consider implementing a mechanism to provide a unique error reference/identifier to the client (browser) while logging the details on the server side and not exposing them to the user.
-
Directory Browsing (1)
GET http://localhost/scan/wordpress/wp-content/plugins/ele-custom-skin/
Alert tags Alert description It is possible to view the directory listing. Directory listing may reveal hidden scripts, include files, backup source files, etc. which can be accessed to read sensitive information.
Request Request line and header section (354 bytes)
GET http://localhost/scan/wordpress/wp-content/plugins/ele-custom-skin/ HTTP/1.1 host: localhost User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:136.0) Gecko/20100101 Firefox/136.0 Accept: text/css,*/*;q=0.1 Accept-Language: en-CA,en-US;q=0.7,en;q=0.3 Connection: keep-alive Referer: http://localhost/scan/wordpress/ Priority: u=2Request body (0 bytes)
Response Status line and header section (262 bytes)
HTTP/1.1 200 OK Date: Sat, 19 Apr 2025 15:55:06 GMT Server: Apache/2.4.54 (Unix) OpenSSL/1.1.1s PHP/7.4.33 mod_perl/2.0.12 Perl/v5.34.1 Content-Length: 2288 Keep-Alive: timeout=5, max=99 Connection: Keep-Alive Content-Type: text/html;charset=ISO-8859-1Response body (2288 bytes)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /scan/wordpress/wp-content/plugins/ele-custom-skin</title> </head> <body> <h1>Index of /scan/wordpress/wp-content/plugins/ele-custom-skin</h1> <table> <tr><th valign="top"><img src="/icons/blank.gif" alt="[ICO]"></th><th><a href="?C=N;O=D">Name</a></th><th><a href="?C=M;O=A">Last modified</a></th><th><a href="?C=S;O=A">Size</a></th><th><a href="?C=D;O=A">Description</a></th></tr> <tr><th colspan="5"><hr></th></tr> <tr><td valign="top"><img src="/icons/back.gif" alt="[PARENTDIR]"></td><td><a href="/scan/wordpress/wp-content/plugins/">Parent Directory</a> </td><td> </td><td align="right"> - </td><td> </td></tr> <tr><td valign="top"><img src="/icons/folder.gif" alt="[DIR]"></td><td><a href="assets/">assets/</a> </td><td align="right">2021-11-17 11:42 </td><td align="right"> - </td><td> </td></tr> <tr><td valign="top"><img src="/icons/unknown.gif" alt="[ ]"></td><td><a href="ele-custom-skin.php">ele-custom-skin.php</a> </td><td align="right">2021-11-17 11:42 </td><td align="right">1.8K</td><td> </td></tr> <tr><td valign="top"><img src="/icons/folder.gif" alt="[DIR]"></td><td><a href="includes/">includes/</a> </td><td align="right">2021-11-17 11:42 </td><td align="right"> - </td><td> </td></tr> <tr><td valign="top"><img src="/icons/folder.gif" alt="[DIR]"></td><td><a href="modules/">modules/</a> </td><td align="right">2021-11-17 11:42 </td><td align="right"> - </td><td> </td></tr> <tr><td valign="top"><img src="/icons/text.gif" alt="[TXT]"></td><td><a href="readme.txt">readme.txt</a> </td><td align="right">2021-11-17 11:42 </td><td align="right">7.3K</td><td> </td></tr> <tr><td valign="top"><img src="/icons/folder.gif" alt="[DIR]"></td><td><a href="skins/">skins/</a> </td><td align="right">2021-11-17 11:42 </td><td align="right"> - </td><td> </td></tr> <tr><td valign="top"><img src="/icons/folder.gif" alt="[DIR]"></td><td><a href="theme-builder/">theme-builder/</a> </td><td align="right">2021-11-17 11:42 </td><td align="right"> - </td><td> </td></tr> <tr><th colspan="5"><hr></th></tr> </table> </body></html>Attack http://localhost/scan/wordpress/wp-content/plugins/ele-custom-skin/Evidence Parent DirectorySolution Disable directory browsing. If this is required, make sure the listed files does not induce risks.
-
Missing Anti-clickjacking Header (1)
GET http://localhost/scan/wordpress/
Alert tags Alert description The response does not protect against 'ClickJacking' attacks. It should include either Content-Security-Policy with 'frame-ancestors' directive or X-Frame-Options.
Request Request line and header section (354 bytes)
GET http://localhost/scan/wordpress/ HTTP/1.1 host: localhost User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:136.0) Gecko/20100101 Firefox/136.0 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: en-CA,en-US;q=0.7,en;q=0.3 Connection: keep-alive Upgrade-Insecure-Requests: 1 Priority: u=0, iRequest body (0 bytes)
Response Status line and header section (362 bytes)
HTTP/1.1 200 OK Date: Sat, 19 Apr 2025 15:16:04 GMT Server: Apache/2.4.54 (Unix) OpenSSL/1.1.1s PHP/7.4.33 mod_perl/2.0.12 Perl/v5.34.1 X-Powered-By: PHP/7.4.33 Link: <http://localhost/scan/wordpress/wp-json/>; rel="https://api.w.org/" Keep-Alive: timeout=5, max=100 Connection: Keep-Alive Content-Type: text/html; charset=UTF-8 content-length: 16710Response body (16710 bytes)
<!doctype html> <html lang="en-US" > <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>yup-here – Just another WordPress site</title> <meta name='robots' content='max-image-preview:large' /> <link rel='dns-prefetch' href='//s.w.org' /> <link rel="alternate" type="application/rss+xml" title="yup-here » Feed" href="http://localhost/scan/wordpress/feed/" /> <link rel="alternate" type="application/rss+xml" title="yup-here » Comments Feed" href="http://localhost/scan/wordpress/comments/feed/" /> <script> window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.1.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.1.0\/svg\/","svgExt":".svg","source":{"concatemoji":"http:\/\/localhost\/scan\/wordpress\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.8"}}; !function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){var a=String.fromCharCode;p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,e),0,0);e=i.toDataURL();return p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,t),0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(!p||!p.fillText)return!1;switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])?!1:!s([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!s([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]);case"emoji":return!s([10084,65039,8205,55357,56613],[10084,65039,8203,55357,56613])}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(n=t.source||{}).concatemoji?c(n.concatemoji):n.wpemoji&&n.twemoji&&(c(n.twemoji),c(n.wpemoji)))}(window,document,window._wpemojiSettings); </script> <style> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 .07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='wc-blocks-integration-css' href='http://localhost/scan/wordpress/wp-content/plugins/woocommerce-payments/vendor/woocommerce/subscriptions-core/build/index.css?ver=3.1.6' media='all' /> <link rel='stylesheet' id='wp-block-library-css' href='http://localhost/scan/wordpress/wp-includes/css/dist/block-library/style.min.css?ver=5.8' media='all' /> <style id='wp-block-library-theme-inline-css'> #start-resizable-editor-section{display:none}.wp-block-audio figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-audio figcaption{color:hsla(0,0%,100%,.65)}.wp-block-code{font-family:Menlo,Consolas,monaco,monospace;color:#1e1e1e;padding:.8em 1em;border:1px solid #ddd;border-radius:4px}.wp-block-embed figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-embed figcaption{color:hsla(0,0%,100%,.65)}.blocks-gallery-caption{color:#555;font-size:13px;text-align:center}.is-dark-theme .blocks-gallery-caption{color:hsla(0,0%,100%,.65)}.wp-block-image figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-image figcaption{color:hsla(0,0%,100%,.65)}.wp-block-pullquote{border-top:4px solid;border-bottom:4px solid;margin-bottom:1.75em;color:currentColor}.wp-block-pullquote__citation,.wp-block-pullquote cite,.wp-block-pullquote footer{color:currentColor;text-transform:uppercase;font-size:.8125em;font-style:normal}.wp-block-quote{border-left:.25em solid;margin:0 0 1.75em;padding-left:1em}.wp-block-quote cite,.wp-block-quote footer{color:currentColor;font-size:.8125em;position:relative;font-style:normal}.wp-block-quote.has-text-align-right{border-left:none;border-right:.25em solid;padding-left:0;padding-right:1em}.wp-block-quote.has-text-align-center{border:none;padding-left:0}.wp-block-quote.is-large,.wp-block-quote.is-style-large{border:none}.wp-block-search .wp-block-search__label{font-weight:700}.wp-block-group.has-background{padding:1.25em 2.375em;margin-top:0;margin-bottom:0}.wp-block-separator{border:none;border-bottom:2px solid;margin-left:auto;margin-right:auto;opacity:.4}.wp-block-separator:not(.is-style-wide):not(.is-style-dots){width:100px}.wp-block-separator.has-background:not(.is-style-dots){border-bottom:none;height:1px}.wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots){height:2px}.wp-block-table thead{border-bottom:3px solid}.wp-block-table tfoot{border-top:3px solid}.wp-block-table td,.wp-block-table th{padding:.5em;border:1px solid;word-break:normal}.wp-block-table figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-table figcaption{color:hsla(0,0%,100%,.65)}.wp-block-video figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-video figcaption{color:hsla(0,0%,100%,.65)}.wp-block-template-part.has-background{padding:1.25em 2.375em;margin-top:0;margin-bottom:0}#end-resizable-editor-section{display:none} </style> <link rel='stylesheet' id='wc-blocks-vendors-style-css' href='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-vendors-style.css?ver=8.5.1' media='all' /> <link rel='stylesheet' id='wc-blocks-style-css' href='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-style.css?ver=8.5.1' media='all' /> <link rel='stylesheet' id='woocommerce-layout-css' href='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/css/woocommerce-layout.css?ver=7.0.0' media='all' /> <link rel='stylesheet' id='woocommerce-smallscreen-css' href='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/css/woocommerce-smallscreen.css?ver=7.0.0' media='only screen and (max-width: 768px)' /> <link rel='stylesheet' id='woocommerce-general-css' href='//localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/css/twenty-twenty-one.css?ver=7.0.0' media='all' /> <style id='woocommerce-inline-inline-css'> .woocommerce form .form-row .required { visibility: visible; } </style> <link rel='stylesheet' id='twenty-twenty-one-style-css' href='http://localhost/scan/wordpress/wp-content/themes/twentytwentyone/style.css?ver=1.4' media='all' /> <link rel='stylesheet' id='twenty-twenty-one-print-style-css' href='http://localhost/scan/wordpress/wp-content/themes/twentytwentyone/assets/css/print.css?ver=1.4' media='print' /> <link rel='stylesheet' id='ecs-styles-css' href='http://localhost/scan/wordpress/wp-content/plugins/ele-custom-skin/assets/css/ecs-style.css?ver=3.1.3' media='all' /> <script src='http://localhost/scan/wordpress/wp-includes/js/jquery/jquery.min.js?ver=3.6.0' id='jquery-core-js'></script> <script src='http://localhost/scan/wordpress/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.3.2' id='jquery-migrate-js'></script> <script id='ecs_ajax_load-js-extra'> var ecs_ajax_params = {"ajaxurl":"http:\/\/localhost\/scan\/wordpress\/wp-admin\/admin-ajax.php","posts":"{\"error\":\"\",\"m\":\"\",\"p\":0,\"post_parent\":\"\",\"subpost\":\"\",\"subpost_id\":\"\",\"attachment\":\"\",\"attachment_id\":0,\"name\":\"\",\"pagename\":\"\",\"page_id\":0,\"second\":\"\",\"minute\":\"\",\"hour\":\"\",\"day\":0,\"monthnum\":0,\"year\":0,\"w\":0,\"category_name\":\"\",\"tag\":\"\",\"cat\":\"\",\"tag_id\":\"\",\"author\":\"\",\"author_name\":\"\",\"feed\":\"\",\"tb\":\"\",\"paged\":0,\"meta_key\":\"\",\"meta_value\":\"\",\"preview\":\"\",\"s\":\"\",\"sentence\":\"\",\"title\":\"\",\"fields\":\"\",\"menu_order\":\"\",\"embed\":\"\",\"category__in\":[],\"category__not_in\":[],\"category__and\":[],\"post__in\":[],\"post__not_in\":[],\"post_name__in\":[],\"tag__in\":[],\"tag__not_in\":[],\"tag__and\":[],\"tag_slug__in\":[],\"tag_slug__and\":[],\"post_parent__in\":[],\"post_parent__not_in\":[],\"author__in\":[],\"author__not_in\":[],\"ignore_sticky_posts\":false,\"suppress_filters\":false,\"cache_results\":true,\"update_post_term_cache\":true,\"lazy_load_term_meta\":true,\"update_post_meta_cache\":true,\"post_type\":\"\",\"posts_per_page\":10,\"nopaging\":false,\"comments_per_page\":\"50\",\"no_found_rows\":false,\"order\":\"DESC\"}"}; </script> <script src='http://localhost/scan/wordpress/wp-content/plugins/ele-custom-skin/assets/js/ecs_ajax_pagination.js?ver=3.1.3' id='ecs_ajax_load-js'></script> <script src='http://localhost/scan/wordpress/wp-content/plugins/ele-custom-skin/assets/js/ecs.js?ver=3.1.3' id='ecs-script-js'></script> <link rel="https://api.w.org/" href="http://localhost/scan/wordpress/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://localhost/scan/wordpress/xmlrpc.php?rsd" /> <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://localhost/scan/wordpress/wp-includes/wlwmanifest.xml" /> <meta name="generator" content="WordPress 5.8" /> <meta name="generator" content="WooCommerce 7.0.0" /> <noscript><style>.woocommerce-product-gallery{ opacity: 1 !important; }</style></noscript> </head> <body class="home blog wp-embed-responsive theme-twentytwentyone woocommerce-no-js is-light-theme no-js hfeed elementor-default elementor-kit-10"> <div id="page" class="site"> <a class="skip-link screen-reader-text" href="#content">Skip to content</a> <header id="masthead" class="site-header has-title-and-tagline" role="banner"> <div class="site-branding"> <h1 class="site-title">yup-here</h1> <p class="site-description"> Just another WordPress site </p> </div><!-- .site-branding --> </header><!-- #masthead --> <div id="content" class="site-content"> <div id="primary" class="content-area"> <main id="main" class="site-main" role="main"> <article id="post-1" class="post-1 post type-post status-publish format-standard hentry category-uncategorized entry"> <header class="entry-header"> <h2 class="entry-title default-max-width"><a href="http://localhost/scan/wordpress/2025/02/28/hello-world/">Hello world!</a></h2></header><!-- .entry-header --> <div class="entry-content"> <p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p> </div><!-- .entry-content --> <footer class="entry-footer default-max-width"> <span class="posted-on">Published <time class="entry-date published updated" datetime="2025-02-28T01:47:30+00:00">February 28, 2025</time></span><div class="post-taxonomies"><span class="cat-links">Categorized as <a href="http://localhost/scan/wordpress/category/uncategorized/" rel="category tag">Uncategorized</a> </span></div> </footer><!-- .entry-footer --> </article><!-- #post-${ID} --> </main><!-- #main --> </div><!-- #primary --> </div><!-- #content --> <aside class="widget-area"> <section id="block-2" class="widget widget_block widget_search"><form role="search" method="get" action="http://localhost/scan/wordpress/" class="wp-block-search__button-outside wp-block-search__text-button wp-block-search"><label for="wp-block-search__input-1" class="wp-block-search__label">Search</label><div class="wp-block-search__inside-wrapper"><input type="search" id="wp-block-search__input-1" class="wp-block-search__input" name="s" value="" placeholder="" required /><button type="submit" class="wp-block-search__button ">Search</button></div></form></section><section id="block-3" class="widget widget_block"><div class="wp-block-group"><div class="wp-block-group__inner-container"><h2>Recent Posts</h2><ul class="wp-block-latest-posts__list wp-block-latest-posts"><li><a href="http://localhost/scan/wordpress/2025/02/28/hello-world/">Hello world!</a></li> </ul></div></div></section><section id="block-4" class="widget widget_block"><div class="wp-block-group"><div class="wp-block-group__inner-container"><h2>Recent Comments</h2><ol class="wp-block-latest-comments"><li class="wp-block-latest-comments__comment"><article><footer class="wp-block-latest-comments__comment-meta"><a class="wp-block-latest-comments__comment-author" href="https://wordpress.org/">A WordPress Commenter</a> on <a class="wp-block-latest-comments__comment-link" href="http://localhost/scan/wordpress/2025/02/28/hello-world/#comment-1">Hello world!</a></footer></article></li></ol></div></div></section> </aside><!-- .widget-area --> <footer id="colophon" class="site-footer" role="contentinfo"> <div class="site-info"> <div class="site-name"> yup-here </div><!-- .site-name --> <div class="powered-by"> Proudly powered by <a href="https://wordpress.org/">WordPress</a>. </div><!-- .powered-by --> </div><!-- .site-info --> </footer><!-- #colophon --> </div><!-- #page --> <script>document.body.classList.remove("no-js");</script> <script> if ( -1 !== navigator.userAgent.indexOf( 'MSIE' ) || -1 !== navigator.appVersion.indexOf( 'Trident/' ) ) { document.body.classList.add( 'is-IE' ); } </script> <script type="text/javascript"> (function () { var c = document.body.className; c = c.replace(/woocommerce-no-js/, 'woocommerce-js'); document.body.className = c; })(); </script> <script src='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js?ver=2.7.0-wc.7.0.0' id='jquery-blockui-js'></script> <script id='wc-add-to-cart-js-extra'> var wc_add_to_cart_params = {"ajax_url":"\/scan\/wordpress\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/scan\/wordpress\/?wc-ajax=%%endpoint%%","i18n_view_cart":"View cart","cart_url":"http:\/\/localhost\/scan\/wordpress\/cart\/","is_cart":"","cart_redirect_after_add":"no"}; </script> <script src='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.min.js?ver=7.0.0' id='wc-add-to-cart-js'></script> <script src='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.min.js?ver=2.1.4-wc.7.0.0' id='js-cookie-js'></script> <script id='woocommerce-js-extra'> var woocommerce_params = {"ajax_url":"\/scan\/wordpress\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/scan\/wordpress\/?wc-ajax=%%endpoint%%"}; </script> <script src='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.min.js?ver=7.0.0' id='woocommerce-js'></script> <script id='wc-cart-fragments-js-extra'> var wc_cart_fragments_params = {"ajax_url":"\/scan\/wordpress\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/scan\/wordpress\/?wc-ajax=%%endpoint%%","cart_hash_key":"wc_cart_hash_67da1dc18a3e11e4f2865063b3ad5420","fragment_name":"wc_fragments_67da1dc18a3e11e4f2865063b3ad5420","request_timeout":"5000"}; </script> <script src='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/js/frontend/cart-fragments.min.js?ver=7.0.0' id='wc-cart-fragments-js'></script> <script id='twenty-twenty-one-ie11-polyfills-js-after'> ( Element.prototype.matches && Element.prototype.closest && window.NodeList && NodeList.prototype.forEach ) || document.write( '<script src="http://localhost/scan/wordpress/wp-content/themes/twentytwentyone/assets/js/polyfills.js?ver=1.4"></scr' + 'ipt>' ); </script> <script src='http://localhost/scan/wordpress/wp-content/themes/twentytwentyone/assets/js/responsive-embeds.js?ver=1.4' id='twenty-twenty-one-responsive-embeds-script-js'></script> <script src='http://localhost/scan/wordpress/wp-includes/js/wp-embed.min.js?ver=5.8' id='wp-embed-js'></script> <script> /(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",(function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())}),!1); </script> </body> </html>Parameter x-frame-optionsSolution Modern Web browsers support the Content-Security-Policy and X-Frame-Options HTTP headers. Ensure one of them is set on all web pages returned by your site/app.
If you expect the page to be framed only by pages on your server (e.g. it's part of a FRAMESET) then you'll want to use SAMEORIGIN, otherwise if you never expect the page to be framed, you should use DENY. Alternatively consider implementing Content Security Policy's "frame-ancestors" directive.
-
Vulnerable JS Library (1)
GET http://localhost/phpmyadmin/js/vendor/jquery/jquery-ui.min.js?v=5.2.0
Alert tags Alert description The identified library jquery-ui, version 1.13.1 is vulnerable.
Other info CVE-2022-31160
Request Request line and header section (376 bytes)
GET http://localhost/phpmyadmin/js/vendor/jquery/jquery-ui.min.js?v=5.2.0 HTTP/1.1 host: localhost user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 pragma: no-cache cache-control: no-cache referer: http://localhost/phpmyadmin/ Cookie: pma_lang=en; phpMyAdmin=610f86c60f00a8f4dc92fe660c217e62Request body (0 bytes)
Response Status line and header section (302 bytes)
HTTP/1.1 200 OK Date: Sat, 19 Apr 2025 15:17:49 GMT Server: Apache/2.4.54 (Unix) OpenSSL/1.1.1s PHP/7.4.33 mod_perl/2.0.12 Perl/v5.34.1 Last-Modified: Wed, 11 May 2022 04:39:14 GMT ETag: "3e46a-5deb505f5e080" Accept-Ranges: bytes Content-Length: 255082 Content-Type: application/x-javascriptResponse body (255082 bytes)
/*! jQuery UI - v1.13.1 - 2022-01-20 * http://jqueryui.com * Includes: widget.js, position.js, data.js, disable-selection.js, effect.js, effects/effect-blind.js, effects/effect-bounce.js, effects/effect-clip.js, effects/effect-drop.js, effects/effect-explode.js, effects/effect-fade.js, effects/effect-fold.js, effects/effect-highlight.js, effects/effect-puff.js, effects/effect-pulsate.js, effects/effect-scale.js, effects/effect-shake.js, effects/effect-size.js, effects/effect-slide.js, effects/effect-transfer.js, focusable.js, form-reset-mixin.js, jquery-patch.js, keycode.js, labels.js, scroll-parent.js, tabbable.js, unique-id.js, widgets/accordion.js, widgets/autocomplete.js, widgets/button.js, widgets/checkboxradio.js, widgets/controlgroup.js, widgets/datepicker.js, widgets/dialog.js, widgets/draggable.js, widgets/droppable.js, widgets/menu.js, widgets/mouse.js, widgets/progressbar.js, widgets/resizable.js, widgets/selectable.js, widgets/selectmenu.js, widgets/slider.js, widgets/sortable.js, widgets/spinner.js, widgets/tabs.js, widgets/tooltip.js * Copyright jQuery Foundation and other contributors; Licensed MIT */ !function(t){"use strict";"function"==typeof define&&define.amd?define(["jquery"],t):t(jQuery)}(function(V){"use strict";V.ui=V.ui||{};V.ui.version="1.13.1";var n,i=0,a=Array.prototype.hasOwnProperty,r=Array.prototype.slice;V.cleanData=(n=V.cleanData,function(t){for(var e,i,s=0;null!=(i=t[s]);s++)(e=V._data(i,"events"))&&e.remove&&V(i).triggerHandler("remove");n(t)}),V.widget=function(t,i,e){var s,n,o,a={},r=t.split(".")[0],l=r+"-"+(t=t.split(".")[1]);return e||(e=i,i=V.Widget),Array.isArray(e)&&(e=V.extend.apply(null,[{}].concat(e))),V.expr.pseudos[l.toLowerCase()]=function(t){return!!V.data(t,l)},V[r]=V[r]||{},s=V[r][t],n=V[r][t]=function(t,e){if(!this||!this._createWidget)return new n(t,e);arguments.length&&this._createWidget(t,e)},V.extend(n,s,{version:e.version,_proto:V.extend({},e),_childConstructors:[]}),(o=new i).options=V.widget.extend({},o.options),V.each(e,function(e,s){function n(){return i.prototype[e].apply(this,arguments)}function o(t){return i.prototype[e].apply(this,t)}a[e]="function"==typeof s?function(){var t,e=this._super,i=this._superApply;return this._super=n,this._superApply=o,t=s.apply(this,arguments),this._super=e,this._superApply=i,t}:s}),n.prototype=V.widget.extend(o,{widgetEventPrefix:s&&o.widgetEventPrefix||t},a,{constructor:n,namespace:r,widgetName:t,widgetFullName:l}),s?(V.each(s._childConstructors,function(t,e){var i=e.prototype;V.widget(i.namespace+"."+i.widgetName,n,e._proto)}),delete s._childConstructors):i._childConstructors.push(n),V.widget.bridge(t,n),n},V.widget.extend=function(t){for(var e,i,s=r.call(arguments,1),n=0,o=s.length;n<o;n++)for(e in s[n])i=s[n][e],a.call(s[n],e)&&void 0!==i&&(V.isPlainObject(i)?t[e]=V.isPlainObject(t[e])?V.widget.extend({},t[e],i):V.widget.extend({},i):t[e]=i);return t},V.widget.bridge=function(o,e){var a=e.prototype.widgetFullName||o;V.fn[o]=function(i){var t="string"==typeof i,s=r.call(arguments,1),n=this;return t?this.length||"instance"!==i?this.each(function(){var t,e=V.data(this,a);return"instance"===i?(n=e,!1):e?"function"!=typeof e[i]||"_"===i.charAt(0)?V.error("no such method '"+i+"' for "+o+" widget instance"):(t=e[i].apply(e,s))!==e&&void 0!==t?(n=t&&t.jquery?n.pushStack(t.get()):t,!1):void 0:V.error("cannot call methods on "+o+" prior to initialization; attempted to call method '"+i+"'")}):n=void 0:(s.length&&(i=V.widget.extend.apply(null,[i].concat(s))),this.each(function(){var t=V.data(this,a);t?(t.option(i||{}),t._init&&t._init()):V.data(this,a,new e(i,this))})),n}},V.Widget=function(){},V.Widget._childConstructors=[],V.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",defaultElement:"<div>",options:{classes:{},disabled:!1,create:null},_createWidget:function(t,e){e=V(e||this.defaultElement||this)[0],this.element=V(e),this.uuid=i++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=V(),this.hoverable=V(),this.focusable=V(),this.classesElementLookup={},e!==this&&(V.data(e,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===e&&this.destroy()}}),this.document=V(e.style?e.ownerDocument:e.document||e),this.window=V(this.document[0].defaultView||this.document[0].parentWindow)),this.options=V.widget.extend({},this.options,this._getCreateOptions(),t),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:V.noop,_create:V.noop,_init:V.noop,destroy:function(){var i=this;this._destroy(),V.each(this.classesElementLookup,function(t,e){i._removeClass(e,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:V.noop,widget:function(){return this.element},option:function(t,e){var i,s,n,o=t;if(0===arguments.length)return V.widget.extend({},this.options);if("string"==typeof t)if(o={},t=(i=t.split(".")).shift(),i.length){for(s=o[t]=V.widget.extend({},this.options[t]),n=0;n<i.length-1;n++)s[i[n]]=s[i[n]]||{},s=s[i[n]];if(t=i.pop(),1===arguments.length)return void 0===s[t]?null:s[t];s[t]=e}else{if(1===arguments.length)return void 0===this.options[t]?null:this.options[t];o[t]=e}return this._setOptions(o),this},_setOptions:function(t){for(var e in t)this._setOption(e,t[e]);return this},_setOption:function(t,e){return"classes"===t&&this._setOptionClasses(e),this.options[t]=e,"disabled"===t&&this._setOptionDisabled(e),this},_setOptionClasses:function(t){var e,i,s;for(e in t)s=this.classesElementLookup[e],t[e]!==this.options.classes[e]&&s&&s.length&&(i=V(s.get()),this._removeClass(s,e),i.addClass(this._classes({element:i,keys:e,classes:t,add:!0})))},_setOptionDisabled:function(t){this._toggleClass(this.widget(),this.widgetFullName+"-disabled",null,!!t),t&&(this._removeClass(this.hoverable,null,"ui-state-hover"),this._removeClass(this.focusable,null,"ui-state-focus"))},enable:function(){return this._setOptions({disabled:!1})},disable:function(){return this._setOptions({disabled:!0})},_classes:function(n){var o=[],a=this;function t(t,e){for(var i,s=0;s<t.length;s++)i=a.classesElementLookup[t[s]]||V(),i=n.add?(function(){var i=[];n.element.each(function(t,e){V.map(a.classesElementLookup,function(t){return t}).some(function(t){return t.is(e)})||i.push(e)}),a._on(V(i),{remove:"_untrackClassesElement"})}(),V(V.uniqueSort(i.get().concat(n.element.get())))):V(i.not(n.element).get()),a.classesElementLookup[t[s]]=i,o.push(t[s]),e&&n.classes[t[s]]&&o.push(n.classes[t[s]])}return(n=V.extend({element:this.element,classes:this.options.classes||{}},n)).keys&&t(n.keys.match(/\S+/g)||[],!0),n.extra&&t(n.extra.match(/\S+/g)||[]),o.join(" ")},_untrackClassesElement:function(i){var s=this;V.each(s.classesElementLookup,function(t,e){-1!==V.inArray(i.target,e)&&(s.classesElementLookup[t]=V(e.not(i.target).get()))}),this._off(V(i.target))},_removeClass:function(t,e,i){return this._toggleClass(t,e,i,!1)},_addClass:function(t,e,i){return this._toggleClass(t,e,i,!0)},_toggleClass:function(t,e,i,s){var n="string"==typeof t||null===t,i={extra:n?e:i,keys:n?t:e,element:n?this.element:t,add:s="boolean"==typeof s?s:i};return i.element.toggleClass(this._classes(i),s),this},_on:function(n,o,t){var a,r=this;"boolean"!=typeof n&&(t=o,o=n,n=!1),t?(o=a=V(o),this.bindings=this.bindings.add(o)):(t=o,o=this.element,a=this.widget()),V.each(t,function(t,e){function i(){if(n||!0!==r.options.disabled&&!V(this).hasClass("ui-state-disabled"))return("string"==typeof e?r[e]:e).apply(r,arguments)}"string"!=typeof e&&(i.guid=e.guid=e.guid||i.guid||V.guid++);var s=t.match(/^([\w:-]*)\s*(.*)$/),t=s[1]+r.eventNamespace,s=s[2];s?a.on(t,s,i):o.on(t,i)})},_off:function(t,e){e=(e||"").split(" ").join(this.eventNamespace+" ")+this.eventNamespace,t.off(e),this.bindings=V(this.bindings.not(t).get()),this.focusable=V(this.focusable.not(t).get()),this.hoverable=V(this.hoverable.not(t).get())},_delay:function(t,e){var i=this;return setTimeout(function(){return("string"==typeof t?i[t]:t).apply(i,arguments)},e||0)},_hoverable:function(t){this.hoverable=this.hoverable.add(t),this._on(t,{mouseenter:function(t){this._addClass(V(t.currentTarget),null,"ui-state-hover")},mouseleave:function(t){this._removeClass(V(t.currentTarget),null,"ui-state-hover")}})},_focusable:function(t){this.focusable=this.focusable.add(t),this._on(t,{focusin:function(t){this._addClass(V(t.currentTarget),null,"ui-state-focus")},focusout:function(t){this._removeClass(V(t.currentTarget),null,"ui-state-focus")}})},_trigger:function(t,e,i){var s,n,o=this.options[t];if(i=i||{},(e=V.Event(e)).type=(t===this.widgetEventPrefix?t:this.widgetEventPrefix+t).toLowerCase(),e.target=this.element[0],n=e.originalEvent)for(s in n)s in e||(e[s]=n[s]);return this.element.trigger(e,i),!("function"==typeof o&&!1===o.apply(this.element[0],[e].concat(i))||e.isDefaultPrevented())}},V.each({show:"fadeIn",hide:"fadeOut"},function(o,a){V.Widget.prototype["_"+o]=function(e,t,i){var s,n=(t="string"==typeof t?{effect:t}:t)?!0!==t&&"number"!=typeof t&&t.effect||a:o;"number"==typeof(t=t||{})?t={duration:t}:!0===t&&(t={}),s=!V.isEmptyObject(t),t.complete=i,t.delay&&e.delay(t.delay),s&&V.effects&&V.effects.effect[n]?e[o](t):n!==o&&e[n]?e[n](t.duration,t.easing,i):e.queue(function(t){V(this)[o](),i&&i.call(e[0]),t()})}});var s,x,k,o,l,h,c,u,C;V.widget;function D(t,e,i){return[parseFloat(t[0])*(u.test(t[0])?e/100:1),parseFloat(t[1])*(u.test(t[1])?i/100:1)]}function I(t,e){return parseInt(V.css(t,e),10)||0}function T(t){return null!=t&&t===t.window}x=Math.max,k=Math.abs,o=/left|center|right/,l=/top|center|bottom/,h=/[\+\-]\d+(\.[\d]+)?%?/,c=/^\w+/,u=/%$/,C=V.fn.position,V.position={scrollbarWidth:function(){if(void 0!==s)return s;var t,e=V("<div style='display:block;position:absolute;width:200px;height:200px;overflow:hidden;'><div style='height:300px;width:auto;'></div></div>"),i=e.children()[0];return V("body").append(e),t=i.offsetWidth,e.css("overflow","scroll"),t===(i=i.offsetWidth)&&(i=e[0].clientWidth),e.remove(),s=t-i},getScrollInfo:function(t){var e=t.isWindow||t.isDocument?"":t.element.css("overflow-x"),i=t.isWindow||t.isDocument?"":t.element.css("overflow-y"),e="scroll"===e||"auto"===e&&t.width<t.element[0].scrollWidth;return{width:"scroll"===i||"auto"===i&&t.height<t.element[0].scrollHeight?V.position.scrollbarWidth():0,height:e?V.position.scrollbarWidth():0}},getWithinInfo:function(t){var e=V(t||window),i=T(e[0]),s=!!e[0]&&9===e[0].nodeType;return{element:e,isWindow:i,isDocument:s,offset:!i&&!s?V(t).offset():{left:0,top:0},scrollLeft:e.scrollLeft(),scrollTop:e.scrollTop(),width:e.outerWidth(),height:e.outerHeight()}}},V.fn.position=function(u){if(!u||!u.of)return C.apply(this,arguments);var d,p,f,g,m,t,_="string"==typeof(u=V.extend({},u)).of?V(document).find(u.of):V(u.of),v=V.position.getWithinInfo(u.within),b=V.position.getScrollInfo(v),y=(u.collision||"flip").split(" "),w={},e=9===(t=(e=_)[0]).nodeType?{width:e.width(),height:e.height(),offset:{top:0,left:0}}:T(t)?{width:e.width(),height:e.height(),offset:{top:e.scrollTop(),left:e.scrollLeft()}}:t.preventDefault?{width:0,height:0,offset:{top:t.pageY,left:t.pageX}}:{width:e.outerWidth(),height:e.outerHeight(),offset:e.offset()};return _[0].preventDefault&&(u.at="left top"),p=e.width,f=e.height,m=V.extend({},g=e.offset),V.each(["my","at"],function(){var t,e,i=(u[this]||"").split(" ");(i=1===i.length?o.test(i[0])?i.concat(["center"]):l.test(i[0])?["center"].concat(i):["center","center"]:i)[0]=o.test(i[0])?i[0]:"center",i[1]=l.test(i[1])?i[1]:"center",t=h.exec(i[0]),e=h.exec(i[1]),w[this]=[t?t[0]:0,e?e[0]:0],u[this]=[c.exec(i[0])[0],c.exec(i[1])[0]]}),1===y.length&&(y[1]=y[0]),"right"===u.at[0]?m.left+=p:"center"===u.at[0]&&(m.left+=p/2),"bottom"===u.at[1]?m.top+=f:"center"===u.at[1]&&(m.top+=f/2),d=D(w.at,p,f),m.left+=d[0],m.top+=d[1],this.each(function(){var i,t,a=V(this),r=a.outerWidth(),l=a.outerHeight(),e=I(this,"marginLeft"),s=I(this,"marginTop"),n=r+e+I(this,"marginRight")+b.width,o=l+s+I(this,"marginBottom")+b.height,h=V.extend({},m),c=D(w.my,a.outerWidth(),a.outerHeight());"right"===u.my[0]?h.left-=r:"center"===u.my[0]&&(h.left-=r/2),"bottom"===u.my[1]?h.top-=l:"center"===u.my[1]&&(h.top-=l/2),h.left+=c[0],h.top+=c[1],i={marginLeft:e,marginTop:s},V.each(["left","top"],function(t,e){V.ui.position[y[t]]&&V.ui.position[y[t]][e](h,{targetWidth:p,targetHeight:f,elemWidth:r,elemHeight:l,collisionPosition:i,collisionWidth:n,collisionHeight:o,offset:[d[0]+c[0],d[1]+c[1]],my:u.my,at:u.at,within:v,elem:a})}),u.using&&(t=function(t){var e=g.left-h.left,i=e+p-r,s=g.top-h.top,n=s+f-l,o={target:{element:_,left:g.left,top:g.top,width:p,height:f},element:{element:a,left:h.left,top:h.top,width:r,height:l},horizontal:i<0?"left":0<e?"right":"center",vertical:n<0?"top":0<s?"bottom":"middle"};p<r&&k(e+i)<p&&(o.horizontal="center"),f<l&&k(s+n)<f&&(o.vertical="middle"),x(k(e),k(i))>x(k(s),k(n))?o.important="horizontal":o.important="vertical",u.using.call(this,t,o)}),a.offset(V.extend(h,{using:t}))})},V.ui.position={fit:{left:function(t,e){var i=e.within,s=i.isWindow?i.scrollLeft:i.offset.left,n=i.width,o=t.left-e.collisionPosition.marginLeft,a=s-o,r=o+e.collisionWidth-n-s;e.collisionWidth>n?0<a&&r<=0?(i=t.left+a+e.collisionWidth-n-s,t.left+=a-i):t.left=!(0<r&&a<=0)&&r<a?s+n-e.collisionWidth:s:0<a?t.left+=a:0<r?t.left-=r:t.left=x(t.left-o,t.left)},top:function(t,e){var i=e.within,s=i.isWindow?i.scrollTop:i.offset.top,n=e.within.height,o=t.top-e.collisionPosition.marginTop,a=s-o,r=o+e.collisionHeight-n-s;e.collisionHeight>n?0<a&&r<=0?(i=t.top+a+e.collisionHeight-n-s,t.top+=a-i):t.top=!(0<r&&a<=0)&&r<a?s+n-e.collisionHeight:s:0<a?t.top+=a:0<r?t.top-=r:t.top=x(t.top-o,t.top)}},flip:{left:function(t,e){var i=e.within,s=i.offset.left+i.scrollLeft,n=i.width,o=i.isWindow?i.scrollLeft:i.offset.left,a=t.left-e.collisionPosition.marginLeft,r=a-o,l=a+e.collisionWidth-n-o,h="left"===e.my[0]?-e.elemWidth:"right"===e.my[0]?e.elemWidth:0,i="left"===e.at[0]?e.targetWidth:"right"===e.at[0]?-e.targetWidth:0,a=-2*e.offset[0];r<0?((s=t.left+h+i+a+e.collisionWidth-n-s)<0||s<k(r))&&(t.left+=h+i+a):0<l&&(0<(o=t.left-e.collisionPosition.marginLeft+h+i+a-o)||k(o)<l)&&(t.left+=h+i+a)},top:function(t,e){var i=e.within,s=i.offset.top+i.scrollTop,n=i.height,o=i.isWindow?i.scrollTop:i.offset.top,a=t.top-e.collisionPosition.marginTop,r=a-o,l=a+e.collisionHeight-n-o,h="top"===e.my[1]?-e.elemHeight:"bottom"===e.my[1]?e.elemHeight:0,i="top"===e.at[1]?e.targetHeight:"bottom"===e.at[1]?-e.targetHeight:0,a=-2*e.offset[1];r<0?((s=t.top+h+i+a+e.collisionHeight-n-s)<0||s<k(r))&&(t.top+=h+i+a):0<l&&(0<(o=t.top-e.collisionPosition.marginTop+h+i+a-o)||k(o)<l)&&(t.top+=h+i+a)}},flipfit:{left:function(){V.ui.position.flip.left.apply(this,arguments),V.ui.position.fit.left.apply(this,arguments)},top:function(){V.ui.position.flip.top.apply(this,arguments),V.ui.position.fit.top.apply(this,arguments)}}};V.ui.position,V.extend(V.expr.pseudos,{data:V.expr.createPseudo?V.expr.createPseudo(function(e){return function(t){return!!V.data(t,e)}}):function(t,e,i){return!!V.data(t,i[3])}}),V.fn.extend({disableSelection:(t="onselectstart"in document.createElement("div")?"selectstart":"mousedown",function(){return this.on(t+".ui-disableSelection",function(t){t.preventDefault()})}),enableSelection:function(){return this.off(".ui-disableSelection")}});var t,d=V,p={},e=p.toString,f=/^([\-+])=\s*(\d+\.?\d*)/,g=[{re:/rgba?\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,parse:function(t){return[t[1],t[2],t[3],t[4]]}},{re:/rgba?\(\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,parse:function(t){return[2.55*t[1],2.55*t[2],2.55*t[3],t[4]]}},{re:/#([a-f0-9]{2})([a-f0-9]{2})([a-f0-9]{2})([a-f0-9]{2})?/,parse:function(t){return[parseInt(t[1],16),parseInt(t[2],16),parseInt(t[3],16),t[4]?(parseInt(t[4],16)/255).toFixed(2):1]}},{re:/#([a-f0-9])([a-f0-9])([a-f0-9])([a-f0-9])?/,parse:function(t){return[parseInt(t[1]+t[1],16),parseInt(t[2]+t[2],16),parseInt(t[3]+t[3],16),t[4]?(parseInt(t[4]+t[4],16)/255).toFixed(2):1]}},{re:/hsla?\(\s*(\d+(?:\.\d+)?)\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,space:"hsla",parse:function(t){return[t[1],t[2]/100,t[3]/100,t[4]]}}],m=d.Color=function(t,e,i,s){return new d.Color.fn.parse(t,e,i,s)},_={rgba:{props:{red:{idx:0,type:"byte"},green:{idx:1,type:"byte"},blue:{idx:2,type:"byte"}}},hsla:{props:{hue:{idx:0,type:"degrees"},saturation:{idx:1,type:"percent"},lightness:{idx:2,type:"percent"}}}},v={byte:{floor:!0,max:255},percent:{max:1},degrees:{mod:360,floor:!0}},b=m.support={},y=d("<p>")[0],w=d.each;function P(t){return null==t?t+"":"object"==typeof t?p[e.call(t)]||"object":typeof t}function M(t,e,i){var s=v[e.type]||{};return null==t?i||!e.def?null:e.def:(t=s.floor?~~t:parseFloat(t),isNaN(t)?e.def:s.mod?(t+s.mod)%s.mod:Math.min(s.max,Math.max(0,t)))}function S(s){var n=m(),o=n._rgba=[];return s=s.toLowerCase(),w(g,function(t,e){var i=e.re.exec(s),i=i&&e.parse(i),e=e.space||"rgba";if(i)return i=n[e](i),n[_[e].cache]=i[_[e].cache],o=n._rgba=i._rgba,!1}),o.length?("0,0,0,0"===o.join()&&d.extend(o,B.transparent),n):B[s]}function H(t,e,i){return 6*(i=(i+1)%1)<1?t+(e-t)*i*6:2*i<1?e:3*i<2?t+(e-t)*(2/3-i)*6:t}y.style.cssText="background-color:rgba(1,1,1,.5)",b.rgba=-1<y.style.backgroundColor.indexOf("rgba"),w(_,function(t,e){e.cache="_"+t,e.props.alpha={idx:3,type:"percent",def:1}}),d.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(t,e){p["[object "+e+"]"]=e.toLowerCase()}),(m.fn=d.extend(m.prototype,{parse:function(n,t,e,i){if(void 0===n)return this._rgba=[null,null,null,null],this;(n.jquery||n.nodeType)&&(n=d(n).css(t),t=void 0);var o=this,s=P(n),a=this._rgba=[];return void 0!==t&&(n=[n,t,e,i],s="array"),"string"===s?this.parse(S(n)||B._default):"array"===s?(w(_.rgba.props,function(t,e){a[e.idx]=M(n[e.idx],e)}),this):"object"===s?(w(_,n instanceof m?function(t,e){n[e.cache]&&(o[e.cache]=n[e.cache].slice())}:function(t,i){var s=i.cache;w(i.props,function(t,e){if(!o[s]&&i.to){if("alpha"===t||null==n[t])return;o[s]=i.to(o._rgba)}o[s][e.idx]=M(n[t],e,!0)}),o[s]&&d.inArray(null,o[s].slice(0,3))<0&&(null==o[s][3]&&(o[s][3]=1),i.from&&(o._rgba=i.from(o[s])))}),this):void 0},is:function(t){var n=m(t),o=!0,a=this;return w(_,function(t,e){var i,s=n[e.cache];return s&&(i=a[e.cache]||e.to&&e.to(a._rgba)||[],w(e.props,function(t,e){if(null!=s[e.idx])return o=s[e.idx]===i[e.idx]})),o}),o},_space:function(){var i=[],s=this;return w(_,function(t,e){s[e.cache]&&i.push(t)}),i.pop()},transition:function(t,a){var e=(h=m(t))._space(),i=_[e],t=0===this.alpha()?m("transparent"):this,r=t[i.cache]||i.to(t._rgba),l=r.slice(),h=h[i.cache];return w(i.props,function(t,e){var i=e.idx,s=r[i],n=h[i],o=v[e.type]||{};null!==n&&(null===s?l[i]=n:(o.mod&&(n-s>o.mod/2?s+=o.mod:s-n>o.mod/2&&(s-=o.mod)),l[i]=M((n-s)*a+s,e)))}),this[e](l)},blend:function(t){if(1===this._rgba[3])return this;var e=this._rgba.slice(),i=e.pop(),s=m(t)._rgba;return m(d.map(e,function(t,e){return(1-i)*s[e]+i*t}))},toRgbaString:function(){var t="rgba(",e=d.map(this._rgba,function(t,e){return null!=t?t:2<e?1:0});return 1===e[3]&&(e.pop(),t="rgb("),t+e.join()+")"},toHslaString:function(){var t="hsla(",e=d.map(this.hsla(),function(t,e){return null==t&&(t=2<e?1:0),t=e&&e<3?Math.round(100*t)+"%":t});return 1===e[3]&&(e.pop(),t="hsl("),t+e.join()+")"},toHexString:function(t){var e=this._rgba.slice(),i=e.pop();return t&&e.push(~~(255*i)),"#"+d.map(e,function(t){return 1===(t=(t||0).toString(16)).length?"0"+t:t}).join("")},toString:function(){return 0===this._rgba[3]?"transparent":this.toRgbaString()}})).parse.prototype=m.fn,_.hsla.to=function(t){if(null==t[0]||null==t[1]||null==t[2])return[null,null,null,t[3]];var e=t[0]/255,i=t[1]/255,s=t[2]/255,n=t[3],o=Math.max(e,i,s),a=Math.min(e,i,s),r=o-a,l=o+a,t=.5*l,i=a===o?0:e===o?60*(i-s)/r+360:i===o?60*(s-e)/r+120:60*(e-i)/r+240,l=0==r?0:t<=.5?r/l:r/(2-l);return[Math.round(i)%360,l,t,null==n?1:n]},_.hsla.from=function(t){if(null==t[0]||null==t[1]||null==t[2])return[null,null,null,t[3]];var e=t[0]/360,i=t[1],s=t[2],t=t[3],i=s<=.5?s*(1+i):s+i-s*i,s=2*s-i;return[Math.round(255*H(s,i,e+1/3)),Math.round(255*H(s,i,e)),Math.round(255*H(s,i,e-1/3)),t]},w(_,function(l,t){var e=t.props,o=t.cache,a=t.to,r=t.from;m.fn[l]=function(t){if(a&&!this[o]&&(this[o]=a(this._rgba)),void 0===t)return this[o].slice();var i=P(t),s="array"===i||"object"===i?t:arguments,n=this[o].slice();return w(e,function(t,e){t=s["object"===i?t:e.idx];null==t&&(t=n[e.idx]),n[e.idx]=M(t,e)}),r?((t=m(r(n)))[o]=n,t):m(n)},w(e,function(a,r){m.fn[a]||(m.fn[a]=function(t){var e,i=P(t),s="alpha"===a?this._hsla?"hsla":"rgba":l,n=this[s](),o=n[r.idx];return"undefined"===i?o:("function"===i&&(i=P(t=t.call(this,o))),null==t&&r.empty?this:("string"===i&&(e=f.exec(t))&&(t=o+parseFloat(e[2])*("+"===e[1]?1:-1)),n[r.idx]=t,this[s](n)))})})}),(m.hook=function(t){t=t.split(" ");w(t,function(t,o){d.cssHooks[o]={set:function(t,e){var i,s,n="";if("transparent"!==e&&("string"!==P(e)||(i=S(e)))){if(e=m(i||e),!b.rgba&&1!==e._rgba[3]){for(s="backgroundColor"===o?t.parentNode:t;(""===n||"transparent"===n)&&s&&s.style;)try{n=d.css(s,"backgroundColor"),s=s.parentNode}catch(t){}e=e.blend(n&&"transparent"!==n?n:"_default")}e=e.toRgbaString()}try{t.style[o]=e}catch(t){}}},d.fx.step[o]=function(t){t.colorInit||(t.start=m(t.elem,o),t.end=m(t.end),t.colorInit=!0),d.cssHooks[o].set(t.elem,t.start.transition(t.end,t.pos))}})})("backgroundColor borderBottomColor borderLeftColor borderRightColor borderTopColor color columnRuleColor outlineColor textDecorationColor textEmphasisColor"),d.cssHooks.borderColor={expand:function(i){var s={};return w(["Top","Right","Bottom","Left"],function(t,e){s["border"+e+"Color"]=i}),s}};var z,A,O,N,E,W,F,L,R,Y,B=d.Color.names={aqua:"#00ffff",black:"#000000",blue:"#0000ff",fuchsia:"#ff00ff",gray:"#808080",green:"#008000",lime:"#00ff00",maroon:"#800000",navy:"#000080",olive:"#808000",purple:"#800080",red:"#ff0000",silver:"#c0c0c0",teal:"#008080",white:"#ffffff",yellow:"#ffff00",transparent:[null,null,null,0],_default:"#ffffff"},j="ui-effects-",q="ui-effects-style",K="ui-effects-animated";function U(t){var e,i,s=t.ownerDocument.defaultView?t.ownerDocument.defaultView.getComputedStyle(t,null):t.currentStyle,n={};if(s&&s.length&&s[0]&&s[s[0]])for(i=s.length;i--;)"string"==typeof s[e=s[i]]&&(n[e.replace(/-([\da-z])/gi,function(t,e){return e.toUpperCase()})]=s[e]);else for(e in s)"string"==typeof s[e]&&(n[e]=s[e]);return n}function X(t,e,i,s){return t={effect:t=V.isPlainObject(t)?(e=t).effect:t},"function"==typeof(e=null==e?{}:e)&&(s=e,i=null,e={}),"number"!=typeof e&&!V.fx.speeds[e]||(s=i,i=e,e={}),"function"==typeof i&&(s=i,i=null),e&&V.extend(t,e),i=i||e.duration,t.duration=V.fx.off?0:"number"==typeof i?i:i in V.fx.speeds?V.fx.speeds[i]:V.fx.speeds._default,t.complete=s||e.complete,t}function $(t){return!t||"number"==typeof t||V.fx.speeds[t]||("string"==typeof t&&!V.effects.effect[t]||("function"==typeof t||"object"==typeof t&&!t.effect))}function G(t,e){var i=e.outerWidth(),e=e.outerHeight(),t=/^rect\((-?\d*\.?\d*px|-?\d+%|auto),?\s*(-?\d*\.?\d*px|-?\d+%|auto),?\s*(-?\d*\.?\d*px|-?\d+%|auto),?\s*(-?\d*\.?\d*px|-?\d+%|auto)\)$/.exec(t)||["",0,i,e,0];return{top:parseFloat(t[1])||0,right:"auto"===t[2]?i:parseFloat(t[2]),bottom:"auto"===t[3]?e:parseFloat(t[3]),left:parseFloat(t[4])||0}}V.effects={effect:{}},N=["add","remove","toggle"],E={border:1,borderBottom:1,borderColor:1,borderLeft:1,borderRight:1,borderTop:1,borderWidth:1,margin:1,padding:1},V.each(["borderLeftStyle","borderRightStyle","borderBottomStyle","borderTopStyle"],function(t,e){V.fx.step[e]=function(t){("none"!==t.end&&!t.setAttr||1===t.pos&&!t.setAttr)&&(d.style(t.elem,e,t.end),t.setAttr=!0)}}),V.fn.addBack||(V.fn.addBack=function(t){return this.add(null==t?this.prevObject:this.prevObject.filter(t))}),V.effects.animateClass=function(n,t,e,i){var o=V.speed(t,e,i);return this.queue(function(){var i=V(this),t=i.attr("class")||"",e=(e=o.children?i.find("*").addBack():i).map(function(){return{el:V(this),start:U(this)}}),s=function(){V.each(N,function(t,e){n[e]&&i[e+"Class"](n[e])})};s(),e=e.map(function(){return this.end=U(this.el[0]),this.diff=function(t,e){var i,s,n={};for(i in e)s=e[i],t[i]!==s&&(E[i]||!V.fx.step[i]&&isNaN(parseFloat(s))||(n[i]=s));return n}(this.start,this.end),this}),i.attr("class",t),e=e.map(function(){var t=this,e=V.Deferred(),i=V.extend({},o,{queue:!1,complete:function(){e.resolve(t)}});return this.el.animate(this.diff,i),e.promise()}),V.when.apply(V,e.get()).done(function(){s(),V.each(arguments,function(){var e=this.el;V.each(this.diff,function(t){e.css(t,"")})}),o.complete.call(i[0])})})},V.fn.extend({addClass:(O=V.fn.addClass,function(t,e,i,s){return e?V.effects.animateClass.call(this,{add:t},e,i,s):O.apply(this,arguments)}),removeClass:(A=V.fn.removeClass,function(t,e,i,s){return 1<arguments.length?V.effects.animateClass.call(this,{remove:t},e,i,s):A.apply(this,arguments)}),toggleClass:(z=V.fn.toggleClass,function(t,e,i,s,n){return"boolean"==typeof e||void 0===e?i?V.effects.animateClass.call(this,e?{add:t}:{remove:t},i,s,n):z.apply(this,arguments):V.effects.animateClass.call(this,{toggle:t},e,i,s)}),switchClass:function(t,e,i,s,n){return V.effects.animateClass.call(this,{add:e,remove:t},i,s,n)}}),V.expr&&V.expr.pseudos&&V.expr.pseudos.animated&&(V.expr.pseudos.animated=(W=V.expr.pseudos.animated,function(t){return!!V(t).data(K)||W(t)})),!1!==V.uiBackCompat&&V.extend(V.effects,{save:function(t,e){for(var i=0,s=e.length;i<s;i++)null!==e[i]&&t.data(j+e[i],t[0].style[e[i]])},restore:function(t,e){for(var i,s=0,n=e.length;s<n;s++)null!==e[s]&&(i=t.data(j+e[s]),t.css(e[s],i))},setMode:function(t,e){return e="toggle"===e?t.is(":hidden")?"show":"hide":e},createWrapper:function(i){if(i.parent().is(".ui-effects-wrapper"))return i.parent();var s={width:i.outerWidth(!0),height:i.outerHeight(!0),float:i.css("float")},t=V("<div></div>").addClass("ui-effects-wrapper").css({fontSize:"100%",background:"transparent",border:"none",margin:0,padding:0}),e={width:i.width(),height:i.height()},n=document.activeElement;try{n.id}catch(t){n=document.body}return i.wrap(t),i[0]!==n&&!V.contains(i[0],n)||V(n).trigger("focus"),t=i.parent(),"static"===i.css("position")?(t.css({position:"relative"}),i.css({position:"relative"})):(V.extend(s,{position:i.css("position"),zIndex:i.css("z-index")}),V.each(["top","left","bottom","right"],function(t,e){s[e]=i.css(e),isNaN(parseInt(s[e],10))&&(s[e]="auto")}),i.css({position:"relative",top:0,left:0,right:"auto",bottom:"auto"})),i.css(e),t.css(s).show()},removeWrapper:function(t){var e=document.activeElement;return t.parent().is(".ui-effects-wrapper")&&(t.parent().replaceWith(t),t[0]!==e&&!V.contains(t[0],e)||V(e).trigger("focus")),t}}),V.extend(V.effects,{version:"1.13.1",define:function(t,e,i){return i||(i=e,e="effect"),V.effects.effect[t]=i,V.effects.effect[t].mode=e,i},scaledDimensions:function(t,e,i){if(0===e)return{height:0,width:0,outerHeight:0,outerWidth:0};var s="horizontal"!==i?(e||100)/100:1,e="vertical"!==i?(e||100)/100:1;return{height:t.height()*e,width:t.width()*s,outerHeight:t.outerHeight()*e,outerWidth:t.outerWidth()*s}},clipToBox:function(t){return{width:t.clip.right-t.clip.left,height:t.clip.bottom-t.clip.top,left:t.clip.left,top:t.clip.top}},unshift:function(t,e,i){var s=t.queue();1<e&&s.splice.apply(s,[1,0].concat(s.splice(e,i))),t.dequeue()},saveStyle:function(t){t.data(q,t[0].style.cssText)},restoreStyle:function(t){t[0].style.cssText=t.data(q)||"",t.removeData(q)},mode:function(t,e){t=t.is(":hidden");return"toggle"===e&&(e=t?"show":"hide"),e=(t?"hide"===e:"show"===e)?"none":e},getBaseline:function(t,e){var i,s;switch(t[0]){case"top":i=0;break;case"middle":i=.5;break;case"bottom":i=1;break;default:i=t[0]/e.height}switch(t[1]){case"left":s=0;break;case"center":s=.5;break;case"right":s=1;break;default:s=t[1]/e.width}return{x:s,y:i}},createPlaceholder:function(t){var e,i=t.css("position"),s=t.position();return t.css({marginTop:t.css("marginTop"),marginBottom:t.css("marginBottom"),marginLeft:t.css("marginLeft"),marginRight:t.css("marginRight")}).outerWidth(t.outerWidth()).outerHeight(t.outerHeight()),/^(static|relative)/.test(i)&&(i="absolute",e=V("<"+t[0].nodeName+">").insertAfter(t).css({display:/^(inline|ruby)/.test(t.css("display"))?"inline-block":"block",visibility:"hidden",marginTop:t.css("marginTop"),marginBottom:t.css("marginBottom"),marginLeft:t.css("marginLeft"),marginRight:t.css("marginRight"),float:t.css("float")}).outerWidth(t.outerWidth()).outerHeight(t.outerHeight()).addClass("ui-effects-placeholder"),t.data(j+"placeholder",e)),t.css({position:i,left:s.left,top:s.top}),e},removePlaceholder:function(t){var e=j+"placeholder",i=t.data(e);i&&(i.remove(),t.removeData(e))},cleanUp:function(t){V.effects.restoreStyle(t),V.effects.removePlaceholder(t)},setTransition:function(s,t,n,o){return o=o||{},V.each(t,function(t,e){var i=s.cssUnit(e);0<i[0]&&(o[e]=i[0]*n+i[1])}),o}}),V.fn.extend({effect:function(){function t(t){var e=V(this),i=V.effects.mode(e,r)||o;e.data(K,!0),l.push(i),o&&("show"===i||i===o&&"hide"===i)&&e.show(),o&&"none"===i||V.effects.saveStyle(e),"function"==typeof t&&t()}var s=X.apply(this,arguments),n=V.effects.effect[s.effect],o=n.mode,e=s.queue,i=e||"fx",a=s.complete,r=s.mode,l=[];return V.fx.off||!n?r?this[r](s.duration,a):this.each(function(){a&&a.call(this)}):!1===e?this.each(t).each(h):this.queue(i,t).queue(i,h);function h(t){var e=V(this);function i(){"function"==typeof a&&a.call(e[0]),"function"==typeof t&&t()}s.mode=l.shift(),!1===V.uiBackCompat||o?"none"===s.mode?(e[r](),i()):n.call(e[0],s,function(){e.removeData(K),V.effects.cleanUp(e),"hide"===s.mode&&e.hide(),i()}):(e.is(":hidden")?"hide"===r:"show"===r)?(e[r](),i()):n.call(e[0],s,i)}},show:(R=V.fn.show,function(t){if($(t))return R.apply(this,arguments);t=X.apply(this,arguments);return t.mode="show",this.effect.call(this,t)}),hide:(L=V.fn.hide,function(t){if($(t))return L.apply(this,arguments);t=X.apply(this,arguments);return t.mode="hide",this.effect.call(this,t)}),toggle:(F=V.fn.toggle,function(t){if($(t)||"boolean"==typeof t)return F.apply(this,arguments);t=X.apply(this,arguments);return t.mode="toggle",this.effect.call(this,t)}),cssUnit:function(t){var i=this.css(t),s=[];return V.each(["em","px","%","pt"],function(t,e){0<i.indexOf(e)&&(s=[parseFloat(i),e])}),s},cssClip:function(t){return t?this.css("clip","rect("+t.top+"px "+t.right+"px "+t.bottom+"px "+t.left+"px)"):G(this.css("clip"),this)},transfer:function(t,e){var i=V(this),s=V(t.to),n="fixed"===s.css("position"),o=V("body"),a=n?o.scrollTop():0,r=n?o.scrollLeft():0,o=s.offset(),o={top:o.top-a,left:o.left-r,height:s.innerHeight(),width:s.innerWidth()},s=i.offset(),l=V("<div class='ui-effects-transfer'></div>");l.appendTo("body").addClass(t.className).css({top:s.top-a,left:s.left-r,height:i.innerHeight(),width:i.innerWidth(),position:n?"fixed":"absolute"}).animate(o,t.duration,t.easing,function(){l.remove(),"function"==typeof e&&e()})}}),V.fx.step.clip=function(t){t.clipInit||(t.start=V(t.elem).cssClip(),"string"==typeof t.end&&(t.end=G(t.end,t.elem)),t.clipInit=!0),V(t.elem).cssClip({top:t.pos*(t.end.top-t.start.top)+t.start.top,right:t.pos*(t.end.right-t.start.right)+t.start.right,bottom:t.pos*(t.end.bottom-t.start.bottom)+t.start.bottom,left:t.pos*(t.end.left-t.start.left)+t.start.left})},Y={},V.each(["Quad","Cubic","Quart","Quint","Expo"],function(e,t){Y[t]=function(t){return Math.pow(t,e+2)}}),V.extend(Y,{Sine:function(t){return 1-Math.cos(t*Math.PI/2)},Circ:function(t){return 1-Math.sqrt(1-t*t)},Elastic:function(t){return 0===t||1===t?t:-Math.pow(2,8*(t-1))*Math.sin((80*(t-1)-7.5)*Math.PI/15)},Back:function(t){return t*t*(3*t-2)},Bounce:function(t){for(var e,i=4;t<((e=Math.pow(2,--i))-1)/11;);return 1/Math.pow(4,3-i)-7.5625*Math.pow((3*e-2)/22-t,2)}}),V.each(Y,function(t,e){V.easing["easeIn"+t]=e,V.easing["easeOut"+t]=function(t){return 1-e(1-t)},V.easing["easeInOut"+t]=function(t){return t<.5?e(2*t)/2:1-e(-2*t+2)/2}});y=V.effects,V.effects.define("blind","hide",function(t,e){var i={up:["bottom","top"],vertical:["bottom","top"],down:["top","bottom"],left:["right","left"],horizontal:["right","left"],right:["left","right"]},s=V(this),n=t.direction||"up",o=s.cssClip(),a={clip:V.extend({},o)},r=V.effects.createPlaceholder(s);a.clip[i[n][0]]=a.clip[i[n][1]],"show"===t.mode&&(s.cssClip(a.clip),r&&r.css(V.effects.clipToBox(a)),a.clip=o),r&&r.animate(V.effects.clipToBox(a),t.duration,t.easing),s.animate(a,{queue:!1,duration:t.duration,easing:t.easing,complete:e})}),V.effects.define("bounce",function(t,e){var i,s,n=V(this),o=t.mode,a="hide"===o,r="show"===o,l=t.direction||"up",h=t.distance,c=t.times||5,o=2*c+(r||a?1:0),u=t.duration/o,d=t.easing,p="up"===l||"down"===l?"top":"left",f="up"===l||"left"===l,g=0,t=n.queue().length;for(V.effects.createPlaceholder(n),l=n.css(p),h=h||n["top"==p?"outerHeight":"outerWidth"]()/3,r&&((s={opacity:1})[p]=l,n.css("opacity",0).css(p,f?2*-h:2*h).animate(s,u,d)),a&&(h/=Math.pow(2,c-1)),(s={})[p]=l;g<c;g++)(i={})[p]=(f?"-=":"+=")+h,n.animate(i,u,d).animate(s,u,d),h=a?2*h:h/2;a&&((i={opacity:0})[p]=(f?"-=":"+=")+h,n.animate(i,u,d)),n.queue(e),V.effects.unshift(n,t,1+o)}),V.effects.define("clip","hide",function(t,e){var i={},s=V(this),n=t.direction||"vertical",o="both"===n,a=o||"horizontal"===n,o=o||"vertical"===n,n=s.cssClip();i.clip={top:o?(n.bottom-n.top)/2:n.top,right:a?(n.right-n.left)/2:n.right,bottom:o?(n.bottom-n.top)/2:n.bottom,left:a?(n.right-n.left)/2:n.left},V.effects.createPlaceholder(s),"show"===t.mode&&(s.cssClip(i.clip),i.clip=n),s.animate(i,{queue:!1,duration:t.duration,easing:t.easing,complete:e})}),V.effects.define("drop","hide",function(t,e){var i=V(this),s="show"===t.mode,n=t.direction||"left",o="up"===n||"down"===n?"top":"left",a="up"===n||"left"===n?"-=":"+=",r="+="==a?"-=":"+=",l={opacity:0};V.effects.createPlaceholder(i),n=t.distance||i["top"==o?"outerHeight":"outerWidth"](!0)/2,l[o]=a+n,s&&(i.css(l),l[o]=r+n,l.opacity=1),i.animate(l,{queue:!1,duration:t.duration,easing:t.easing,complete:e})}),V.effects.define("explode","hide",function(t,e){var i,s,n,o,a,r,l=t.pieces?Math.round(Math.sqrt(t.pieces)):3,h=l,c=V(this),u="show"===t.mode,d=c.show().css("visibility","hidden").offset(),p=Math.ceil(c.outerWidth()/h),f=Math.ceil(c.outerHeight()/l),g=[];function m(){g.push(this),g.length===l*h&&(c.css({visibility:"visible"}),V(g).remove(),e())}for(i=0;i<l;i++)for(o=d.top+i*f,r=i-(l-1)/2,s=0;s<h;s++)n=d.left+s*p,a=s-(h-1)/2,c.clone().appendTo("body").wrap("<div></div>").css({position:"absolute",visibility:"visible",left:-s*p,top:-i*f}).parent().addClass("ui-effects-explode").css({position:"absolute",overflow:"hidden",width:p,height:f,left:n+(u?a*p:0),top:o+(u?r*f:0),opacity:u?0:1}).animate({left:n+(u?0:a*p),top:o+(u?0:r*f),opacity:u?1:0},t.duration||500,t.easing,m)}),V.effects.define("fade","toggle",function(t,e){var i="show"===t.mode;V(this).css("opacity",i?0:1).animate({opacity:i?1:0},{queue:!1,duration:t.duration,easing:t.easing,complete:e})}),V.effects.define("fold","hide",function(e,t){var i=V(this),s=e.mode,n="show"===s,o="hide"===s,a=e.size||15,r=/([0-9]+)%/.exec(a),l=!!e.horizFirst?["right","bottom"]:["bottom","right"],h=e.duration/2,c=V.effects.createPlaceholder(i),u=i.cssClip(),d={clip:V.extend({},u)},p={clip:V.extend({},u)},f=[u[l[0]],u[l[1]]],s=i.queue().length;r&&(a=parseInt(r[1],10)/100*f[o?0:1]),d.clip[l[0]]=a,p.clip[l[0]]=a,p.clip[l[1]]=0,n&&(i.cssClip(p.clip),c&&c.css(V.effects.clipToBox(p)),p.clip=u),i.queue(function(t){c&&c.animate(V.effects.clipToBox(d),h,e.easing).animate(V.effects.clipToBox(p),h,e.easing),t()}).animate(d,h,e.easing).animate(p,h,e.easing).queue(t),V.effects.unshift(i,s,4)}),V.effects.define("highlight","show",function(t,e){var i=V(this),s={backgroundColor:i.css("backgroundColor")};"hide"===t.mode&&(s.opacity=0),V.effects.saveStyle(i),i.css({backgroundImage:"none",backgroundColor:t.color||"#ffff99"}).animate(s,{queue:!1,duration:t.duration,easing:t.easing,complete:e})}),V.effects.define("size",function(s,e){var n,i=V(this),t=["fontSize"],o=["borderTopWidth","borderBottomWidth","paddingTop","paddingBottom"],a=["borderLeftWidth","borderRightWidth","paddingLeft","paddingRight"],r=s.mode,l="effect"!==r,h=s.scale||"both",c=s.origin||["middle","center"],u=i.css("position"),d=i.position(),p=V.effects.scaledDimensions(i),f=s.from||p,g=s.to||V.effects.scaledDimensions(i,0);V.effects.createPlaceholder(i),"show"===r&&(r=f,f=g,g=r),n={from:{y:f.height/p.height,x:f.width/p.width},to:{y:g.height/p.height,x:g.width/p.width}},"box"!==h&&"both"!==h||(n.from.y!==n.to.y&&(f=V.effects.setTransition(i,o,n.from.y,f),g=V.effects.setTransition(i,o,n.to.y,g)),n.from.x!==n.to.x&&(f=V.effects.setTransition(i,a,n.from.x,f),g=V.effects.setTransition(i,a,n.to.x,g))),"content"!==h&&"both"!==h||n.from.y!==n.to.y&&(f=V.effects.setTransition(i,t,n.from.y,f),g=V.effects.setTransition(i,t,n.to.y,g)),c&&(c=V.effects.getBaseline(c,p),f.top=(p.outerHeight-f.outerHeight)*c.y+d.top,f.left=(p.outerWidth-f.outerWidth)*c.x+d.left,g.top=(p.outerHeight-g.outerHeight)*c.y+d.top,g.left=(p.outerWidth-g.outerWidth)*c.x+d.left),delete f.outerHeight,delete f.outerWidth,i.css(f),"content"!==h&&"both"!==h||(o=o.concat(["marginTop","marginBottom"]).concat(t),a=a.concat(["marginLeft","marginRight"]),i.find("*[width]").each(function(){var t=V(this),e=V.effects.scaledDimensions(t),i={height:e.height*n.from.y,width:e.width*n.from.x,outerHeight:e.outerHeight*n.from.y,outerWidth:e.outerWidth*n.from.x},e={height:e.height*n.to.y,width:e.width*n.to.x,outerHeight:e.height*n.to.y,outerWidth:e.width*n.to.x};n.from.y!==n.to.y&&(i=V.effects.setTransition(t,o,n.from.y,i),e=V.effects.setTransition(t,o,n.to.y,e)),n.from.x!==n.to.x&&(i=V.effects.setTransition(t,a,n.from.x,i),e=V.effects.setTransition(t,a,n.to.x,e)),l&&V.effects.saveStyle(t),t.css(i),t.animate(e,s.duration,s.easing,function(){l&&V.effects.restoreStyle(t)})})),i.animate(g,{queue:!1,duration:s.duration,easing:s.easing,complete:function(){var t=i.offset();0===g.opacity&&i.css("opacity",f.opacity),l||(i.css("position","static"===u?"relative":u).offset(t),V.effects.saveStyle(i)),e()}})}),V.effects.define("scale",function(t,e){var i=V(this),s=t.mode,s=parseInt(t.percent,10)||(0===parseInt(t.percent,10)||"effect"!==s?0:100),s=V.extend(!0,{from:V.effects.scaledDimensions(i),to:V.effects.scaledDimensions(i,s,t.direction||"both"),origin:t.origin||["middle","center"]},t);t.fade&&(s.from.opacity=1,s.to.opacity=0),V.effects.effect.size.call(this,s,e)}),V.effects.define("puff","hide",function(t,e){t=V.extend(!0,{},t,{fade:!0,percent:parseInt(t.percent,10)||150});V.effects.effect.scale.call(this,t,e)}),V.effects.define("pulsate","show",function(t,e){var i=V(this),s=t.mode,n="show"===s,o=2*(t.times||5)+(n||"hide"===s?1:0),a=t.duration/o,r=0,l=1,s=i.queue().length;for(!n&&i.is(":visible")||(i.css("opacity",0).show(),r=1);l<o;l++)i.animate({opacity:r},a,t.easing),r=1-r;i.animate({opacity:r},a,t.easing),i.queue(e),V.effects.unshift(i,s,1+o)}),V.effects.define("shake",function(t,e){var i=1,s=V(this),n=t.direction||"left",o=t.distance||20,a=t.times||3,r=2*a+1,l=Math.round(t.duration/r),h="up"===n||"down"===n?"top":"left",c="up"===n||"left"===n,u={},d={},p={},n=s.queue().length;for(V.effects.createPlaceholder(s),u[h]=(c?"-=":"+=")+o,d[h]=(c?"+=":"-=")+2*o,p[h]=(c?"-=":"+=")+2*o,s.animate(u,l,t.easing);i<a;i++)s.animate(d,l,t.easing).animate(p,l,t.easing);s.animate(d,l,t.easing).animate(u,l/2,t.easing).queue(e),V.effects.unshift(s,n,1+r)}),V.effects.define("slide","show",function(t,e){var i,s,n=V(this),o={up:["bottom","top"],down:["top","bottom"],left:["right","left"],right:["left","right"]},a=t.mode,r=t.direction||"left",l="up"===r||"down"===r?"top":"left",h="up"===r||"left"===r,c=t.distance||n["top"==l?"outerHeight":"outerWidth"](!0),u={};V.effects.createPlaceholder(n),i=n.cssClip(),s=n.position()[l],u[l]=(h?-1:1)*c+s,u.clip=n.cssClip(),u.clip[o[r][1]]=u.clip[o[r][0]],"show"===a&&(n.cssClip(u.clip),n.css(l,u[l]),u.clip=i,u[l]=s),n.animate(u,{queue:!1,duration:t.duration,easing:t.easing,complete:e})}),y=!1!==V.uiBackCompat?V.effects.define("transfer",function(t,e){V(this).transfer(t,e)}):y;V.ui.focusable=function(t,e){var i,s,n,o,a=t.nodeName.toLowerCase();return"area"===a?(s=(i=t.parentNode).name,!(!t.href||!s||"map"!==i.nodeName.toLowerCase())&&(0<(s=V("img[usemap='#"+s+"']")).length&&s.is(":visible"))):(/^(input|select|textarea|button|object)$/.test(a)?(n=!t.disabled)&&(o=V(t).closest("fieldset")[0])&&(n=!o.disabled):n="a"===a&&t.href||e,n&&V(t).is(":visible")&&function(t){var e=t.css("visibility");for(;"inherit"===e;)t=t.parent(),e=t.css("visibility");return"visible"===e}(V(t)))},V.extend(V.expr.pseudos,{focusable:function(t){return V.ui.focusable(t,null!=V.attr(t,"tabindex"))}});var Q,J;V.ui.focusable,V.fn._form=function(){return"string"==typeof this[0].form?this.closest("form"):V(this[0].form)},V.ui.formResetMixin={_formResetHandler:function(){var e=V(this);setTimeout(function(){var t=e.data("ui-form-reset-instances");V.each(t,function(){this.refresh()})})},_bindFormResetHandler:function(){var t;this.form=this.element._form(),this.form.length&&((t=this.form.data("ui-form-reset-instances")||[]).length||this.form.on("reset.ui-form-reset",this._formResetHandler),t.push(this),this.form.data("ui-form-reset-instances",t))},_unbindFormResetHandler:function(){var t;this.form.length&&((t=this.form.data("ui-form-reset-instances")).splice(V.inArray(this,t),1),t.length?this.form.data("ui-form-reset-instances",t):this.form.removeData("ui-form-reset-instances").off("reset.ui-form-reset"))}};V.expr.pseudos||(V.expr.pseudos=V.expr[":"]),V.uniqueSort||(V.uniqueSort=V.unique),V.escapeSelector||(Q=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\x80-\uFFFF\w-]/g,J=function(t,e){return e?"\0"===t?"�":t.slice(0,-1)+"\\"+t.charCodeAt(t.length-1).toString(16)+" ":"\\"+t},V.escapeSelector=function(t){return(t+"").replace(Q,J)}),V.fn.even&&V.fn.odd||V.fn.extend({even:function(){return this.filter(function(t){return t%2==0})},odd:function(){return this.filter(function(t){return t%2==1})}});var Z;V.ui.keyCode={BACKSPACE:8,COMMA:188,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,LEFT:37,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SPACE:32,TAB:9,UP:38},V.fn.labels=function(){var t,e,i;return this.length?this[0].labels&&this[0].labels.length?this.pushStack(this[0].labels):(e=this.eq(0).parents("label"),(t=this.attr("id"))&&(i=(i=this.eq(0).parents().last()).add((i.length?i:this).siblings()),t="label[for='"+V.escapeSelector(t)+"']",e=e.add(i.find(t).addBack(t))),this.pushStack(e)):this.pushStack([])},V.fn.scrollParent=function(t){var e=this.css("position"),i="absolute"===e,s=t?/(auto|scroll|hidden)/:/(auto|scroll)/,t=this.parents().filter(function(){var t=V(this);return(!i||"static"!==t.css("position"))&&s.test(t.css("overflow")+t.css("overflow-y")+t.css("overflow-x"))}).eq(0);return"fixed"!==e&&t.length?t:V(this[0].ownerDocument||document)},V.extend(V.expr.pseudos,{tabbable:function(t){var e=V.attr(t,"tabindex"),i=null!=e;return(!i||0<=e)&&V.ui.focusable(t,i)}}),V.fn.extend({uniqueId:(Z=0,function(){return this.each(function(){this.id||(this.id="ui-id-"+ ++Z)})}),removeUniqueId:function(){return this.each(function(){/^ui-id-\d+$/.test(this.id)&&V(this).removeAttr("id")})}}),V.widget("ui.accordion",{version:"1.13.1",options:{active:0,animate:{},classes:{"ui-accordion-header":"ui-corner-top","ui-accordion-header-collapsed":"ui-corner-all","ui-accordion-content":"ui-corner-bottom"},collapsible:!1,event:"click",header:function(t){return t.find("> li > :first-child").add(t.find("> :not(li)").even())},heightStyle:"auto",icons:{activeHeader:"ui-icon-triangle-1-s",header:"ui-icon-triangle-1-e"},activate:null,beforeActivate:null},hideProps:{borderTopWidth:"hide",borderBottomWidth:"hide",paddingTop:"hide",paddingBottom:"hide",height:"hide"},showProps:{borderTopWidth:"show",borderBottomWidth:"show",paddingTop:"show",paddingBottom:"show",height:"show"},_create:function(){var t=this.options;this.prevShow=this.prevHide=V(),this._addClass("ui-accordion","ui-widget ui-helper-reset"),this.element.attr("role","tablist"),t.collapsible||!1!==t.active&&null!=t.active||(t.active=0),this._processPanels(),t.active<0&&(t.active+=this.headers.length),this._refresh()},_getCreateEventData:function(){return{header:this.active,panel:this.active.length?this.active.next():V()}},_createIcons:function(){var t,e=this.options.icons;e&&(t=V("<span>"),this._addClass(t,"ui-accordion-header-icon","ui-icon "+e.header),t.prependTo(this.headers),t=this.active.children(".ui-accordion-header-icon"),this._removeClass(t,e.header)._addClass(t,null,e.activeHeader)._addClass(this.headers,"ui-accordion-icons"))},_destroyIcons:function(){this._removeClass(this.headers,"ui-accordion-icons"),this.headers.children(".ui-accordion-header-icon").remove()},_destroy:function(){var t;this.element.removeAttr("role"),this.headers.removeAttr("role aria-expanded aria-selected aria-controls tabIndex").removeUniqueId(),this._destroyIcons(),t=this.headers.next().css("display","").removeAttr("role aria-hidden aria-labelledby").removeUniqueId(),"content"!==this.options.heightStyle&&t.css("height","")},_setOption:function(t,e){"active"!==t?("event"===t&&(this.options.event&&this._off(this.headers,this.options.event),this._setupEvents(e)),this._super(t,e),"collapsible"!==t||e||!1!==this.options.active||this._activate(0),"icons"===t&&(this._destroyIcons(),e&&this._createIcons())):this._activate(e)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",t),this._toggleClass(null,"ui-state-disabled",!!t),this._toggleClass(this.headers.add(this.headers.next()),null,"ui-state-disabled",!!t)},_keydown:function(t){if(!t.altKey&&!t.ctrlKey){var e=V.ui.keyCode,i=this.headers.length,s=this.headers.index(t.target),n=!1;switch(t.keyCode){case e.RIGHT:case e.DOWN:n=this.headers[(s+1)%i];break;case e.LEFT:case e.UP:n=this.headers[(s-1+i)%i];break;case e.SPACE:case e.ENTER:this._eventHandler(t);break;case e.HOME:n=this.headers[0];break;case e.END:n=this.headers[i-1]}n&&(V(t.target).attr("tabIndex",-1),V(n).attr("tabIndex",0),V(n).trigger("focus"),t.preventDefault())}},_panelKeyDown:function(t){t.keyCode===V.ui.keyCode.UP&&t.ctrlKey&&V(t.currentTarget).prev().trigger("focus")},refresh:function(){var t=this.options;this._processPanels(),!1===t.active&&!0===t.collapsible||!this.headers.length?(t.active=!1,this.active=V()):!1===t.active?this._activate(0):this.active.length&&!V.contains(this.element[0],this.active[0])?this.headers.length===this.headers.find(".ui-state-disabled").length?(t.active=!1,this.active=V()):this._activate(Math.max(0,t.active-1)):t.active=this.headers.index(this.active),this._destroyIcons(),this._refresh()},_processPanels:function(){var t=this.headers,e=this.panels;"function"==typeof this.options.header?this.headers=this.options.header(this.element):this.headers=this.element.find(this.options.header),this._addClass(this.headers,"ui-accordion-header ui-accordion-header-collapsed","ui-state-default"),this.panels=this.headers.next().filter(":not(.ui-accordion-content-active)").hide(),this._addClass(this.panels,"ui-accordion-content","ui-helper-reset ui-widget-content"),e&&(this._off(t.not(this.headers)),this._off(e.not(this.panels)))},_refresh:function(){var i,t=this.options,e=t.heightStyle,s=this.element.parent();this.active=this._findActive(t.active),this._addClass(this.active,"ui-accordion-header-active","ui-state-active")._removeClass(this.active,"ui-accordion-header-collapsed"),this._addClass(this.active.next(),"ui-accordion-content-active"),this.active.next().show(),this.headers.attr("role","tab").each(function(){var t=V(this),e=t.uniqueId().attr("id"),i=t.next(),s=i.uniqueId().attr("id");t.attr("aria-controls",s),i.attr("aria-labelledby",e)}).next().attr("role","tabpanel"),this.headers.not(this.active).attr({"aria-selected":"false","aria-expanded":"false",tabIndex:-1}).next().attr({"aria-hidden":"true"}).hide(),this.active.length?this.active.attr({"aria-selected":"true","aria-expanded":"true",tabIndex:0}).next().attr({"aria-hidden":"false"}):this.headers.eq(0).attr("tabIndex",0),this._createIcons(),this._setupEvents(t.event),"fill"===e?(i=s.height(),this.element.siblings(":visible").each(function(){var t=V(this),e=t.css("position");"absolute"!==e&&"fixed"!==e&&(i-=t.outerHeight(!0))}),this.headers.each(function(){i-=V(this).outerHeight(!0)}),this.headers.next().each(function(){V(this).height(Math.max(0,i-V(this).innerHeight()+V(this).height()))}).css("overflow","auto")):"auto"===e&&(i=0,this.headers.next().each(function(){var t=V(this).is(":visible");t||V(this).show(),i=Math.max(i,V(this).css("height","").height()),t||V(this).hide()}).height(i))},_activate:function(t){t=this._findActive(t)[0];t!==this.active[0]&&(t=t||this.active[0],this._eventHandler({target:t,currentTarget:t,preventDefault:V.noop}))},_findActive:function(t){return"number"==typeof t?this.headers.eq(t):V()},_setupEvents:function(t){var i={keydown:"_keydown"};t&&V.each(t.split(" "),function(t,e){i[e]="_eventHandler"}),this._off(this.headers.add(this.headers.next())),this._on(this.headers,i),this._on(this.headers.next(),{keydown:"_panelKeyDown"}),this._hoverable(this.headers),this._focusable(this.headers)},_eventHandler:function(t){var e=this.options,i=this.active,s=V(t.currentTarget),n=s[0]===i[0],o=n&&e.collapsible,a=o?V():s.next(),r=i.next(),a={oldHeader:i,oldPanel:r,newHeader:o?V():s,newPanel:a};t.preventDefault(),n&&!e.collapsible||!1===this._trigger("beforeActivate",t,a)||(e.active=!o&&this.headers.index(s),this.active=n?V():s,this._toggle(a),this._removeClass(i,"ui-accordion-header-active","ui-state-active"),e.icons&&(i=i.children(".ui-accordion-header-icon"),this._removeClass(i,null,e.icons.activeHeader)._addClass(i,null,e.icons.header)),n||(this._removeClass(s,"ui-accordion-header-collapsed")._addClass(s,"ui-accordion-header-active","ui-state-active"),e.icons&&(n=s.children(".ui-accordion-header-icon"),this._removeClass(n,null,e.icons.header)._addClass(n,null,e.icons.activeHeader)),this._addClass(s.next(),"ui-accordion-content-active")))},_toggle:function(t){var e=t.newPanel,i=this.prevShow.length?this.prevShow:t.oldPanel;this.prevShow.add(this.prevHide).stop(!0,!0),this.prevShow=e,this.prevHide=i,this.options.animate?this._animate(e,i,t):(i.hide(),e.show(),this._toggleComplete(t)),i.attr({"aria-hidden":"true"}),i.prev().attr({"aria-selected":"false","aria-expanded":"false"}),e.length&&i.length?i.prev().attr({tabIndex:-1,"aria-expanded":"false"}):e.length&&this.headers.filter(function(){return 0===parseInt(V(this).attr("tabIndex"),10)}).attr("tabIndex",-1),e.attr("aria-hidden","false").prev().attr({"aria-selected":"true","aria-expanded":"true",tabIndex:0})},_animate:function(t,i,e){var s,n,o,a=this,r=0,l=t.css("box-sizing"),h=t.length&&(!i.length||t.index()<i.index()),c=this.options.animate||{},u=h&&c.down||c,h=function(){a._toggleComplete(e)};return n=(n="string"==typeof u?u:n)||u.easing||c.easing,o=(o="number"==typeof u?u:o)||u.duration||c.duration,i.length?t.length?(s=t.show().outerHeight(),i.animate(this.hideProps,{duration:o,easing:n,step:function(t,e){e.now=Math.round(t)}}),void t.hide().animate(this.showProps,{duration:o,easing:n,complete:h,step:function(t,e){e.now=Math.round(t),"height"!==e.prop?"content-box"===l&&(r+=e.now):"content"!==a.options.heightStyle&&(e.now=Math.round(s-i.outerHeight()-r),r=0)}})):i.animate(this.hideProps,o,n,h):t.animate(this.showProps,o,n,h)},_toggleComplete:function(t){var e=t.oldPanel,i=e.prev();this._removeClass(e,"ui-accordion-content-active"),this._removeClass(i,"ui-accordion-header-active")._addClass(i,"ui-accordion-header-collapsed"),e.length&&(e.parent()[0].className=e.parent()[0].className),this._trigger("activate",null,t)}}),V.ui.safeActiveElement=function(e){var i;try{i=e.activeElement}catch(t){i=e.body}return i=!(i=i||e.body).nodeName?e.body:i},V.widget("ui.menu",{version:"1.13.1",defaultElement:"<ul>",delay:300,options:{icons:{submenu:"ui-icon-caret-1-e"},items:"> *",menus:"ul",position:{my:"left top",at:"right top"},role:"menu",blur:null,focus:null,select:null},_create:function(){this.activeMenu=this.element,this.mouseHandled=!1,this.lastMousePosition={x:null,y:null},this.element.uniqueId().attr({role:this.options.role,tabIndex:0}),this._addClass("ui-menu","ui-widget ui-widget-content"),this._on({"mousedown .ui-menu-item":function(t){t.preventDefault(),this._activateItem(t)},"click .ui-menu-item":function(t){var e=V(t.target),i=V(V.ui.safeActiveElement(this.document[0]));!this.mouseHandled&&e.not(".ui-state-disabled").length&&(this.select(t),t.isPropagationStopped()||(this.mouseHandled=!0),e.has(".ui-menu").length?this.expand(t):!this.element.is(":focus")&&i.closest(".ui-menu").length&&(this.element.trigger("focus",[!0]),this.active&&1===this.active.parents(".ui-menu").length&&clearTimeout(this.timer)))},"mouseenter .ui-menu-item":"_activateItem","mousemove .ui-menu-item":"_activateItem",mouseleave:"collapseAll","mouseleave .ui-menu":"collapseAll",focus:function(t,e){var i=this.active||this._menuItems().first();e||this.focus(t,i)},blur:function(t){this._delay(function(){V.contains(this.element[0],V.ui.safeActiveElement(this.document[0]))||this.collapseAll(t)})},keydown:"_keydown"}),this.refresh(),this._on(this.document,{click:function(t){this._closeOnDocumentClick(t)&&this.collapseAll(t,!0),this.mouseHandled=!1}})},_activateItem:function(t){var e,i;this.previousFilter||t.clientX===this.lastMousePosition.x&&t.clientY===this.lastMousePosition.y||(this.lastMousePosition={x:t.clientX,y:t.clientY},e=V(t.target).closest(".ui-menu-item"),i=V(t.currentTarget),e[0]===i[0]&&(i.is(".ui-state-active")||(this._removeClass(i.siblings().children(".ui-state-active"),null,"ui-state-active"),this.focus(t,i))))},_destroy:function(){var t=this.element.find(".ui-menu-item").removeAttr("role aria-disabled").children(".ui-menu-item-wrapper").removeUniqueId().removeAttr("tabIndex role aria-haspopup");this.element.removeAttr("aria-activedescendant").find(".ui-menu").addBack().removeAttr("role aria-labelledby aria-expanded aria-hidden aria-disabled tabIndex").removeUniqueId().show(),t.children().each(function(){var t=V(this);t.data("ui-menu-submenu-caret")&&t.remove()})},_keydown:function(t){var e,i,s,n=!0;switch(t.keyCode){case V.ui.keyCode.PAGE_UP:this.previousPage(t);break;case V.ui.keyCode.PAGE_DOWN:this.nextPage(t);break;case V.ui.keyCode.HOME:this._move("first","first",t);break;case V.ui.keyCode.END:this._move("last","last",t);break;case V.ui.keyCode.UP:this.previous(t);break;case V.ui.keyCode.DOWN:this.next(t);break;case V.ui.keyCode.LEFT:this.collapse(t);break;case V.ui.keyCode.RIGHT:this.active&&!this.active.is(".ui-state-disabled")&&this.expand(t);break;case V.ui.keyCode.ENTER:case V.ui.keyCode.SPACE:this._activate(t);break;case V.ui.keyCode.ESCAPE:this.collapse(t);break;default:e=this.previousFilter||"",s=n=!1,i=96<=t.keyCode&&t.keyCode<=105?(t.keyCode-96).toString():String.fromCharCode(t.keyCode),clearTimeout(this.filterTimer),i===e?s=!0:i=e+i,e=this._filterMenuItems(i),(e=s&&-1!==e.index(this.active.next())?this.active.nextAll(".ui-menu-item"):e).length||(i=String.fromCharCode(t.keyCode),e=this._filterMenuItems(i)),e.length?(this.focus(t,e),this.previousFilter=i,this.filterTimer=this._delay(function(){delete this.previousFilter},1e3)):delete this.previousFilter}n&&t.preventDefault()},_activate:function(t){this.active&&!this.active.is(".ui-state-disabled")&&(this.active.children("[aria-haspopup='true']").length?this.expand(t):this.select(t))},refresh:function(){var t,e,s=this,n=this.options.icons.submenu,i=this.element.find(this.options.menus);this._toggleClass("ui-menu-icons",null,!!this.element.find(".ui-icon").length),e=i.filter(":not(.ui-menu)").hide().attr({role:this.options.role,"aria-hidden":"true","aria-expanded":"false"}).each(function(){var t=V(this),e=t.prev(),i=V("<span>").data("ui-menu-submenu-caret",!0);s._addClass(i,"ui-menu-icon","ui-icon "+n),e.attr("aria-haspopup","true").prepend(i),t.attr("aria-labelledby",e.attr("id"))}),this._addClass(e,"ui-menu","ui-widget ui-widget-content ui-front"),(t=i.add(this.element).find(this.options.items)).not(".ui-menu-item").each(function(){var t=V(this);s._isDivider(t)&&s._addClass(t,"ui-menu-divider","ui-widget-content")}),i=(e=t.not(".ui-menu-item, .ui-menu-divider")).children().not(".ui-menu").uniqueId().attr({tabIndex:-1,role:this._itemRole()}),this._addClass(e,"ui-menu-item")._addClass(i,"ui-menu-item-wrapper"),t.filter(".ui-state-disabled").attr("aria-disabled","true"),this.active&&!V.contains(this.element[0],this.active[0])&&this.blur()},_itemRole:function(){return{menu:"menuitem",listbox:"option"}[this.options.role]},_setOption:function(t,e){var i;"icons"===t&&(i=this.element.find(".ui-menu-icon"),this._removeClass(i,null,this.options.icons.submenu)._addClass(i,null,e.submenu)),this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",String(t)),this._toggleClass(null,"ui-state-disabled",!!t)},focus:function(t,e){var i;this.blur(t,t&&"focus"===t.type),this._scrollIntoView(e),this.active=e.first(),i=this.active.children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),this.options.role&&this.element.attr("aria-activedescendant",i.attr("id")),i=this.active.parent().closest(".ui-menu-item").children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),t&&"keydown"===t.type?this._close():this.timer=this._delay(function(){this._close()},this.delay),(i=e.children(".ui-menu")).length&&t&&/^mouse/.test(t.type)&&this._startOpening(i),this.activeMenu=e.parent(),this._trigger("focus",t,{item:e})},_scrollIntoView:function(t){var e,i,s;this._hasScroll()&&(i=parseFloat(V.css(this.activeMenu[0],"borderTopWidth"))||0,s=parseFloat(V.css(this.activeMenu[0],"paddingTop"))||0,e=t.offset().top-this.activeMenu.offset().top-i-s,i=this.activeMenu.scrollTop(),s=this.activeMenu.height(),t=t.outerHeight(),e<0?this.activeMenu.scrollTop(i+e):s<e+t&&this.activeMenu.scrollTop(i+e-s+t))},blur:function(t,e){e||clearTimeout(this.timer),this.active&&(this._removeClass(this.active.children(".ui-menu-item-wrapper"),null,"ui-state-active"),this._trigger("blur",t,{item:this.active}),this.active=null)},_startOpening:function(t){clearTimeout(this.timer),"true"===t.attr("aria-hidden")&&(this.timer=this._delay(function(){this._close(),this._open(t)},this.delay))},_open:function(t){var e=V.extend({of:this.active},this.options.position);clearTimeout(this.timer),this.element.find(".ui-menu").not(t.parents(".ui-menu")).hide().attr("aria-hidden","true"),t.show().removeAttr("aria-hidden").attr("aria-expanded","true").position(e)},collapseAll:function(e,i){clearTimeout(this.timer),this.timer=this._delay(function(){var t=i?this.element:V(e&&e.target).closest(this.element.find(".ui-menu"));t.length||(t=this.element),this._close(t),this.blur(e),this._removeClass(t.find(".ui-state-active"),null,"ui-state-active"),this.activeMenu=t},i?0:this.delay)},_close:function(t){(t=t||(this.active?this.active.parent():this.element)).find(".ui-menu").hide().attr("aria-hidden","true").attr("aria-expanded","false")},_closeOnDocumentClick:function(t){return!V(t.target).closest(".ui-menu").length},_isDivider:function(t){return!/[^\-\u2014\u2013\s]/.test(t.text())},collapse:function(t){var e=this.active&&this.active.parent().closest(".ui-menu-item",this.element);e&&e.length&&(this._close(),this.focus(t,e))},expand:function(t){var e=this.active&&this._menuItems(this.active.children(".ui-menu")).first();e&&e.length&&(this._open(e.parent()),this._delay(function(){this.focus(t,e)}))},next:function(t){this._move("next","first",t)},previous:function(t){this._move("prev","last",t)},isFirstItem:function(){return this.active&&!this.active.prevAll(".ui-menu-item").length},isLastItem:function(){return this.active&&!this.active.nextAll(".ui-menu-item").length},_menuItems:function(t){return(t||this.element).find(this.options.items).filter(".ui-menu-item")},_move:function(t,e,i){var s;(s=this.active?"first"===t||"last"===t?this.active["first"===t?"prevAll":"nextAll"](".ui-menu-item").last():this.active[t+"All"](".ui-menu-item").first():s)&&s.length&&this.active||(s=this._menuItems(this.activeMenu)[e]()),this.focus(i,s)},nextPage:function(t){var e,i,s;this.active?this.isLastItem()||(this._hasScroll()?(i=this.active.offset().top,s=this.element.innerHeight(),0===V.fn.jquery.indexOf("3.2.")&&(s+=this.element[0].offsetHeight-this.element.outerHeight()),this.active.nextAll(".ui-menu-item").each(function(){return(e=V(this)).offset().top-i-s<0}),this.focus(t,e)):this.focus(t,this._menuItems(this.activeMenu)[this.active?"last":"first"]())):this.next(t)},previousPage:function(t){var e,i,s;this.active?this.isFirstItem()||(this._hasScroll()?(i=this.active.offset().top,s=this.element.innerHeight(),0===V.fn.jquery.indexOf("3.2.")&&(s+=this.element[0].offsetHeight-this.element.outerHeight()),this.active.prevAll(".ui-menu-item").each(function(){return 0<(e=V(this)).offset().top-i+s}),this.focus(t,e)):this.focus(t,this._menuItems(this.activeMenu).first())):this.next(t)},_hasScroll:function(){return this.element.outerHeight()<this.element.prop("scrollHeight")},select:function(t){this.active=this.active||V(t.target).closest(".ui-menu-item");var e={item:this.active};this.active.has(".ui-menu").length||this.collapseAll(t,!0),this._trigger("select",t,e)},_filterMenuItems:function(t){var t=t.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&"),e=new RegExp("^"+t,"i");return this.activeMenu.find(this.options.items).filter(".ui-menu-item").filter(function(){return e.test(String.prototype.trim.call(V(this).children(".ui-menu-item-wrapper").text()))})}});V.widget("ui.autocomplete",{version:"1.13.1",defaultElement:"<input>",options:{appendTo:null,autoFocus:!1,delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null,change:null,close:null,focus:null,open:null,response:null,search:null,select:null},requestIndex:0,pending:0,liveRegionTimer:null,_create:function(){var i,s,n,t=this.element[0].nodeName.toLowerCase(),e="textarea"===t,t="input"===t;this.isMultiLine=e||!t&&this._isContentEditable(this.element),this.valueMethod=this.element[e||t?"val":"text"],this.isNewMenu=!0,this._addClass("ui-autocomplete-input"),this.element.attr("autocomplete","off"),this._on(this.element,{keydown:function(t){if(this.element.prop("readOnly"))s=n=i=!0;else{s=n=i=!1;var e=V.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:i=!0,this._move("previousPage",t);break;case e.PAGE_DOWN:i=!0,this._move("nextPage",t);break;case e.UP:i=!0,this._keyEvent("previous",t);break;case e.DOWN:i=!0,this._keyEvent("next",t);break;case e.ENTER:this.menu.active&&(i=!0,t.preventDefault(),this.menu.select(t));break;case e.TAB:this.menu.active&&this.menu.select(t);break;case e.ESCAPE:this.menu.element.is(":visible")&&(this.isMultiLine||this._value(this.term),this.close(t),t.preventDefault());break;default:s=!0,this._searchTimeout(t)}}},keypress:function(t){if(i)return i=!1,void(this.isMultiLine&&!this.menu.element.is(":visible")||t.preventDefault());if(!s){var e=V.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:this._move("previousPage",t);break;case e.PAGE_DOWN:this._move("nextPage",t);break;case e.UP:this._keyEvent("previous",t);break;case e.DOWN:this._keyEvent("next",t)}}},input:function(t){if(n)return n=!1,void t.preventDefault();this._searchTimeout(t)},focus:function(){this.selectedItem=null,this.previous=this._value()},blur:function(t){clearTimeout(this.searching),this.close(t),this._change(t)}}),this._initSource(),this.menu=V("<ul>").appendTo(this._appendTo()).menu({role:null}).hide().attr({unselectable:"on"}).menu("instance"),this._addClass(this.menu.element,"ui-autocomplete","ui-front"),this._on(this.menu.element,{mousedown:function(t){t.preventDefault()},menufocus:function(t,e){var i,s;if(this.isNewMenu&&(this.isNewMenu=!1,t.originalEvent&&/^mouse/.test(t.originalEvent.type)))return this.menu.blur(),void this.document.one("mousemove",function(){V(t.target).trigger(t.originalEvent)});s=e.item.data("ui-autocomplete-item"),!1!==this._trigger("focus",t,{item:s})&&t.originalEvent&&/^key/.test(t.originalEvent.type)&&this._value(s.value),(i=e.item.attr("aria-label")||s.value)&&String.prototype.trim.call(i).length&&(clearTimeout(this.liveRegionTimer),this.liveRegionTimer=this._delay(function(){this.liveRegion.html(V("<div>").text(i))},100))},menuselect:function(t,e){var i=e.item.data("ui-autocomplete-item"),s=this.previous;this.element[0]!==V.ui.safeActiveElement(this.document[0])&&(this.element.trigger("focus"),this.previous=s,this._delay(function(){this.previous=s,this.selectedItem=i})),!1!==this._trigger("select",t,{item:i})&&this._value(i.value),this.term=this._value(),this.close(t),this.selectedItem=i}}),this.liveRegion=V("<div>",{role:"status","aria-live":"assertive","aria-relevant":"additions"}).appendTo(this.document[0].body),this._addClass(this.liveRegion,null,"ui-helper-hidden-accessible"),this._on(this.window,{beforeunload:function(){this.element.removeAttr("autocomplete")}})},_destroy:function(){clearTimeout(this.searching),this.element.removeAttr("autocomplete"),this.menu.element.remove(),this.liveRegion.remove()},_setOption:function(t,e){this._super(t,e),"source"===t&&this._initSource(),"appendTo"===t&&this.menu.element.appendTo(this._appendTo()),"disabled"===t&&e&&this.xhr&&this.xhr.abort()},_isEventTargetInWidget:function(t){var e=this.menu.element[0];return t.target===this.element[0]||t.target===e||V.contains(e,t.target)},_closeOnClickOutside:function(t){this._isEventTargetInWidget(t)||this.close()},_appendTo:function(){var t=this.options.appendTo;return t=!(t=!(t=t&&(t.jquery||t.nodeType?V(t):this.document.find(t).eq(0)))||!t[0]?this.element.closest(".ui-front, dialog"):t).length?this.document[0].body:t},_initSource:function(){var i,s,n=this;Array.isArray(this.options.source)?(i=this.options.source,this.source=function(t,e){e(V.ui.autocomplete.filter(i,t.term))}):"string"==typeof this.options.source?(s=this.options.source,this.source=function(t,e){n.xhr&&n.xhr.abort(),n.xhr=V.ajax({url:s,data:t,dataType:"json",success:function(t){e(t)},error:function(){e([])}})}):this.source=this.options.source},_searchTimeout:function(s){clearTimeout(this.searching),this.searching=this._delay(function(){var t=this.term===this._value(),e=this.menu.element.is(":visible"),i=s.altKey||s.ctrlKey||s.metaKey||s.shiftKey;t&&(e||i)||(this.selectedItem=null,this.search(null,s))},this.options.delay)},search:function(t,e){return t=null!=t?t:this._value(),this.term=this._value(),t.length<this.options.minLength?this.close(e):!1!==this._trigger("search",e)?this._search(t):void 0},_search:function(t){this.pending++,this._addClass("ui-autocomplete-loading"),this.cancelSearch=!1,this.source({term:t},this._response())},_response:function(){var e=++this.requestIndex;return function(t){e===this.requestIndex&&this.__response(t),this.pending--,this.pending||this._removeClass("ui-autocomplete-loading")}.bind(this)},__response:function(t){t=t&&this._normalize(t),this._trigger("response",null,{content:t}),!this.options.disabled&&t&&t.length&&!this.cancelSearch?(this._suggest(t),this._trigger("open")):this._close()},close:function(t){this.cancelSearch=!0,this._close(t)},_close:function(t){this._off(this.document,"mousedown"),this.menu.element.is(":visible")&&(this.menu.element.hide(),this.menu.blur(),this.isNewMenu=!0,this._trigger("close",t))},_change:function(t){this.previous!==this._value()&&this._trigger("change",t,{item:this.selectedItem})},_normalize:function(t){return t.length&&t[0].label&&t[0].value?t:V.map(t,function(t){return"string"==typeof t?{label:t,value:t}:V.extend({},t,{label:t.label||t.value,value:t.value||t.label})})},_suggest:function(t){var e=this.menu.element.empty();this._renderMenu(e,t),this.isNewMenu=!0,this.menu.refresh(),e.show(),this._resizeMenu(),e.position(V.extend({of:this.element},this.options.position)),this.options.autoFocus&&this.menu.next(),this._on(this.document,{mousedown:"_closeOnClickOutside"})},_resizeMenu:function(){var t=this.menu.element;t.outerWidth(Math.max(t.width("").outerWidth()+1,this.element.outerWidth()))},_renderMenu:function(i,t){var s=this;V.each(t,function(t,e){s._renderItemData(i,e)})},_renderItemData:function(t,e){return this._renderItem(t,e).data("ui-autocomplete-item",e)},_renderItem:function(t,e){return V("<li>").append(V("<div>").text(e.label)).appendTo(t)},_move:function(t,e){if(this.menu.element.is(":visible"))return this.menu.isFirstItem()&&/^previous/.test(t)||this.menu.isLastItem()&&/^next/.test(t)?(this.isMultiLine||this._value(this.term),void this.menu.blur()):void this.menu[t](e);this.search(null,e)},widget:function(){return this.menu.element},_value:function(){return this.valueMethod.apply(this.element,arguments)},_keyEvent:function(t,e){this.isMultiLine&&!this.menu.element.is(":visible")||(this._move(t,e),e.preventDefault())},_isContentEditable:function(t){if(!t.length)return!1;var e=t.prop("contentEditable");return"inherit"===e?this._isContentEditable(t.parent()):"true"===e}}),V.extend(V.ui.autocomplete,{escapeRegex:function(t){return t.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&")},filter:function(t,e){var i=new RegExp(V.ui.autocomplete.escapeRegex(e),"i");return V.grep(t,function(t){return i.test(t.label||t.value||t)})}}),V.widget("ui.autocomplete",V.ui.autocomplete,{options:{messages:{noResults:"No search results.",results:function(t){return t+(1<t?" results are":" result is")+" available, use up and down arrow keys to navigate."}}},__response:function(t){var e;this._superApply(arguments),this.options.disabled||this.cancelSearch||(e=t&&t.length?this.options.messages.results(t.length):this.options.messages.noResults,clearTimeout(this.liveRegionTimer),this.liveRegionTimer=this._delay(function(){this.liveRegion.html(V("<div>").text(e))},100))}});V.ui.autocomplete;var tt=/ui-corner-([a-z]){2,6}/g;V.widget("ui.controlgroup",{version:"1.13.1",defaultElement:"<div>",options:{direction:"horizontal",disabled:null,onlyVisible:!0,items:{button:"input[type=button], input[type=submit], input[type=reset], button, a",controlgroupLabel:".ui-controlgroup-label",checkboxradio:"input[type='checkbox'], input[type='radio']",selectmenu:"select",spinner:".ui-spinner-input"}},_create:function(){this._enhance()},_enhance:function(){this.element.attr("role","toolbar"),this.refresh()},_destroy:function(){this._callChildMethod("destroy"),this.childWidgets.removeData("ui-controlgroup-data"),this.element.removeAttr("role"),this.options.items.controlgroupLabel&&this.element.find(this.options.items.controlgroupLabel).find(".ui-controlgroup-label-contents").contents().unwrap()},_initWidgets:function(){var o=this,a=[];V.each(this.options.items,function(s,t){var e,n={};if(t)return"controlgroupLabel"===s?((e=o.element.find(t)).each(function(){var t=V(this);t.children(".ui-controlgroup-label-contents").length||t.contents().wrapAll("<span class='ui-controlgroup-label-contents'></span>")}),o._addClass(e,null,"ui-widget ui-widget-content ui-state-default"),void(a=a.concat(e.get()))):void(V.fn[s]&&(n=o["_"+s+"Options"]?o["_"+s+"Options"]("middle"):{classes:{}},o.element.find(t).each(function(){var t=V(this),e=t[s]("instance"),i=V.widget.extend({},n);"button"===s&&t.parent(".ui-spinner").length||((e=e||t[s]()[s]("instance"))&&(i.classes=o._resolveClassesValues(i.classes,e)),t[s](i),i=t[s]("widget"),V.data(i[0],"ui-controlgroup-data",e||t[s]("instance")),a.push(i[0]))})))}),this.childWidgets=V(V.uniqueSort(a)),this._addClass(this.childWidgets,"ui-controlgroup-item")},_callChildMethod:function(e){this.childWidgets.each(function(){var t=V(this).data("ui-controlgroup-data");t&&t[e]&&t[e]()})},_updateCornerClass:function(t,e){e=this._buildSimpleOptions(e,"label").classes.label;this._removeClass(t,null,"ui-corner-top ui-corner-bottom ui-corner-left ui-corner-right ui-corner-all"),this._addClass(t,null,e)},_buildSimpleOptions:function(t,e){var i="vertical"===this.options.direction,s={classes:{}};return s.classes[e]={middle:"",first:"ui-corner-"+(i?"top":"left"),last:"ui-corner-"+(i?"bottom":"right"),only:"ui-corner-all"}[t],s},_spinnerOptions:function(t){t=this._buildSimpleOptions(t,"ui-spinner");return t.classes["ui-spinner-up"]="",t.classes["ui-spinner-down"]="",t},_buttonOptions:function(t){return this._buildSimpleOptions(t,"ui-button")},_checkboxradioOptions:function(t){return this._buildSimpleOptions(t,"ui-checkboxradio-label")},_selectmenuOptions:function(t){var e="vertical"===this.options.direction;return{width:e&&"auto",classes:{middle:{"ui-selectmenu-button-open":"","ui-selectmenu-button-closed":""},first:{"ui-selectmenu-button-open":"ui-corner-"+(e?"top":"tl"),"ui-selectmenu-button-closed":"ui-corner-"+(e?"top":"left")},last:{"ui-selectmenu-button-open":e?"":"ui-corner-tr","ui-selectmenu-button-closed":"ui-corner-"+(e?"bottom":"right")},only:{"ui-selectmenu-button-open":"ui-corner-top","ui-selectmenu-button-closed":"ui-corner-all"}}[t]}},_resolveClassesValues:function(i,s){var n={};return V.each(i,function(t){var e=s.options.classes[t]||"",e=String.prototype.trim.call(e.replace(tt,""));n[t]=(e+" "+i[t]).replace(/\s+/g," ")}),n},_setOption:function(t,e){"direction"===t&&this._removeClass("ui-controlgroup-"+this.options.direction),this._super(t,e),"disabled"!==t?this.refresh():this._callChildMethod(e?"disable":"enable")},refresh:function(){var n,o=this;this._addClass("ui-controlgroup ui-controlgroup-"+this.options.direction),"horizontal"===this.options.direction&&this._addClass(null,"ui-helper-clearfix"),this._initWidgets(),n=this.childWidgets,(n=this.options.onlyVisible?n.filter(":visible"):n).length&&(V.each(["first","last"],function(t,e){var i,s=n[e]().data("ui-controlgroup-data");s&&o["_"+s.widgetName+"Options"]?((i=o["_"+s.widgetName+"Options"](1===n.length?"only":e)).classes=o._resolveClassesValues(i.classes,s),s.element[s.widgetName](i)):o._updateCornerClass(n[e](),e)}),this._callChildMethod("refresh"))}});V.widget("ui.checkboxradio",[V.ui.formResetMixin,{version:"1.13.1",options:{disabled:null,label:null,icon:!0,classes:{"ui-checkboxradio-label":"ui-corner-all","ui-checkboxradio-icon":"ui-corner-all"}},_getCreateOptions:function(){var t,e=this,i=this._super()||{};return this._readType(),t=this.element.labels(),this.label=V(t[t.length-1]),this.label.length||V.error("No label found for checkboxradio widget"),this.originalLabel="",this.label.contents().not(this.element[0]).each(function(){e.originalLabel+=3===this.nodeType?V(this).text():this.outerHTML}),this.originalLabel&&(i.label=this.originalLabel),null!=(t=this.element[0].disabled)&&(i.disabled=t),i},_create:function(){var t=this.element[0].checked;this._bindFormResetHandler(),null==this.options.disabled&&(this.options.disabled=this.element[0].disabled),this._setOption("disabled",this.options.disabled),this._addClass("ui-checkboxradio","ui-helper-hidden-accessible"),this._addClass(this.label,"ui-checkboxradio-label","ui-button ui-widget"),"radio"===this.type&&this._addClass(this.label,"ui-checkboxradio-radio-label"),this.options.label&&this.options.label!==this.originalLabel?this._updateLabel():this.originalLabel&&(this.options.label=this.originalLabel),this._enhance(),t&&this._addClass(this.label,"ui-checkboxradio-checked","ui-state-active"),this._on({change:"_toggleClasses",focus:function(){this._addClass(this.label,null,"ui-state-focus ui-visual-focus")},blur:function(){this._removeClass(this.label,null,"ui-state-focus ui-visual-focus")}})},_readType:function(){var t=this.element[0].nodeName.toLowerCase();this.type=this.element[0].type,"input"===t&&/radio|checkbox/.test(this.type)||V.error("Can't create checkboxradio on element.nodeName="+t+" and element.type="+this.type)},_enhance:function(){this._updateIcon(this.element[0].checked)},widget:function(){return this.label},_getRadioGroup:function(){var t=this.element[0].name,e="input[name='"+V.escapeSelector(t)+"']";return t?(this.form.length?V(this.form[0].elements).filter(e):V(e).filter(function(){return 0===V(this)._form().length})).not(this.element):V([])},_toggleClasses:function(){var t=this.element[0].checked;this._toggleClass(this.label,"ui-checkboxradio-checked","ui-state-active",t),this.options.icon&&"checkbox"===this.type&&this._toggleClass(this.icon,null,"ui-icon-check ui-state-checked",t)._toggleClass(this.icon,null,"ui-icon-blank",!t),"radio"===this.type&&this._getRadioGroup().each(function(){var t=V(this).checkboxradio("instance");t&&t._removeClass(t.label,"ui-checkboxradio-checked","ui-state-active")})},_destroy:function(){this._unbindFormResetHandler(),this.icon&&(this.icon.remove(),this.iconSpace.remove())},_setOption:function(t,e){if("label"!==t||e){if(this._super(t,e),"disabled"===t)return this._toggleClass(this.label,null,"ui-state-disabled",e),void(this.element[0].disabled=e);this.refresh()}},_updateIcon:function(t){var e="ui-icon ui-icon-background ";this.options.icon?(this.icon||(this.icon=V("<span>"),this.iconSpace=V("<span> </span>"),this._addClass(this.iconSpace,"ui-checkboxradio-icon-space")),"checkbox"===this.type?(e+=t?"ui-icon-check ui-state-checked":"ui-icon-blank",this._removeClass(this.icon,null,t?"ui-icon-blank":"ui-icon-check")):e+="ui-icon-blank",this._addClass(this.icon,"ui-checkboxradio-icon",e),t||this._removeClass(this.icon,null,"ui-icon-check ui-state-checked"),this.icon.prependTo(this.label).after(this.iconSpace)):void 0!==this.icon&&(this.icon.remove(),this.iconSpace.remove(),delete this.icon)},_updateLabel:function(){var t=this.label.contents().not(this.element[0]);this.icon&&(t=t.not(this.icon[0])),(t=this.iconSpace?t.not(this.iconSpace[0]):t).remove(),this.label.append(this.options.label)},refresh:function(){var t=this.element[0].checked,e=this.element[0].disabled;this._updateIcon(t),this._toggleClass(this.label,"ui-checkboxradio-checked","ui-state-active",t),null!==this.options.label&&this._updateLabel(),e!==this.options.disabled&&this._setOptions({disabled:e})}}]);var et;V.ui.checkboxradio;V.widget("ui.button",{version:"1.13.1",defaultElement:"<button>",options:{classes:{"ui-button":"ui-corner-all"},disabled:null,icon:null,iconPosition:"beginning",label:null,showLabel:!0},_getCreateOptions:function(){var t,e=this._super()||{};return this.isInput=this.element.is("input"),null!=(t=this.element[0].disabled)&&(e.disabled=t),this.originalLabel=this.isInput?this.element.val():this.element.html(),this.originalLabel&&(e.label=this.originalLabel),e},_create:function(){!this.option.showLabel&!this.options.icon&&(this.options.showLabel=!0),null==this.options.disabled&&(this.options.disabled=this.element[0].disabled||!1),this.hasTitle=!!this.element.attr("title"),this.options.label&&this.options.label!==this.originalLabel&&(this.isInput?this.element.val(this.options.label):this.element.html(this.options.label)),this._addClass("ui-button","ui-widget"),this._setOption("disabled",this.options.disabled),this._enhance(),this.element.is("a")&&this._on({keyup:function(t){t.keyCode===V.ui.keyCode.SPACE&&(t.preventDefault(),this.element[0].click?this.element[0].click():this.element.trigger("click"))}})},_enhance:function(){this.element.is("button")||this.element.attr("role","button"),this.options.icon&&(this._updateIcon("icon",this.options.icon),this._updateTooltip())},_updateTooltip:function(){this.title=this.element.attr("title"),this.options.showLabel||this.title||this.element.attr("title",this.options.label)},_updateIcon:function(t,e){var i="iconPosition"!==t,s=i?this.options.iconPosition:e,t="top"===s||"bottom"===s;this.icon?i&&this._removeClass(this.icon,null,this.options.icon):(this.icon=V("<span>"),this._addClass(this.icon,"ui-button-icon","ui-icon"),this.options.showLabel||this._addClass("ui-button-icon-only")),i&&this._addClass(this.icon,null,e),this._attachIcon(s),t?(this._addClass(this.icon,null,"ui-widget-icon-block"),this.iconSpace&&this.iconSpace.remove()):(this.iconSpace||(this.iconSpace=V("<span> </span>"),this._addClass(this.iconSpace,"ui-button-icon-space")),this._removeClass(this.icon,null,"ui-wiget-icon-block"),this._attachIconSpace(s))},_destroy:function(){this.element.removeAttr("role"),this.icon&&this.icon.remove(),this.iconSpace&&this.iconSpace.remove(),this.hasTitle||this.element.removeAttr("title")},_attachIconSpace:function(t){this.icon[/^(?:end|bottom)/.test(t)?"before":"after"](this.iconSpace)},_attachIcon:function(t){this.element[/^(?:end|bottom)/.test(t)?"append":"prepend"](this.icon)},_setOptions:function(t){var e=(void 0===t.showLabel?this.options:t).showLabel,i=(void 0===t.icon?this.options:t).icon;e||i||(t.showLabel=!0),this._super(t)},_setOption:function(t,e){"icon"===t&&(e?this._updateIcon(t,e):this.icon&&(this.icon.remove(),this.iconSpace&&this.iconSpace.remove())),"iconPosition"===t&&this._updateIcon(t,e),"showLabel"===t&&(this._toggleClass("ui-button-icon-only",null,!e),this._updateTooltip()),"label"===t&&(this.isInput?this.element.val(e):(this.element.html(e),this.icon&&(this._attachIcon(this.options.iconPosition),this._attachIconSpace(this.options.iconPosition)))),this._super(t,e),"disabled"===t&&(this._toggleClass(null,"ui-state-disabled",e),(this.element[0].disabled=e)&&this.element.trigger("blur"))},refresh:function(){var t=this.element.is("input, button")?this.element[0].disabled:this.element.hasClass("ui-button-disabled");t!==this.options.disabled&&this._setOptions({disabled:t}),this._updateTooltip()}}),!1!==V.uiBackCompat&&(V.widget("ui.button",V.ui.button,{options:{text:!0,icons:{primary:null,secondary:null}},_create:function(){this.options.showLabel&&!this.options.text&&(this.options.showLabel=this.options.text),!this.options.showLabel&&this.options.text&&(this.options.text=this.options.showLabel),this.options.icon||!this.options.icons.primary&&!this.options.icons.secondary?this.options.icon&&(this.options.icons.primary=this.options.icon):this.options.icons.primary?this.options.icon=this.options.icons.primary:(this.options.icon=this.options.icons.secondary,this.options.iconPosition="end"),this._super()},_setOption:function(t,e){"text"!==t?("showLabel"===t&&(this.options.text=e),"icon"===t&&(this.options.icons.primary=e),"icons"===t&&(e.primary?(this._super("icon",e.primary),this._super("iconPosition","beginning")):e.secondary&&(this._super("icon",e.secondary),this._super("iconPosition","end"))),this._superApply(arguments)):this._super("showLabel",e)}}),V.fn.button=(et=V.fn.button,function(i){var t="string"==typeof i,s=Array.prototype.slice.call(arguments,1),n=this;return t?this.length||"instance"!==i?this.each(function(){var t=V(this).attr("type"),e=V.data(this,"ui-"+("checkbox"!==t&&"radio"!==t?"button":"checkboxradio"));return"instance"===i?(n=e,!1):e?"function"!=typeof e[i]||"_"===i.charAt(0)?V.error("no such method '"+i+"' for button widget instance"):(t=e[i].apply(e,s))!==e&&void 0!==t?(n=t&&t.jquery?n.pushStack(t.get()):t,!1):void 0:V.error("cannot call methods on button prior to initialization; attempted to call method '"+i+"'")}):n=void 0:(s.length&&(i=V.widget.extend.apply(null,[i].concat(s))),this.each(function(){var t=V(this).attr("type"),e="checkbox"!==t&&"radio"!==t?"button":"checkboxradio",t=V.data(this,"ui-"+e);t?(t.option(i||{}),t._init&&t._init()):"button"!=e?V(this).checkboxradio(V.extend({icon:!1},i)):et.call(V(this),i)})),n}),V.fn.buttonset=function(){return V.ui.controlgroup||V.error("Controlgroup widget missing"),"option"===arguments[0]&&"items"===arguments[1]&&arguments[2]?this.controlgroup.apply(this,[arguments[0],"items.button",arguments[2]]):"option"===arguments[0]&&"items"===arguments[1]?this.controlgroup.apply(this,[arguments[0],"items.button"]):("object"==typeof arguments[0]&&arguments[0].items&&(arguments[0].items={button:arguments[0].items}),this.controlgroup.apply(this,arguments))});var it;V.ui.button;function st(){this._curInst=null,this._keyEvent=!1,this._disabledInputs=[],this._datepickerShowing=!1,this._inDialog=!1,this._mainDivId="ui-datepicker-div",this._inlineClass="ui-datepicker-inline",this._appendClass="ui-datepicker-append",this._triggerClass="ui-datepicker-trigger",this._dialogClass="ui-datepicker-dialog",this._disableClass="ui-datepicker-disabled",this._unselectableClass="ui-datepicker-unselectable",this._currentClass="ui-datepicker-current-day",this._dayOverClass="ui-datepicker-days-cell-over",this.regional=[],this.regional[""]={closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"mm/dd/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:"",selectMonthLabel:"Select month",selectYearLabel:"Select year"},this._defaults={showOn:"focus",showAnim:"fadeIn",showOptions:{},defaultDate:null,appendText:"",buttonText:"...",buttonImage:"",buttonImageOnly:!1,hideIfNoPrevNext:!1,navigationAsDateFormat:!1,gotoCurrent:!1,changeMonth:!1,changeYear:!1,yearRange:"c-10:c+10",showOtherMonths:!1,selectOtherMonths:!1,showWeek:!1,calculateWeek:this.iso8601Week,shortYearCutoff:"+10",minDate:null,maxDate:null,duration:"fast",beforeShowDay:null,beforeShow:null,onSelect:null,onChangeMonthYear:null,onClose:null,onUpdateDatepicker:null,numberOfMonths:1,showCurrentAtPos:0,stepMonths:1,stepBigMonths:12,altField:"",altFormat:"",constrainInput:!0,showButtonPanel:!1,autoSize:!1,disabled:!1},V.extend(this._defaults,this.regional[""]),this.regional.en=V.extend(!0,{},this.regional[""]),this.regional["en-US"]=V.extend(!0,{},this.regional.en),this.dpDiv=nt(V("<div id='"+this._mainDivId+"' class='ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all'></div>"))}function nt(t){var e="button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a";return t.on("mouseout",e,function(){V(this).removeClass("ui-state-hover"),-1!==this.className.indexOf("ui-datepicker-prev")&&V(this).removeClass("ui-datepicker-prev-hover"),-1!==this.className.indexOf("ui-datepicker-next")&&V(this).removeClass("ui-datepicker-next-hover")}).on("mouseover",e,ot)}function ot(){V.datepicker._isDisabledDatepicker((it.inline?it.dpDiv.parent():it.input)[0])||(V(this).parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover"),V(this).addClass("ui-state-hover"),-1!==this.className.indexOf("ui-datepicker-prev")&&V(this).addClass("ui-datepicker-prev-hover"),-1!==this.className.indexOf("ui-datepicker-next")&&V(this).addClass("ui-datepicker-next-hover"))}function at(t,e){for(var i in V.extend(t,e),e)null==e[i]&&(t[i]=e[i]);return t}V.extend(V.ui,{datepicker:{version:"1.13.1"}}),V.extend(st.prototype,{markerClassName:"hasDatepicker",maxRows:4,_widgetDatepicker:function(){return this.dpDiv},setDefaults:function(t){return at(this._defaults,t||{}),this},_attachDatepicker:function(t,e){var i,s=t.nodeName.toLowerCase(),n="div"===s||"span"===s;t.id||(this.uuid+=1,t.id="dp"+this.uuid),(i=this._newInst(V(t),n)).settings=V.extend({},e||{}),"input"===s?this._connectDatepicker(t,i):n&&this._inlineDatepicker(t,i)},_newInst:function(t,e){return{id:t[0].id.replace(/([^A-Za-z0-9_\-])/g,"\\\\$1"),input:t,selectedDay:0,selectedMonth:0,selectedYear:0,drawMonth:0,drawYear:0,inline:e,dpDiv:e?nt(V("<div class='"+this._inlineClass+" ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all'></div>")):this.dpDiv}},_connectDatepicker:function(t,e){var i=V(t);e.append=V([]),e.trigger=V([]),i.hasClass(this.markerClassName)||(this._attachments(i,e),i.addClass(this.markerClassName).on("keydown",this._doKeyDown).on("keypress",this._doKeyPress).on("keyup",this._doKeyUp),this._autoSize(e),V.data(t,"datepicker",e),e.settings.disabled&&this._disableDatepicker(t))},_attachments:function(t,e){var i,s=this._get(e,"appendText"),n=this._get(e,"isRTL");e.append&&e.append.remove(),s&&(e.append=V("<span>").addClass(this._appendClass).text(s),t[n?"before":"after"](e.append)),t.off("focus",this._showDatepicker),e.trigger&&e.trigger.remove(),"focus"!==(i=this._get(e,"showOn"))&&"both"!==i||t.on("focus",this._showDatepicker),"button"!==i&&"both"!==i||(s=this._get(e,"buttonText"),i=this._get(e,"buttonImage"),this._get(e,"buttonImageOnly")?e.trigger=V("<img>").addClass(this._triggerClass).attr({src:i,alt:s,title:s}):(e.trigger=V("<button type='button'>").addClass(this._triggerClass),i?e.trigger.html(V("<img>").attr({src:i,alt:s,title:s})):e.trigger.text(s)),t[n?"before":"after"](e.trigger),e.trigger.on("click",function(){return V.datepicker._datepickerShowing&&V.datepicker._lastInput===t[0]?V.datepicker._hideDatepicker():(V.datepicker._datepickerShowing&&V.datepicker._lastInput!==t[0]&&V.datepicker._hideDatepicker(),V.datepicker._showDatepicker(t[0])),!1}))},_autoSize:function(t){var e,i,s,n,o,a;this._get(t,"autoSize")&&!t.inline&&(o=new Date(2009,11,20),(a=this._get(t,"dateFormat")).match(/[DM]/)&&(e=function(t){for(n=s=i=0;n<t.length;n++)t[n].length>i&&(i=t[n].length,s=n);return s},o.setMonth(e(this._get(t,a.match(/MM/)?"monthNames":"monthNamesShort"))),o.setDate(e(this._get(t,a.match(/DD/)?"dayNames":"dayNamesShort"))+20-o.getDay())),t.input.attr("size",this._formatDate(t,o).length))},_inlineDatepicker:function(t,e){var i=V(t);i.hasClass(this.markerClassName)||(i.addClass(this.markerClassName).append(e.dpDiv),V.data(t,"datepicker",e),this._setDate(e,this._getDefaultDate(e),!0),this._updateDatepicker(e),this._updateAlternate(e),e.settings.disabled&&this._disableDatepicker(t),e.dpDiv.css("display","block"))},_dialogDatepicker:function(t,e,i,s,n){var o,a=this._dialogInst;return a||(this.uuid+=1,o="dp"+this.uuid,this._dialogInput=V("<input type='text' id='"+o+"' style='position: absolute; top: -100px; width: 0px;'/>"),this._dialogInput.on("keydown",this._doKeyDown),V("body").append(this._dialogInput),(a=this._dialogInst=this._newInst(this._dialogInput,!1)).settings={},V.data(this._dialogInput[0],"datepicker",a)),at(a.settings,s||{}),e=e&&e.constructor===Date?this._formatDate(a,e):e,this._dialogInput.val(e),this._pos=n?n.length?n:[n.pageX,n.pageY]:null,this._pos||(o=document.documentElement.clientWidth,s=document.documentElement.clientHeight,e=document.documentElement.scrollLeft||document.body.scrollLeft,n=document.documentElement.scrollTop||document.body.scrollTop,this._pos=[o/2-100+e,s/2-150+n]),this._dialogInput.css("left",this._pos[0]+20+"px").css("top",this._pos[1]+"px"),a.settings.onSelect=i,this._inDialog=!0,this.dpDiv.addClass(this._dialogClass),this._showDatepicker(this._dialogInput[0]),V.blockUI&&V.blockUI(this.dpDiv),V.data(this._dialogInput[0],"datepicker",a),this},_destroyDatepicker:function(t){var e,i=V(t),s=V.data(t,"datepicker");i.hasClass(this.markerClassName)&&(e=t.nodeName.toLowerCase(),V.removeData(t,"datepicker"),"input"===e?(s.append.remove(),s.trigger.remove(),i.removeClass(this.markerClassName).off("focus",this._showDatepicker).off("keydown",this._doKeyDown).off("keypress",this._doKeyPress).off("keyup",this._doKeyUp)):"div"!==e&&"span"!==e||i.removeClass(this.markerClassName).empty(),it===s&&(it=null,this._curInst=null))},_enableDatepicker:function(e){var t,i=V(e),s=V.data(e,"datepicker");i.hasClass(this.markerClassName)&&("input"===(t=e.nodeName.toLowerCase())?(e.disabled=!1,s.trigger.filter("button").each(function(){this.disabled=!1}).end().filter("img").css({opacity:"1.0",cursor:""})):"div"!==t&&"span"!==t||((i=i.children("."+this._inlineClass)).children().removeClass("ui-state-disabled"),i.find("select.ui-datepicker-month, select.ui-datepicker-year").prop("disabled",!1)),this._disabledInputs=V.map(this._disabledInputs,function(t){return t===e?null:t}))},_disableDatepicker:function(e){var t,i=V(e),s=V.data(e,"datepicker");i.hasClass(this.markerClassName)&&("input"===(t=e.nodeName.toLowerCase())?(e.disabled=!0,s.trigger.filter("button").each(function(){this.disabled=!0}).end().filter("img").css({opacity:"0.5",cursor:"default"})):"div"!==t&&"span"!==t||((i=i.children("."+this._inlineClass)).children().addClass("ui-state-disabled"),i.find("select.ui-datepicker-month, select.ui-datepicker-year").prop("disabled",!0)),this._disabledInputs=V.map(this._disabledInputs,function(t){return t===e?null:t}),this._disabledInputs[this._disabledInputs.length]=e)},_isDisabledDatepicker:function(t){if(!t)return!1;for(var e=0;e<this._disabledInputs.length;e++)if(this._disabledInputs[e]===t)return!0;return!1},_getInst:function(t){try{return V.data(t,"datepicker")}catch(t){throw"Missing instance data for this datepicker"}},_optionDatepicker:function(t,e,i){var s,n,o=this._getInst(t);if(2===arguments.length&&"string"==typeof e)return"defaults"===e?V.extend({},V.datepicker._defaults):o?"all"===e?V.extend({},o.settings):this._get(o,e):null;s=e||{},"string"==typeof e&&((s={})[e]=i),o&&(this._curInst===o&&this._hideDatepicker(),n=this._getDateDatepicker(t,!0),e=this._getMinMaxDate(o,"min"),i=this._getMinMaxDate(o,"max"),at(o.settings,s),null!==e&&void 0!==s.dateFormat&&void 0===s.minDate&&(o.settings.minDate=this._formatDate(o,e)),null!==i&&void 0!==s.dateFormat&&void 0===s.maxDate&&(o.settings.maxDate=this._formatDate(o,i)),"disabled"in s&&(s.disabled?this._disableDatepicker(t):this._enableDatepicker(t)),this._attachments(V(t),o),this._autoSize(o),this._setDate(o,n),this._updateAlternate(o),this._updateDatepicker(o))},_changeDatepicker:function(t,e,i){this._optionDatepicker(t,e,i)},_refreshDatepicker:function(t){t=this._getInst(t);t&&this._updateDatepicker(t)},_setDateDatepicker:function(t,e){t=this._getInst(t);t&&(this._setDate(t,e),this._updateDatepicker(t),this._updateAlternate(t))},_getDateDatepicker:function(t,e){t=this._getInst(t);return t&&!t.inline&&this._setDateFromField(t,e),t?this._getDate(t):null},_doKeyDown:function(t){var e,i,s=V.datepicker._getInst(t.target),n=!0,o=s.dpDiv.is(".ui-datepicker-rtl");if(s._keyEvent=!0,V.datepicker._datepickerShowing)switch(t.keyCode){case 9:V.datepicker._hideDatepicker(),n=!1;break;case 13:return(i=V("td."+V.datepicker._dayOverClass+":not(."+V.datepicker._currentClass+")",s.dpDiv))[0]&&V.datepicker._selectDay(t.target,s.selectedMonth,s.selectedYear,i[0]),(e=V.datepicker._get(s,"onSelect"))?(i=V.datepicker._formatDate(s),e.apply(s.input?s.input[0]:null,[i,s])):V.datepicker._hideDatepicker(),!1;case 27:V.datepicker._hideDatepicker();break;case 33:V.datepicker._adjustDate(t.target,t.ctrlKey?-V.datepicker._get(s,"stepBigMonths"):-V.datepicker._get(s,"stepMonths"),"M");break;case 34:V.datepicker._adjustDate(t.target,t.ctrlKey?+V.datepicker._get(s,"stepBigMonths"):+V.datepicker._get(s,"stepMonths"),"M");break;case 35:(t.ctrlKey||t.metaKey)&&V.datepicker._clearDate(t.target),n=t.ctrlKey||t.metaKey;break;case 36:(t.ctrlKey||t.metaKey)&&V.datepicker._gotoToday(t.target),n=t.ctrlKey||t.metaKey;break;case 37:(t.ctrlKey||t.metaKey)&&V.datepicker._adjustDate(t.target,o?1:-1,"D"),n=t.ctrlKey||t.metaKey,t.originalEvent.altKey&&V.datepicker._adjustDate(t.target,t.ctrlKey?-V.datepicker._get(s,"stepBigMonths"):-V.datepicker._get(s,"stepMonths"),"M");break;case 38:(t.ctrlKey||t.metaKey)&&V.datepicker._adjustDate(t.target,-7,"D"),n=t.ctrlKey||t.metaKey;break;case 39:(t.ctrlKey||t.metaKey)&&V.datepicker._adjustDate(t.target,o?-1:1,"D"),n=t.ctrlKey||t.metaKey,t.originalEvent.altKey&&V.datepicker._adjustDate(t.target,t.ctrlKey?+V.datepicker._get(s,"stepBigMonths"):+V.datepicker._get(s,"stepMonths"),"M");break;case 40:(t.ctrlKey||t.metaKey)&&V.datepicker._adjustDate(t.target,7,"D"),n=t.ctrlKey||t.metaKey;break;default:n=!1}else 36===t.keyCode&&t.ctrlKey?V.datepicker._showDatepicker(this):n=!1;n&&(t.preventDefault(),t.stopPropagation())},_doKeyPress:function(t){var e,i=V.datepicker._getInst(t.target);if(V.datepicker._get(i,"constrainInput"))return e=V.datepicker._possibleChars(V.datepicker._get(i,"dateFormat")),i=String.fromCharCode(null==t.charCode?t.keyCode:t.charCode),t.ctrlKey||t.metaKey||i<" "||!e||-1<e.indexOf(i)},_doKeyUp:function(t){t=V.datepicker._getInst(t.target);if(t.input.val()!==t.lastVal)try{V.datepicker.parseDate(V.datepicker._get(t,"dateFormat"),t.input?t.input.val():null,V.datepicker._getFormatConfig(t))&&(V.datepicker._setDateFromField(t),V.datepicker._updateAlternate(t),V.datepicker._updateDatepicker(t))}catch(t){}return!0},_showDatepicker:function(t){var e,i,s,n;"input"!==(t=t.target||t).nodeName.toLowerCase()&&(t=V("input",t.parentNode)[0]),V.datepicker._isDisabledDatepicker(t)||V.datepicker._lastInput===t||(n=V.datepicker._getInst(t),V.datepicker._curInst&&V.datepicker._curInst!==n&&(V.datepicker._curInst.dpDiv.stop(!0,!0),n&&V.datepicker._datepickerShowing&&V.datepicker._hideDatepicker(V.datepicker._curInst.input[0])),!1!==(i=(s=V.datepicker._get(n,"beforeShow"))?s.apply(t,[t,n]):{})&&(at(n.settings,i),n.lastVal=null,V.datepicker._lastInput=t,V.datepicker._setDateFromField(n),V.datepicker._inDialog&&(t.value=""),V.datepicker._pos||(V.datepicker._pos=V.datepicker._findPos(t),V.datepicker._pos[1]+=t.offsetHeight),e=!1,V(t).parents().each(function(){return!(e|="fixed"===V(this).css("position"))}),s={left:V.datepicker._pos[0],top:V.datepicker._pos[1]},V.datepicker._pos=null,n.dpDiv.empty(),n.dpDiv.css({position:"absolute",display:"block",top:"-1000px"}),V.datepicker._updateDatepicker(n),s=V.datepicker._checkOffset(n,s,e),n.dpDiv.css({position:V.datepicker._inDialog&&V.blockUI?"static":e?"fixed":"absolute",display:"none",left:s.left+"px",top:s.top+"px"}),n.inline||(i=V.datepicker._get(n,"showAnim"),s=V.datepicker._get(n,"duration"),n.dpDiv.css("z-index",function(t){for(var e,i;t.length&&t[0]!==document;){if(("absolute"===(e=t.css("position"))||"relative"===e||"fixed"===e)&&(i=parseInt(t.css("zIndex"),10),!isNaN(i)&&0!==i))return i;t=t.parent()}return 0}(V(t))+1),V.datepicker._datepickerShowing=!0,V.effects&&V.effects.effect[i]?n.dpDiv.show(i,V.datepicker._get(n,"showOptions"),s):n.dpDiv[i||"show"](i?s:null),V.datepicker._shouldFocusInput(n)&&n.input.trigger("focus"),V.datepicker._curInst=n)))},_updateDatepicker:function(t){this.maxRows=4,(it=t).dpDiv.empty().append(this._generateHTML(t)),this._attachHandlers(t);var e,i=this._getNumberOfMonths(t),s=i[1],n=t.dpDiv.find("."+this._dayOverClass+" a"),o=V.datepicker._get(t,"onUpdateDatepicker");0<n.length&&ot.apply(n.get(0)),t.dpDiv.removeClass("ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4").width(""),1<s&&t.dpDiv.addClass("ui-datepicker-multi-"+s).css("width",17*s+"em"),t.dpDiv[(1!==i[0]||1!==i[1]?"add":"remove")+"Class"]("ui-datepicker-multi"),t.dpDiv[(this._get(t,"isRTL")?"add":"remove")+"Class"]("ui-datepicker-rtl"),t===V.datepicker._curInst&&V.datepicker._datepickerShowing&&V.datepicker._shouldFocusInput(t)&&t.input.trigger("focus"),t.yearshtml&&(e=t.yearshtml,setTimeout(function(){e===t.yearshtml&&t.yearshtml&&t.dpDiv.find("select.ui-datepicker-year").first().replaceWith(t.yearshtml),e=t.yearshtml=null},0)),o&&o.apply(t.input?t.input[0]:null,[t])},_shouldFocusInput:function(t){return t.input&&t.input.is(":visible")&&!t.input.is(":disabled")&&!t.input.is(":focus")},_checkOffset:function(t,e,i){var s=t.dpDiv.outerWidth(),n=t.dpDiv.outerHeight(),o=t.input?t.input.outerWidth():0,a=t.input?t.input.outerHeight():0,r=document.documentElement.clientWidth+(i?0:V(document).scrollLeft()),l=document.documentElement.clientHeight+(i?0:V(document).scrollTop());return e.left-=this._get(t,"isRTL")?s-o:0,e.left-=i&&e.left===t.input.offset().left?V(document).scrollLeft():0,e.top-=i&&e.top===t.input.offset().top+a?V(document).scrollTop():0,e.left-=Math.min(e.left,e.left+s>r&&s<r?Math.abs(e.left+s-r):0),e.top-=Math.min(e.top,e.top+n>l&&n<l?Math.abs(n+a):0),e},_findPos:function(t){for(var e=this._getInst(t),i=this._get(e,"isRTL");t&&("hidden"===t.type||1!==t.nodeType||V.expr.pseudos.hidden(t));)t=t[i?"previousSibling":"nextSibling"];return[(e=V(t).offset()).left,e.top]},_hideDatepicker:function(t){var e,i,s=this._curInst;!s||t&&s!==V.data(t,"datepicker")||this._datepickerShowing&&(e=this._get(s,"showAnim"),i=this._get(s,"duration"),t=function(){V.datepicker._tidyDialog(s)},V.effects&&(V.effects.effect[e]||V.effects[e])?s.dpDiv.hide(e,V.datepicker._get(s,"showOptions"),i,t):s.dpDiv["slideDown"===e?"slideUp":"fadeIn"===e?"fadeOut":"hide"](e?i:null,t),e||t(),this._datepickerShowing=!1,(t=this._get(s,"onClose"))&&t.apply(s.input?s.input[0]:null,[s.input?s.input.val():"",s]),this._lastInput=null,this._inDialog&&(this._dialogInput.css({position:"absolute",left:"0",top:"-100px"}),V.blockUI&&(V.unblockUI(),V("body").append(this.dpDiv))),this._inDialog=!1)},_tidyDialog:function(t){t.dpDiv.removeClass(this._dialogClass).off(".ui-datepicker-calendar")},_checkExternalClick:function(t){var e;V.datepicker._curInst&&(e=V(t.target),t=V.datepicker._getInst(e[0]),(e[0].id===V.datepicker._mainDivId||0!==e.parents("#"+V.datepicker._mainDivId).length||e.hasClass(V.datepicker.markerClassName)||e.closest("."+V.datepicker._triggerClass).length||!V.datepicker._datepickerShowing||V.datepicker._inDialog&&V.blockUI)&&(!e.hasClass(V.datepicker.markerClassName)||V.datepicker._curInst===t)||V.datepicker._hideDatepicker())},_adjustDate:function(t,e,i){var s=V(t),t=this._getInst(s[0]);this._isDisabledDatepicker(s[0])||(this._adjustInstDate(t,e,i),this._updateDatepicker(t))},_gotoToday:function(t){var e=V(t),i=this._getInst(e[0]);this._get(i,"gotoCurrent")&&i.currentDay?(i.selectedDay=i.currentDay,i.drawMonth=i.selectedMonth=i.currentMonth,i.drawYear=i.selectedYear=i.currentYear):(t=new Date,i.selectedDay=t.getDate(),i.drawMonth=i.selectedMonth=t.getMonth(),i.drawYear=i.selectedYear=t.getFullYear()),this._notifyChange(i),this._adjustDate(e)},_selectMonthYear:function(t,e,i){var s=V(t),t=this._getInst(s[0]);t["selected"+("M"===i?"Month":"Year")]=t["draw"+("M"===i?"Month":"Year")]=parseInt(e.options[e.selectedIndex].value,10),this._notifyChange(t),this._adjustDate(s)},_selectDay:function(t,e,i,s){var n=V(t);V(s).hasClass(this._unselectableClass)||this._isDisabledDatepicker(n[0])||((n=this._getInst(n[0])).selectedDay=n.currentDay=parseInt(V("a",s).attr("data-date")),n.selectedMonth=n.currentMonth=e,n.selectedYear=n.currentYear=i,this._selectDate(t,this._formatDate(n,n.currentDay,n.currentMonth,n.currentYear)))},_clearDate:function(t){t=V(t);this._selectDate(t,"")},_selectDate:function(t,e){var i=V(t),t=this._getInst(i[0]);e=null!=e?e:this._formatDate(t),t.input&&t.input.val(e),this._updateAlternate(t),(i=this._get(t,"onSelect"))?i.apply(t.input?t.input[0]:null,[e,t]):t.input&&t.input.trigger("change"),t.inline?this._updateDatepicker(t):(this._hideDatepicker(),this._lastInput=t.input[0],"object"!=typeof t.input[0]&&t.input.trigger("focus"),this._lastInput=null)},_updateAlternate:function(t){var e,i,s=this._get(t,"altField");s&&(e=this._get(t,"altFormat")||this._get(t,"dateFormat"),i=this._getDate(t),t=this.formatDate(e,i,this._getFormatConfig(t)),V(document).find(s).val(t))},noWeekends:function(t){t=t.getDay();return[0<t&&t<6,""]},iso8601Week:function(t){var e=new Date(t.getTime());return e.setDate(e.getDate()+4-(e.getDay()||7)),t=e.getTime(),e.setMonth(0),e.setDate(1),Math.floor(Math.round((t-e)/864e5)/7)+1},parseDate:function(e,n,t){if(null==e||null==n)throw"Invalid arguments";if(""===(n="object"==typeof n?n.toString():n+""))return null;for(var i,s,o,a=0,r=(t?t.shortYearCutoff:null)||this._defaults.shortYearCutoff,r="string"!=typeof r?r:(new Date).getFullYear()%100+parseInt(r,10),l=(t?t.dayNamesShort:null)||this._defaults.dayNamesShort,h=(t?t.dayNames:null)||this._defaults.dayNames,c=(t?t.monthNamesShort:null)||this._defaults.monthNamesShort,u=(t?t.monthNames:null)||this._defaults.monthNames,d=-1,p=-1,f=-1,g=-1,m=!1,_=function(t){t=w+1<e.length&&e.charAt(w+1)===t;return t&&w++,t},v=function(t){var e=_(t),e="@"===t?14:"!"===t?20:"y"===t&&e?4:"o"===t?3:2,e=new RegExp("^\\d{"+("y"===t?e:1)+","+e+"}"),e=n.substring(a).match(e);if(!e)throw"Missing number at position "+a;return a+=e[0].length,parseInt(e[0],10)},b=function(t,e,i){var s=-1,e=V.map(_(t)?i:e,function(t,e){return[[e,t]]}).sort(function(t,e){return-(t[1].length-e[1].length)});if(V.each(e,function(t,e){var i=e[1];if(n.substr(a,i.length).toLowerCase()===i.toLowerCase())return s=e[0],a+=i.length,!1}),-1!==s)return s+1;throw"Unknown name at position "+a},y=function(){if(n.charAt(a)!==e.charAt(w))throw"Unexpected literal at position "+a;a++},w=0;w<e.length;w++)if(m)"'"!==e.charAt(w)||_("'")?y():m=!1;else switch(e.charAt(w)){case"d":f=v("d");break;case"D":b("D",l,h);break;case"o":g=v("o");break;case"m":p=v("m");break;case"M":p=b("M",c,u);break;case"y":d=v("y");break;case"@":d=(o=new Date(v("@"))).getFullYear(),p=o.getMonth()+1,f=o.getDate();break;case"!":d=(o=new Date((v("!")-this._ticksTo1970)/1e4)).getFullYear(),p=o.getMonth()+1,f=o.getDate();break;case"'":_("'")?y():m=!0;break;default:y()}if(a<n.length&&(s=n.substr(a),!/^\s+/.test(s)))throw"Extra/unparsed characters found in date: "+s;if(-1===d?d=(new Date).getFullYear():d<100&&(d+=(new Date).getFullYear()-(new Date).getFullYear()%100+(d<=r?0:-100)),-1<g)for(p=1,f=g;;){if(f<=(i=this._getDaysInMonth(d,p-1)))break;p++,f-=i}if((o=this._daylightSavingAdjust(new Date(d,p-1,f))).getFullYear()!==d||o.getMonth()+1!==p||o.getDate()!==f)throw"Invalid date";return o},ATOM:"yy-mm-dd",COOKIE:"D, dd M yy",ISO_8601:"yy-mm-dd",RFC_822:"D, d M y",RFC_850:"DD, dd-M-y",RFC_1036:"D, d M y",RFC_1123:"D, d M yy",RFC_2822:"D, d M yy",RSS:"D, d M y",TICKS:"!",TIMESTAMP:"@",W3C:"yy-mm-dd",_ticksTo1970:24*(718685+Math.floor(492.5)-Math.floor(19.7)+Math.floor(4.925))*60*60*1e7,formatDate:function(e,t,i){if(!t)return"";function s(t,e,i){var s=""+e;if(c(t))for(;s.length<i;)s="0"+s;return s}function n(t,e,i,s){return(c(t)?s:i)[e]}var o,a=(i?i.dayNamesShort:null)||this._defaults.dayNamesShort,r=(i?i.dayNames:null)||this._defaults.dayNames,l=(i?i.monthNamesShort:null)||this._defaults.monthNamesShort,h=(i?i.monthNames:null)||this._defaults.monthNames,c=function(t){t=o+1<e.length&&e.charAt(o+1)===t;return t&&o++,t},u="",d=!1;if(t)for(o=0;o<e.length;o++)if(d)"'"!==e.charAt(o)||c("'")?u+=e.charAt(o):d=!1;else switch(e.charAt(o)){case"d":u+=s("d",t.getDate(),2);break;case"D":u+=n("D",t.getDay(),a,r);break;case"o":u+=s("o",Math.round((new Date(t.getFullYear(),t.getMonth(),t.getDate()).getTime()-new Date(t.getFullYear(),0,0).getTime())/864e5),3);break;case"m":u+=s("m",t.getMonth()+1,2);break;case"M":u+=n("M",t.getMonth(),l,h);break;case"y":u+=c("y")?t.getFullYear():(t.getFullYear()%100<10?"0":"")+t.getFullYear()%100;break;case"@":u+=t.getTime();break;case"!":u+=1e4*t.getTime()+this._ticksTo1970;break;case"'":c("'")?u+="'":d=!0;break;default:u+=e.charAt(o)}return u},_possibleChars:function(e){for(var t="",i=!1,s=function(t){t=n+1<e.length&&e.charAt(n+1)===t;return t&&n++,t},n=0;n<e.length;n++)if(i)"'"!==e.charAt(n)||s("'")?t+=e.charAt(n):i=!1;else switch(e.charAt(n)){case"d":case"m":case"y":case"@":t+="0123456789";break;case"D":case"M":return null;case"'":s("'")?t+="'":i=!0;break;default:t+=e.charAt(n)}return t},_get:function(t,e){return(void 0!==t.settings[e]?t.settings:this._defaults)[e]},_setDateFromField:function(t,e){if(t.input.val()!==t.lastVal){var i=this._get(t,"dateFormat"),s=t.lastVal=t.input?t.input.val():null,n=this._getDefaultDate(t),o=n,a=this._getFormatConfig(t);try{o=this.parseDate(i,s,a)||n}catch(t){s=e?"":s}t.selectedDay=o.getDate(),t.drawMonth=t.selectedMonth=o.getMonth(),t.drawYear=t.selectedYear=o.getFullYear(),t.currentDay=s?o.getDate():0,t.currentMonth=s?o.getMonth():0,t.currentYear=s?o.getFullYear():0,this._adjustInstDate(t)}},_getDefaultDate:function(t){return this._restrictMinMax(t,this._determineDate(t,this._get(t,"defaultDate"),new Date))},_determineDate:function(r,t,e){var i,s,t=null==t||""===t?e:"string"==typeof t?function(t){try{return V.datepicker.parseDate(V.datepicker._get(r,"dateFormat"),t,V.datepicker._getFormatConfig(r))}catch(t){}for(var e=(t.toLowerCase().match(/^c/)?V.datepicker._getDate(r):null)||new Date,i=e.getFullYear(),s=e.getMonth(),n=e.getDate(),o=/([+\-]?[0-9]+)\s*(d|D|w|W|m|M|y|Y)?/g,a=o.exec(t);a;){switch(a[2]||"d"){case"d":case"D":n+=parseInt(a[1],10);break;case"w":case"W":n+=7*parseInt(a[1],10);break;case"m":case"M":s+=parseInt(a[1],10),n=Math.min(n,V.datepicker._getDaysInMonth(i,s));break;case"y":case"Y":i+=parseInt(a[1],10),n=Math.min(n,V.datepicker._getDaysInMonth(i,s))}a=o.exec(t)}return new Date(i,s,n)}(t):"number"==typeof t?isNaN(t)?e:(i=t,(s=new Date).setDate(s.getDate()+i),s):new Date(t.getTime());return(t=t&&"Invalid Date"===t.toString()?e:t)&&(t.setHours(0),t.setMinutes(0),t.setSeconds(0),t.setMilliseconds(0)),this._daylightSavingAdjust(t)},_daylightSavingAdjust:function(t){return t?(t.setHours(12<t.getHours()?t.getHours()+2:0),t):null},_setDate:function(t,e,i){var s=!e,n=t.selectedMonth,o=t.selectedYear,e=this._restrictMinMax(t,this._determineDate(t,e,new Date));t.selectedDay=t.currentDay=e.getDate(),t.drawMonth=t.selectedMonth=t.currentMonth=e.getMonth(),t.drawYear=t.selectedYear=t.currentYear=e.getFullYear(),n===t.selectedMonth&&o===t.selectedYear||i||this._notifyChange(t),this._adjustInstDate(t),t.input&&t.input.val(s?"":this._formatDate(t))},_getDate:function(t){return!t.currentYear||t.input&&""===t.input.val()?null:this._daylightSavingAdjust(new Date(t.currentYear,t.currentMonth,t.currentDay))},_attachHandlers:function(t){var e=this._get(t,"stepMonths"),i="#"+t.id.replace(/\\\\/g,"\\");t.dpDiv.find("[data-handler]").map(function(){var t={prev:function(){V.datepicker._adjustDate(i,-e,"M")},next:function(){V.datepicker._adjustDate(i,+e,"M")},hide:function(){V.datepicker._hideDatepicker()},today:function(){V.datepicker._gotoToday(i)},selectDay:function(){return V.datepicker._selectDay(i,+this.getAttribute("data-month"),+this.getAttribute("data-year"),this),!1},selectMonth:function(){return V.datepicker._selectMonthYear(i,this,"M"),!1},selectYear:function(){return V.datepicker._selectMonthYear(i,this,"Y"),!1}};V(this).on(this.getAttribute("data-event"),t[this.getAttribute("data-handler")])})},_generateHTML:function(t){var e,i,s,n,o,a,r,l,h,c,u,d,p,f,g,m,_,v,b,y,w,x,k,C,D,I,T,P,M,S,H,z,A=new Date,O=this._daylightSavingAdjust(new Date(A.getFullYear(),A.getMonth(),A.getDate())),N=this._get(t,"isRTL"),E=this._get(t,"showButtonPanel"),W=this._get(t,"hideIfNoPrevNext"),F=this._get(t,"navigationAsDateFormat"),L=this._getNumberOfMonths(t),R=this._get(t,"showCurrentAtPos"),A=this._get(t,"stepMonths"),Y=1!==L[0]||1!==L[1],B=this._daylightSavingAdjust(t.currentDay?new Date(t.currentYear,t.currentMonth,t.currentDay):new Date(9999,9,9)),j=this._getMinMaxDate(t,"min"),q=this._getMinMaxDate(t,"max"),K=t.drawMonth-R,U=t.drawYear;if(K<0&&(K+=12,U--),q)for(e=this._daylightSavingAdjust(new Date(q.getFullYear(),q.getMonth()-L[0]*L[1]+1,q.getDate())),e=j&&e<j?j:e;this._daylightSavingAdjust(new Date(U,K,1))>e;)--K<0&&(K=11,U--);for(t.drawMonth=K,t.drawYear=U,R=this._get(t,"prevText"),R=F?this.formatDate(R,this._daylightSavingAdjust(new Date(U,K-A,1)),this._getFormatConfig(t)):R,i=this._canAdjustMonth(t,-1,U,K)?V("<a>").attr({class:"ui-datepicker-prev ui-corner-all","data-handler":"prev","data-event":"click",title:R}).append(V("<span>").addClass("ui-icon ui-icon-circle-triangle-"+(N?"e":"w")).text(R))[0].outerHTML:W?"":V("<a>").attr({class:"ui-datepicker-prev ui-corner-all ui-state-disabled",title:R}).append(V("<span>").addClass("ui-icon ui-icon-circle-triangle-"+(N?"e":"w")).text(R))[0].outerHTML,R=this._get(t,"nextText"),R=F?this.formatDate(R,this._daylightSavingAdjust(new Date(U,K+A,1)),this._getFormatConfig(t)):R,s=this._canAdjustMonth(t,1,U,K)?V("<a>").attr({class:"ui-datepicker-next ui-corner-all","data-handler":"next","data-event":"click",title:R}).append(V("<span>").addClass("ui-icon ui-icon-circle-triangle-"+(N?"w":"e")).text(R))[0].outerHTML:W?"":V("<a>").attr({class:"ui-datepicker-next ui-corner-all ui-state-disabled",title:R}).append(V("<span>").attr("class","ui-icon ui-icon-circle-triangle-"+(N?"w":"e")).text(R))[0].outerHTML,A=this._get(t,"currentText"),W=this._get(t,"gotoCurrent")&&t.currentDay?B:O,A=F?this.formatDate(A,W,this._getFormatConfig(t)):A,R="",t.inline||(R=V("<button>").attr({type:"button",class:"ui-datepicker-close ui-state-default ui-priority-primary ui-corner-all","data-handler":"hide","data-event":"click"}).text(this._get(t,"closeText"))[0].outerHTML),F="",E&&(F=V("<div class='ui-datepicker-buttonpane ui-widget-content'>").append(N?R:"").append(this._isInRange(t,W)?V("<button>").attr({type:"button",class:"ui-datepicker-current ui-state-default ui-priority-secondary ui-corner-all","data-handler":"today","data-event":"click"}).text(A):"").append(N?"":R)[0].outerHTML),n=parseInt(this._get(t,"firstDay"),10),n=isNaN(n)?0:n,o=this._get(t,"showWeek"),a=this._get(t,"dayNames"),r=this._get(t,"dayNamesMin"),l=this._get(t,"monthNames"),h=this._get(t,"monthNamesShort"),c=this._get(t,"beforeShowDay"),u=this._get(t,"showOtherMonths"),d=this._get(t,"selectOtherMonths"),p=this._getDefaultDate(t),f="",m=0;m<L[0];m++){for(_="",this.maxRows=4,v=0;v<L[1];v++){if(b=this._daylightSavingAdjust(new Date(U,K,t.selectedDay)),y=" ui-corner-all",w="",Y){if(w+="<div class='ui-datepicker-group",1<L[1])switch(v){case 0:w+=" ui-datepicker-group-first",y=" ui-corner-"+(N?"right":"left");break;case L[1]-1:w+=" ui-datepicker-group-last",y=" ui-corner-"+(N?"left":"right");break;default:w+=" ui-datepicker-group-middle",y=""}w+="'>"}for(w+="<div class='ui-datepicker-header ui-widget-header ui-helper-clearfix"+y+"'>"+(/all|left/.test(y)&&0===m?N?s:i:"")+(/all|right/.test(y)&&0===m?N?i:s:"")+this._generateMonthYearHeader(t,K,U,j,q,0<m||0<v,l,h)+"</div><table class='ui-datepicker-calendar'><thead><tr>",x=o?"<th class='ui-datepicker-week-col'>"+this._get(t,"weekHeader")+"</th>":"",g=0;g<7;g++)x+="<th scope='col'"+(5<=(g+n+6)%7?" class='ui-datepicker-week-end'":"")+"><span title='"+a[k=(g+n)%7]+"'>"+r[k]+"</span></th>";for(w+=x+"</tr></thead><tbody>",D=this._getDaysInMonth(U,K),U===t.selectedYear&&K===t.selectedMonth&&(t.selectedDay=Math.min(t.selectedDay,D)),C=(this._getFirstDayOfMonth(U,K)-n+7)%7,D=Math.ceil((C+D)/7),I=Y&&this.maxRows>D?this.maxRows:D,this.maxRows=I,T=this._daylightSavingAdjust(new Date(U,K,1-C)),P=0;P<I;P++){for(w+="<tr>",M=o?"<td class='ui-datepicker-week-col'>"+this._get(t,"calculateWeek")(T)+"</td>":"",g=0;g<7;g++)S=c?c.apply(t.input?t.input[0]:null,[T]):[!0,""],z=(H=T.getMonth()!==K)&&!d||!S[0]||j&&T<j||q&&q<T,M+="<td class='"+(5<=(g+n+6)%7?" ui-datepicker-week-end":"")+(H?" ui-datepicker-other-month":"")+(T.getTime()===b.getTime()&&K===t.selectedMonth&&t._keyEvent||p.getTime()===T.getTime()&&p.getTime()===b.getTime()?" "+this._dayOverClass:"")+(z?" "+this._unselectableClass+" ui-state-disabled":"")+(H&&!u?"":" "+S[1]+(T.getTime()===B.getTime()?" "+this._currentClass:"")+(T.getTime()===O.getTime()?" ui-datepicker-today":""))+"'"+(H&&!u||!S[2]?"":" title='"+S[2].replace(/'/g,"'")+"'")+(z?"":" data-handler='selectDay' data-event='click' data-month='"+T.getMonth()+"' data-year='"+T.getFullYear()+"'")+">"+(H&&!u?" ":z?"<span class='ui-state-default'>"+T.getDate()+"</span>":"<a class='ui-state-default"+(T.getTime()===O.getTime()?" ui-state-highlight":"")+(T.getTime()===B.getTime()?" ui-state-active":"")+(H?" ui-priority-secondary":"")+"' href='#' aria-current='"+(T.getTime()===B.getTime()?"true":"false")+"' data-date='"+T.getDate()+"'>"+T.getDate()+"</a>")+"</td>",T.setDate(T.getDate()+1),T=this._daylightSavingAdjust(T);w+=M+"</tr>"}11<++K&&(K=0,U++),_+=w+="</tbody></table>"+(Y?"</div>"+(0<L[0]&&v===L[1]-1?"<div class='ui-datepicker-row-break'></div>":""):"")}f+=_}return f+=F,t._keyEvent=!1,f},_generateMonthYearHeader:function(t,e,i,s,n,o,a,r){var l,h,c,u,d,p,f=this._get(t,"changeMonth"),g=this._get(t,"changeYear"),m=this._get(t,"showMonthAfterYear"),_=this._get(t,"selectMonthLabel"),v=this._get(t,"selectYearLabel"),b="<div class='ui-datepicker-title'>",y="";if(o||!f)y+="<span class='ui-datepicker-month'>"+a[e]+"</span>";else{for(l=s&&s.getFullYear()===i,h=n&&n.getFullYear()===i,y+="<select class='ui-datepicker-month' aria-label='"+_+"' data-handler='selectMonth' data-event='change'>",c=0;c<12;c++)(!l||c>=s.getMonth())&&(!h||c<=n.getMonth())&&(y+="<option value='"+c+"'"+(c===e?" selected='selected'":"")+">"+r[c]+"</option>");y+="</select>"}if(m||(b+=y+(!o&&f&&g?"":" ")),!t.yearshtml)if(t.yearshtml="",o||!g)b+="<span class='ui-datepicker-year'>"+i+"</span>";else{for(a=this._get(t,"yearRange").split(":"),u=(new Date).getFullYear(),d=(_=function(t){t=t.match(/c[+\-].*/)?i+parseInt(t.substring(1),10):t.match(/[+\-].*/)?u+parseInt(t,10):parseInt(t,10);return isNaN(t)?u:t})(a[0]),p=Math.max(d,_(a[1]||"")),d=s?Math.max(d,s.getFullYear()):d,p=n?Math.min(p,n.getFullYear()):p,t.yearshtml+="<select class='ui-datepicker-year' aria-label='"+v+"' data-handler='selectYear' data-event='change'>";d<=p;d++)t.yearshtml+="<option value='"+d+"'"+(d===i?" selected='selected'":"")+">"+d+"</option>";t.yearshtml+="</select>",b+=t.yearshtml,t.yearshtml=null}return b+=this._get(t,"yearSuffix"),m&&(b+=(!o&&f&&g?"":" ")+y),b+="</div>"},_adjustInstDate:function(t,e,i){var s=t.selectedYear+("Y"===i?e:0),n=t.selectedMonth+("M"===i?e:0),e=Math.min(t.selectedDay,this._getDaysInMonth(s,n))+("D"===i?e:0),e=this._restrictMinMax(t,this._daylightSavingAdjust(new Date(s,n,e)));t.selectedDay=e.getDate(),t.drawMonth=t.selectedMonth=e.getMonth(),t.drawYear=t.selectedYear=e.getFullYear(),"M"!==i&&"Y"!==i||this._notifyChange(t)},_restrictMinMax:function(t,e){var i=this._getMinMaxDate(t,"min"),t=this._getMinMaxDate(t,"max"),e=i&&e<i?i:e;return t&&t<e?t:e},_notifyChange:function(t){var e=this._get(t,"onChangeMonthYear");e&&e.apply(t.input?t.input[0]:null,[t.selectedYear,t.selectedMonth+1,t])},_getNumberOfMonths:function(t){t=this._get(t,"numberOfMonths");return null==t?[1,1]:"number"==typeof t?[1,t]:t},_getMinMaxDate:function(t,e){return this._determineDate(t,this._get(t,e+"Date"),null)},_getDaysInMonth:function(t,e){return 32-this._daylightSavingAdjust(new Date(t,e,32)).getDate()},_getFirstDayOfMonth:function(t,e){return new Date(t,e,1).getDay()},_canAdjustMonth:function(t,e,i,s){var n=this._getNumberOfMonths(t),n=this._daylightSavingAdjust(new Date(i,s+(e<0?e:n[0]*n[1]),1));return e<0&&n.setDate(this._getDaysInMonth(n.getFullYear(),n.getMonth())),this._isInRange(t,n)},_isInRange:function(t,e){var i=this._getMinMaxDate(t,"min"),s=this._getMinMaxDate(t,"max"),n=null,o=null,a=this._get(t,"yearRange");return a&&(t=a.split(":"),a=(new Date).getFullYear(),n=parseInt(t[0],10),o=parseInt(t[1],10),t[0].match(/[+\-].*/)&&(n+=a),t[1].match(/[+\-].*/)&&(o+=a)),(!i||e.getTime()>=i.getTime())&&(!s||e.getTime()<=s.getTime())&&(!n||e.getFullYear()>=n)&&(!o||e.getFullYear()<=o)},_getFormatConfig:function(t){var e=this._get(t,"shortYearCutoff");return{shortYearCutoff:e="string"!=typeof e?e:(new Date).getFullYear()%100+parseInt(e,10),dayNamesShort:this._get(t,"dayNamesShort"),dayNames:this._get(t,"dayNames"),monthNamesShort:this._get(t,"monthNamesShort"),monthNames:this._get(t,"monthNames")}},_formatDate:function(t,e,i,s){e||(t.currentDay=t.selectedDay,t.currentMonth=t.selectedMonth,t.currentYear=t.selectedYear);e=e?"object"==typeof e?e:this._daylightSavingAdjust(new Date(s,i,e)):this._daylightSavingAdjust(new Date(t.currentYear,t.currentMonth,t.currentDay));return this.formatDate(this._get(t,"dateFormat"),e,this._getFormatConfig(t))}}),V.fn.datepicker=function(t){if(!this.length)return this;V.datepicker.initialized||(V(document).on("mousedown",V.datepicker._checkExternalClick),V.datepicker.initialized=!0),0===V("#"+V.datepicker._mainDivId).length&&V("body").append(V.datepicker.dpDiv);var e=Array.prototype.slice.call(arguments,1);return"string"==typeof t&&("isDisabled"===t||"getDate"===t||"widget"===t)||"option"===t&&2===arguments.length&&"string"==typeof arguments[1]?V.datepicker["_"+t+"Datepicker"].apply(V.datepicker,[this[0]].concat(e)):this.each(function(){"string"==typeof t?V.datepicker["_"+t+"Datepicker"].apply(V.datepicker,[this].concat(e)):V.datepicker._attachDatepicker(this,t)})},V.datepicker=new st,V.datepicker.initialized=!1,V.datepicker.uuid=(new Date).getTime(),V.datepicker.version="1.13.1";V.datepicker,V.ui.ie=!!/msie [\w.]+/.exec(navigator.userAgent.toLowerCase());var rt=!1;V(document).on("mouseup",function(){rt=!1});V.widget("ui.mouse",{version:"1.13.1",options:{cancel:"input, textarea, button, select, option",distance:1,delay:0},_mouseInit:function(){var e=this;this.element.on("mousedown."+this.widgetName,function(t){return e._mouseDown(t)}).on("click."+this.widgetName,function(t){if(!0===V.data(t.target,e.widgetName+".preventClickEvent"))return V.removeData(t.target,e.widgetName+".preventClickEvent"),t.stopImmediatePropagation(),!1}),this.started=!1},_mouseDestroy:function(){this.element.off("."+this.widgetName),this._mouseMoveDelegate&&this.document.off("mousemove."+this.widgetName,this._mouseMoveDelegate).off("mouseup."+this.widgetName,this._mouseUpDelegate)},_mouseDown:function(t){if(!rt){this._mouseMoved=!1,this._mouseStarted&&this._mouseUp(t),this._mouseDownEvent=t;var e=this,i=1===t.which,s=!("string"!=typeof this.options.cancel||!t.target.nodeName)&&V(t.target).closest(this.options.cancel).length;return i&&!s&&this._mouseCapture(t)?(this.mouseDelayMet=!this.options.delay,this.mouseDelayMet||(this._mouseDelayTimer=setTimeout(function(){e.mouseDelayMet=!0},this.options.delay)),this._mouseDistanceMet(t)&&this._mouseDelayMet(t)&&(this._mouseStarted=!1!==this._mouseStart(t),!this._mouseStarted)?(t.preventDefault(),!0):(!0===V.data(t.target,this.widgetName+".preventClickEvent")&&V.removeData(t.target,this.widgetName+".preventClickEvent"),this._mouseMoveDelegate=function(t){return e._mouseMove(t)},this._mouseUpDelegate=function(t){return e._mouseUp(t)},this.document.on("mousemove."+this.widgetName,this._mouseMoveDelegate).on("mouseup."+this.widgetName,this._mouseUpDelegate),t.preventDefault(),rt=!0)):!0}},_mouseMove:function(t){if(this._mouseMoved){if(V.ui.ie&&(!document.documentMode||document.documentMode<9)&&!t.button)return this._mouseUp(t);if(!t.which)if(t.originalEvent.altKey||t.originalEvent.ctrlKey||t.originalEvent.metaKey||t.originalEvent.shiftKey)this.ignoreMissingWhich=!0;else if(!this.ignoreMissingWhich)return this._mouseUp(t)}return(t.which||t.button)&&(this._mouseMoved=!0),this._mouseStarted?(this._mouseDrag(t),t.preventDefault()):(this._mouseDistanceMet(t)&&this._mouseDelayMet(t)&&(this._mouseStarted=!1!==this._mouseStart(this._mouseDownEvent,t),this._mouseStarted?this._mouseDrag(t):this._mouseUp(t)),!this._mouseStarted)},_mouseUp:function(t){this.document.off("mousemove."+this.widgetName,this._mouseMoveDelegate).off("mouseup."+this.widgetName,this._mouseUpDelegate),this._mouseStarted&&(this._mouseStarted=!1,t.target===this._mouseDownEvent.target&&V.data(t.target,this.widgetName+".preventClickEvent",!0),this._mouseStop(t)),this._mouseDelayTimer&&(clearTimeout(this._mouseDelayTimer),delete this._mouseDelayTimer),this.ignoreMissingWhich=!1,rt=!1,t.preventDefault()},_mouseDistanceMet:function(t){return Math.max(Math.abs(this._mouseDownEvent.pageX-t.pageX),Math.abs(this._mouseDownEvent.pageY-t.pageY))>=this.options.distance},_mouseDelayMet:function(){return this.mouseDelayMet},_mouseStart:function(){},_mouseDrag:function(){},_mouseStop:function(){},_mouseCapture:function(){return!0}}),V.ui.plugin={add:function(t,e,i){var s,n=V.ui[t].prototype;for(s in i)n.plugins[s]=n.plugins[s]||[],n.plugins[s].push([e,i[s]])},call:function(t,e,i,s){var n,o=t.plugins[e];if(o&&(s||t.element[0].parentNode&&11!==t.element[0].parentNode.nodeType))for(n=0;n<o.length;n++)t.options[o[n][0]]&&o[n][1].apply(t.element,i)}},V.ui.safeBlur=function(t){t&&"body"!==t.nodeName.toLowerCase()&&V(t).trigger("blur")};V.widget("ui.draggable",V.ui.mouse,{version:"1.13.1",widgetEventPrefix:"drag",options:{addClasses:!0,appendTo:"parent",axis:!1,connectToSortable:!1,containment:!1,cursor:"auto",cursorAt:!1,grid:!1,handle:!1,helper:"original",iframeFix:!1,opacity:!1,refreshPositions:!1,revert:!1,revertDuration:500,scope:"default",scroll:!0,scrollSensitivity:20,scrollSpeed:20,snap:!1,snapMode:"both",snapTolerance:20,stack:!1,zIndex:!1,drag:null,start:null,stop:null},_create:function(){"original"===this.options.helper&&this._setPositionRelative(),this.options.addClasses&&this._addClass("ui-draggable"),this._setHandleClassName(),this._mouseInit()},_setOption:function(t,e){this._super(t,e),"handle"===t&&(this._removeHandleClassName(),this._setHandleClassName())},_destroy:function(){(this.helper||this.element).is(".ui-draggable-dragging")?this.destroyOnClear=!0:(this._removeHandleClassName(),this._mouseDestroy())},_mouseCapture:function(t){var e=this.options;return!(this.helper||e.disabled||0<V(t.target).closest(".ui-resizable-handle").length)&&(this.handle=this._getHandle(t),!!this.handle&&(this._blurActiveElement(t),this._blockFrames(!0===e.iframeFix?"iframe":e.iframeFix),!0))},_blockFrames:function(t){this.iframeBlocks=this.document.find(t).map(function(){var t=V(this);return V("<div>").css("position","absolute").appendTo(t.parent()).outerWidth(t.outerWidth()).outerHeight(t.outerHeight()).offset(t.offset())[0]})},_unblockFrames:function(){this.iframeBlocks&&(this.iframeBlocks.remove(),delete this.iframeBlocks)},_blurActiveElement:function(t){var e=V.ui.safeActiveElement(this.document[0]);V(t.target).closest(e).length||V.ui.safeBlur(e)},_mouseStart:function(t){var e=this.options;return this.helper=this._createHelper(t),this._addClass(this.helper,"ui-draggable-dragging"),this._cacheHelperProportions(),V.ui.ddmanager&&(V.ui.ddmanager.current=this),this._cacheMargins(),this.cssPosition=this.helper.css("position"),this.scrollParent=this.helper.scrollParent(!0),this.offsetParent=this.helper.offsetParent(),this.hasFixedAncestor=0<this.helper.parents().filter(function(){return"fixed"===V(this).css("position")}).length,this.positionAbs=this.element.offset(),this._refreshOffsets(t),this.originalPosition=this.position=this._generatePosition(t,!1),this.originalPageX=t.pageX,this.originalPageY=t.pageY,e.cursorAt&&this._adjustOffsetFromHelper(e.cursorAt),this._setContainment(),!1===this._trigger("start",t)?(this._clear(),!1):(this._cacheHelperProportions(),V.ui.ddmanager&&!e.dropBehaviour&&V.ui.ddmanager.prepareOffsets(this,t),this._mouseDrag(t,!0),V.ui.ddmanager&&V.ui.ddmanager.dragStart(this,t),!0)},_refreshOffsets:function(t){this.offset={top:this.positionAbs.top-this.margins.top,left:this.positionAbs.left-this.margins.left,scroll:!1,parent:this._getParentOffset(),relative:this._getRelativeOffset()},this.offset.click={left:t.pageX-this.offset.left,top:t.pageY-this.offset.top}},_mouseDrag:function(t,e){if(this.hasFixedAncestor&&(this.offset.parent=this._getParentOffset()),this.position=this._generatePosition(t,!0),this.positionAbs=this._convertPositionTo("absolute"),!e){e=this._uiHash();if(!1===this._trigger("drag",t,e))return this._mouseUp(new V.Event("mouseup",t)),!1;this.position=e.position}return this.helper[0].style.left=this.position.left+"px",this.helper[0].style.top=this.position.top+"px",V.ui.ddmanager&&V.ui.ddmanager.drag(this,t),!1},_mouseStop:function(t){var e=this,i=!1;return V.ui.ddmanager&&!this.options.dropBehaviour&&(i=V.ui.ddmanager.drop(this,t)),this.dropped&&(i=this.dropped,this.dropped=!1),"invalid"===this.options.revert&&!i||"valid"===this.options.revert&&i||!0===this.options.revert||"function"==typeof this.options.revert&&this.options.revert.call(this.element,i)?V(this.helper).animate(this.originalPosition,parseInt(this.options.revertDuration,10),function(){!1!==e._trigger("stop",t)&&e._clear()}):!1!==this._trigger("stop",t)&&this._clear(),!1},_mouseUp:function(t){return this._unblockFrames(),V.ui.ddmanager&&V.ui.ddmanager.dragStop(this,t),this.handleElement.is(t.target)&&this.element.trigger("focus"),V.ui.mouse.prototype._mouseUp.call(this,t)},cancel:function(){return this.helper.is(".ui-draggable-dragging")?this._mouseUp(new V.Event("mouseup",{target:this.element[0]})):this._clear(),this},_getHandle:function(t){return!this.options.handle||!!V(t.target).closest(this.element.find(this.options.handle)).length},_setHandleClassName:function(){this.handleElement=this.options.handle?this.element.find(this.options.handle):this.element,this._addClass(this.handleElement,"ui-draggable-handle")},_removeHandleClassName:function(){this._removeClass(this.handleElement,"ui-draggable-handle")},_createHelper:function(t){var e=this.options,i="function"==typeof e.helper,t=i?V(e.helper.apply(this.element[0],[t])):"clone"===e.helper?this.element.clone().removeAttr("id"):this.element;return t.parents("body").length||t.appendTo("parent"===e.appendTo?this.element[0].parentNode:e.appendTo),i&&t[0]===this.element[0]&&this._setPositionRelative(),t[0]===this.element[0]||/(fixed|absolute)/.test(t.css("position"))||t.css("position","absolute"),t},_setPositionRelative:function(){/^(?:r|a|f)/.test(this.element.css("position"))||(this.element[0].style.position="relative")},_adjustOffsetFromHelper:function(t){"string"==typeof t&&(t=t.split(" ")),"left"in(t=Array.isArray(t)?{left:+t[0],top:+t[1]||0}:t)&&(this.offset.click.left=t.left+this.margins.left),"right"in t&&(this.offset.click.left=this.helperProportions.width-t.right+this.margins.left),"top"in t&&(this.offset.click.top=t.top+this.margins.top),"bottom"in t&&(this.offset.click.top=this.helperProportions.height-t.bottom+this.margins.top)},_isRootNode:function(t){return/(html|body)/i.test(t.tagName)||t===this.document[0]},_getParentOffset:function(){var t=this.offsetParent.offset(),e=this.document[0];return"absolute"===this.cssPosition&&this.scrollParent[0]!==e&&V.contains(this.scrollParent[0],this.offsetParent[0])&&(t.left+=this.scrollParent.scrollLeft(),t.top+=this.scrollParent.scrollTop()),{top:(t=this._isRootNode(this.offsetParent[0])?{top:0,left:0}:t).top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:t.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if("relative"!==this.cssPosition)return{top:0,left:0};var t=this.element.position(),e=this._isRootNode(this.scrollParent[0]);return{top:t.top-(parseInt(this.helper.css("top"),10)||0)+(e?0:this.scrollParent.scrollTop()),left:t.left-(parseInt(this.helper.css("left"),10)||0)+(e?0:this.scrollParent.scrollLeft())}},_cacheMargins:function(){this.margins={left:parseInt(this.element.css("marginLeft"),10)||0,top:parseInt(this.element.css("marginTop"),10)||0,right:parseInt(this.element.css("marginRight"),10)||0,bottom:parseInt(this.element.css("marginBottom"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var t,e,i,s=this.options,n=this.document[0];this.relativeContainer=null,s.containment?"window"!==s.containment?"document"!==s.containment?s.containment.constructor!==Array?("parent"===s.containment&&(s.containment=this.helper[0].parentNode),(i=(e=V(s.containment))[0])&&(t=/(scroll|auto)/.test(e.css("overflow")),this.containment=[(parseInt(e.css("borderLeftWidth"),10)||0)+(parseInt(e.css("paddingLeft"),10)||0),(parseInt(e.css("borderTopWidth"),10)||0)+(parseInt(e.css("paddingTop"),10)||0),(t?Math.max(i.scrollWidth,i.offsetWidth):i.offsetWidth)-(parseInt(e.css("borderRightWidth"),10)||0)-(parseInt(e.css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left-this.margins.right,(t?Math.max(i.scrollHeight,i.offsetHeight):i.offsetHeight)-(parseInt(e.css("borderBottomWidth"),10)||0)-(parseInt(e.css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top-this.margins.bottom],this.relativeContainer=e)):this.containment=s.containment:this.containment=[0,0,V(n).width()-this.helperProportions.width-this.margins.left,(V(n).height()||n.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top]:this.containment=[V(window).scrollLeft()-this.offset.relative.left-this.offset.parent.left,V(window).scrollTop()-this.offset.relative.top-this.offset.parent.top,V(window).scrollLeft()+V(window).width()-this.helperProportions.width-this.margins.left,V(window).scrollTop()+(V(window).height()||n.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top]:this.containment=null},_convertPositionTo:function(t,e){e=e||this.position;var i="absolute"===t?1:-1,t=this._isRootNode(this.scrollParent[0]);return{top:e.top+this.offset.relative.top*i+this.offset.parent.top*i-("fixed"===this.cssPosition?-this.offset.scroll.top:t?0:this.offset.scroll.top)*i,left:e.left+this.offset.relative.left*i+this.offset.parent.left*i-("fixed"===this.cssPosition?-this.offset.scroll.left:t?0:this.offset.scroll.left)*i}},_generatePosition:function(t,e){var i,s=this.options,n=this._isRootNode(this.scrollParent[0]),o=t.pageX,a=t.pageY;return n&&this.offset.scroll||(this.offset.scroll={top:this.scrollParent.scrollTop(),left:this.scrollParent.scrollLeft()}),e&&(this.containment&&(i=this.relativeContainer?(i=this.relativeContainer.offset(),[this.containment[0]+i.left,this.containment[1]+i.top,this.containment[2]+i.left,this.containment[3]+i.top]):this.containment,t.pageX-this.offset.click.left<i[0]&&(o=i[0]+this.offset.click.left),t.pageY-this.offset.click.top<i[1]&&(a=i[1]+this.offset.click.top),t.pageX-this.offset.click.left>i[2]&&(o=i[2]+this.offset.click.left),t.pageY-this.offset.click.top>i[3]&&(a=i[3]+this.offset.click.top)),s.grid&&(t=s.grid[1]?this.originalPageY+Math.round((a-this.originalPageY)/s.grid[1])*s.grid[1]:this.originalPageY,a=!i||t-this.offset.click.top>=i[1]||t-this.offset.click.top>i[3]?t:t-this.offset.click.top>=i[1]?t-s.grid[1]:t+s.grid[1],t=s.grid[0]?this.originalPageX+Math.round((o-this.originalPageX)/s.grid[0])*s.grid[0]:this.originalPageX,o=!i||t-this.offset.click.left>=i[0]||t-this.offset.click.left>i[2]?t:t-this.offset.click.left>=i[0]?t-s.grid[0]:t+s.grid[0]),"y"===s.axis&&(o=this.originalPageX),"x"===s.axis&&(a=this.originalPageY)),{top:a-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+("fixed"===this.cssPosition?-this.offset.scroll.top:n?0:this.offset.scroll.top),left:o-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+("fixed"===this.cssPosition?-this.offset.scroll.left:n?0:this.offset.scroll.left)}},_clear:function(){this._removeClass(this.helper,"ui-draggable-dragging"),this.helper[0]===this.element[0]||this.cancelHelperRemoval||this.helper.remove(),this.helper=null,this.cancelHelperRemoval=!1,this.destroyOnClear&&this.destroy()},_trigger:function(t,e,i){return i=i||this._uiHash(),V.ui.plugin.call(this,t,[e,i,this],!0),/^(drag|start|stop)/.test(t)&&(this.positionAbs=this._convertPositionTo("absolute"),i.offset=this.positionAbs),V.Widget.prototype._trigger.call(this,t,e,i)},plugins:{},_uiHash:function(){return{helper:this.helper,position:this.position,originalPosition:this.originalPosition,offset:this.positionAbs}}}),V.ui.plugin.add("draggable","connectToSortable",{start:function(e,t,i){var s=V.extend({},t,{item:i.element});i.sortables=[],V(i.options.connectToSortable).each(function(){var t=V(this).sortable("instance");t&&!t.options.disabled&&(i.sortables.push(t),t.refreshPositions(),t._trigger("activate",e,s))})},stop:function(e,t,i){var s=V.extend({},t,{item:i.element});i.cancelHelperRemoval=!1,V.each(i.sortables,function(){var t=this;t.isOver?(t.isOver=0,i.cancelHelperRemoval=!0,t.cancelHelperRemoval=!1,t._storedCSS={position:t.placeholder.css("position"),top:t.placeholder.css("top"),left:t.placeholder.css("left")},t._mouseStop(e),t.options.helper=t.options._helper):(t.cancelHelperRemoval=!0,t._trigger("deactivate",e,s))})},drag:function(i,s,n){V.each(n.sortables,function(){var t=!1,e=this;e.positionAbs=n.positionAbs,e.helperProportions=n.helperProportions,e.offset.click=n.offset.click,e._intersectsWith(e.containerCache)&&(t=!0,V.each(n.sortables,function(){return this.positionAbs=n.positionAbs,this.helperProportions=n.helperProportions,this.offset.click=n.offset.click,t=this!==e&&this._intersectsWith(this.containerCache)&&V.contains(e.element[0],this.element[0])?!1:t})),t?(e.isOver||(e.isOver=1,n._parent=s.helper.parent(),e.currentItem=s.helper.appendTo(e.element).data("ui-sortable-item",!0),e.options._helper=e.options.helper,e.options.helper=function(){return s.helper[0]},i.target=e.currentItem[0],e._mouseCapture(i,!0),e._mouseStart(i,!0,!0),e.offset.click.top=n.offset.click.top,e.offset.click.left=n.offset.click.left,e.offset.parent.left-=n.offset.parent.left-e.offset.parent.left,e.offset.parent.top-=n.offset.parent.top-e.offset.parent.top,n._trigger("toSortable",i),n.dropped=e.element,V.each(n.sortables,function(){this.refreshPositions()}),n.currentItem=n.element,e.fromOutside=n),e.currentItem&&(e._mouseDrag(i),s.position=e.position)):e.isOver&&(e.isOver=0,e.cancelHelperRemoval=!0,e.options._revert=e.options.revert,e.options.revert=!1,e._trigger("out",i,e._uiHash(e)),e._mouseStop(i,!0),e.options.revert=e.options._revert,e.options.helper=e.options._helper,e.placeholder&&e.placeholder.remove(),s.helper.appendTo(n._parent),n._refreshOffsets(i),s.position=n._generatePosition(i,!0),n._trigger("fromSortable",i),n.dropped=!1,V.each(n.sortables,function(){this.refreshPositions()}))})}}),V.ui.plugin.add("draggable","cursor",{start:function(t,e,i){var s=V("body"),i=i.options;s.css("cursor")&&(i._cursor=s.css("cursor")),s.css("cursor",i.cursor)},stop:function(t,e,i){i=i.options;i._cursor&&V("body").css("cursor",i._cursor)}}),V.ui.plugin.add("draggable","opacity",{start:function(t,e,i){e=V(e.helper),i=i.options;e.css("opacity")&&(i._opacity=e.css("opacity")),e.css("opacity",i.opacity)},stop:function(t,e,i){i=i.options;i._opacity&&V(e.helper).css("opacity",i._opacity)}}),V.ui.plugin.add("draggable","scroll",{start:function(t,e,i){i.scrollParentNotHidden||(i.scrollParentNotHidden=i.helper.scrollParent(!1)),i.scrollParentNotHidden[0]!==i.document[0]&&"HTML"!==i.scrollParentNotHidden[0].tagName&&(i.overflowOffset=i.scrollParentNotHidden.offset())},drag:function(t,e,i){var s=i.options,n=!1,o=i.scrollParentNotHidden[0],a=i.document[0];o!==a&&"HTML"!==o.tagName?(s.axis&&"x"===s.axis||(i.overflowOffset.top+o.offsetHeight-t.pageY<s.scrollSensitivity?o.scrollTop=n=o.scrollTop+s.scrollSpeed:t.pageY-i.overflowOffset.top<s.scrollSensitivity&&(o.scrollTop=n=o.scrollTop-s.scrollSpeed)),s.axis&&"y"===s.axis||(i.overflowOffset.left+o.offsetWidth-t.pageX<s.scrollSensitivity?o.scrollLeft=n=o.scrollLeft+s.scrollSpeed:t.pageX-i.overflowOffset.left<s.scrollSensitivity&&(o.scrollLeft=n=o.scrollLeft-s.scrollSpeed))):(s.axis&&"x"===s.axis||(t.pageY-V(a).scrollTop()<s.scrollSensitivity?n=V(a).scrollTop(V(a).scrollTop()-s.scrollSpeed):V(window).height()-(t.pageY-V(a).scrollTop())<s.scrollSensitivity&&(n=V(a).scrollTop(V(a).scrollTop()+s.scrollSpeed))),s.axis&&"y"===s.axis||(t.pageX-V(a).scrollLeft()<s.scrollSensitivity?n=V(a).scrollLeft(V(a).scrollLeft()-s.scrollSpeed):V(window).width()-(t.pageX-V(a).scrollLeft())<s.scrollSensitivity&&(n=V(a).scrollLeft(V(a).scrollLeft()+s.scrollSpeed)))),!1!==n&&V.ui.ddmanager&&!s.dropBehaviour&&V.ui.ddmanager.prepareOffsets(i,t)}}),V.ui.plugin.add("draggable","snap",{start:function(t,e,i){var s=i.options;i.snapElements=[],V(s.snap.constructor!==String?s.snap.items||":data(ui-draggable)":s.snap).each(function(){var t=V(this),e=t.offset();this!==i.element[0]&&i.snapElements.push({item:this,width:t.outerWidth(),height:t.outerHeight(),top:e.top,left:e.left})})},drag:function(t,e,i){for(var s,n,o,a,r,l,h,c,u,d=i.options,p=d.snapTolerance,f=e.offset.left,g=f+i.helperProportions.width,m=e.offset.top,_=m+i.helperProportions.height,v=i.snapElements.length-1;0<=v;v--)l=(r=i.snapElements[v].left-i.margins.left)+i.snapElements[v].width,c=(h=i.snapElements[v].top-i.margins.top)+i.snapElements[v].height,g<r-p||l+p<f||_<h-p||c+p<m||!V.contains(i.snapElements[v].item.ownerDocument,i.snapElements[v].item)?(i.snapElements[v].snapping&&i.options.snap.release&&i.options.snap.release.call(i.element,t,V.extend(i._uiHash(),{snapItem:i.snapElements[v].item})),i.snapElements[v].snapping=!1):("inner"!==d.snapMode&&(s=Math.abs(h-_)<=p,n=Math.abs(c-m)<=p,o=Math.abs(r-g)<=p,a=Math.abs(l-f)<=p,s&&(e.position.top=i._convertPositionTo("relative",{top:h-i.helperProportions.height,left:0}).top),n&&(e.position.top=i._convertPositionTo("relative",{top:c,left:0}).top),o&&(e.position.left=i._convertPositionTo("relative",{top:0,left:r-i.helperProportions.width}).left),a&&(e.position.left=i._convertPositionTo("relative",{top:0,left:l}).left)),u=s||n||o||a,"outer"!==d.snapMode&&(s=Math.abs(h-m)<=p,n=Math.abs(c-_)<=p,o=Math.abs(r-f)<=p,a=Math.abs(l-g)<=p,s&&(e.position.top=i._convertPositionTo("relative",{top:h,left:0}).top),n&&(e.position.top=i._convertPositionTo("relative",{top:c-i.helperProportions.height,left:0}).top),o&&(e.position.left=i._convertPositionTo("relative",{top:0,left:r}).left),a&&(e.position.left=i._convertPositionTo("relative",{top:0,left:l-i.helperProportions.width}).left)),!i.snapElements[v].snapping&&(s||n||o||a||u)&&i.options.snap.snap&&i.options.snap.snap.call(i.element,t,V.extend(i._uiHash(),{snapItem:i.snapElements[v].item})),i.snapElements[v].snapping=s||n||o||a||u)}}),V.ui.plugin.add("draggable","stack",{start:function(t,e,i){var s,i=i.options,i=V.makeArray(V(i.stack)).sort(function(t,e){return(parseInt(V(t).css("zIndex"),10)||0)-(parseInt(V(e).css("zIndex"),10)||0)});i.length&&(s=parseInt(V(i[0]).css("zIndex"),10)||0,V(i).each(function(t){V(this).css("zIndex",s+t)}),this.css("zIndex",s+i.length))}}),V.ui.plugin.add("draggable","zIndex",{start:function(t,e,i){e=V(e.helper),i=i.options;e.css("zIndex")&&(i._zIndex=e.css("zIndex")),e.css("zIndex",i.zIndex)},stop:function(t,e,i){i=i.options;i._zIndex&&V(e.helper).css("zIndex",i._zIndex)}});V.ui.draggable;V.widget("ui.resizable",V.ui.mouse,{version:"1.13.1",widgetEventPrefix:"resize",options:{alsoResize:!1,animate:!1,animateDuration:"slow",animateEasing:"swing",aspectRatio:!1,autoHide:!1,classes:{"ui-resizable-se":"ui-icon ui-icon-gripsmall-diagonal-se"},containment:!1,ghost:!1,grid:!1,handles:"e,s,se",helper:!1,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:90,resize:null,start:null,stop:null},_num:function(t){return parseFloat(t)||0},_isNumber:function(t){return!isNaN(parseFloat(t))},_hasScroll:function(t,e){if("hidden"===V(t).css("overflow"))return!1;var i=e&&"left"===e?"scrollLeft":"scrollTop",e=!1;if(0<t[i])return!0;try{t[i]=1,e=0<t[i],t[i]=0}catch(t){}return e},_create:function(){var t,e=this.options,i=this;this._addClass("ui-resizable"),V.extend(this,{_aspectRatio:!!e.aspectRatio,aspectRatio:e.aspectRatio,originalElement:this.element,_proportionallyResizeElements:[],_helper:e.helper||e.ghost||e.animate?e.helper||"ui-resizable-helper":null}),this.element[0].nodeName.match(/^(canvas|textarea|input|select|button|img)$/i)&&(this.element.wrap(V("<div class='ui-wrapper'></div>").css({overflow:"hidden",position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")})),this.element=this.element.parent().data("ui-resizable",this.element.resizable("instance")),this.elementIsWrapper=!0,t={marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom"),marginLeft:this.originalElement.css("marginLeft")},this.element.css(t),this.originalElement.css("margin",0),this.originalResizeStyle=this.originalElement.css("resize"),this.originalElement.css("resize","none"),this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"})),this.originalElement.css(t),this._proportionallyResize()),this._setupHandles(),e.autoHide&&V(this.element).on("mouseenter",function(){e.disabled||(i._removeClass("ui-resizable-autohide"),i._handles.show())}).on("mouseleave",function(){e.disabled||i.resizing||(i._addClass("ui-resizable-autohide"),i._handles.hide())}),this._mouseInit()},_destroy:function(){this._mouseDestroy(),this._addedHandles.remove();function t(t){V(t).removeData("resizable").removeData("ui-resizable").off(".resizable")}var e;return this.elementIsWrapper&&(t(this.element),e=this.element,this.originalElement.css({position:e.css("position"),width:e.outerWidth(),height:e.outerHeight(),top:e.css("top"),left:e.css("left")}).insertAfter(e),e.remove()),this.originalElement.css("resize",this.originalResizeStyle),t(this.originalElement),this},_setOption:function(t,e){switch(this._super(t,e),t){case"handles":this._removeHandles(),this._setupHandles();break;case"aspectRatio":this._aspectRatio=!!e}},_setupHandles:function(){var t,e,i,s,n,o=this.options,a=this;if(this.handles=o.handles||(V(".ui-resizable-handle",this.element).length?{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"}:"e,s,se"),this._handles=V(),this._addedHandles=V(),this.handles.constructor===String)for("all"===this.handles&&(this.handles="n,e,s,w,se,sw,ne,nw"),i=this.handles.split(","),this.handles={},e=0;e<i.length;e++)s="ui-resizable-"+(t=String.prototype.trim.call(i[e])),n=V("<div>"),this._addClass(n,"ui-resizable-handle "+s),n.css({zIndex:o.zIndex}),this.handles[t]=".ui-resizable-"+t,this.element.children(this.handles[t]).length||(this.element.append(n),this._addedHandles=this._addedHandles.add(n));this._renderAxis=function(t){var e,i,s;for(e in t=t||this.element,this.handles)this.handles[e].constructor===String?this.handles[e]=this.element.children(this.handles[e]).first().show():(this.handles[e].jquery||this.handles[e].nodeType)&&(this.handles[e]=V(this.handles[e]),this._on(this.handles[e],{mousedown:a._mouseDown})),this.elementIsWrapper&&this.originalElement[0].nodeName.match(/^(textarea|input|select|button)$/i)&&(i=V(this.handles[e],this.element),s=/sw|ne|nw|se|n|s/.test(e)?i.outerHeight():i.outerWidth(),i=["padding",/ne|nw|n/.test(e)?"Top":/se|sw|s/.test(e)?"Bottom":/^e$/.test(e)?"Right":"Left"].join(""),t.css(i,s),this._proportionallyResize()),this._handles=this._handles.add(this.handles[e])},this._renderAxis(this.element),this._handles=this._handles.add(this.element.find(".ui-resizable-handle")),this._handles.disableSelection(),this._handles.on("mouseover",function(){a.resizing||(this.className&&(n=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i)),a.axis=n&&n[1]?n[1]:"se")}),o.autoHide&&(this._handles.hide(),this._addClass("ui-resizable-autohide"))},_removeHandles:function(){this._addedHandles.remove()},_mouseCapture:function(t){var e,i,s=!1;for(e in this.handles)(i=V(this.handles[e])[0])!==t.target&&!V.contains(i,t.target)||(s=!0);return!this.options.disabled&&s},_mouseStart:function(t){var e,i,s=this.options,n=this.element;return this.resizing=!0,this._renderProxy(),e=this._num(this.helper.css("left")),i=this._num(this.helper.css("top")),s.containment&&(e+=V(s.containment).scrollLeft()||0,i+=V(s.containment).scrollTop()||0),this.offset=this.helper.offset(),this.position={left:e,top:i},this.size=this._helper?{width:this.helper.width(),height:this.helper.height()}:{width:n.width(),height:n.height()},this.originalSize=this._helper?{width:n.outerWidth(),height:n.outerHeight()}:{width:n.width(),height:n.height()},this.sizeDiff={width:n.outerWidth()-n.width(),height:n.outerHeight()-n.height()},this.originalPosition={left:e,top:i},this.originalMousePosition={left:t.pageX,top:t.pageY},this.aspectRatio="number"==typeof s.aspectRatio?s.aspectRatio:this.originalSize.width/this.originalSize.height||1,s=V(".ui-resizable-"+this.axis).css("cursor"),V("body").css("cursor","auto"===s?this.axis+"-resize":s),this._addClass("ui-resizable-resizing"),this._propagate("start",t),!0},_mouseDrag:function(t){var e=this.originalMousePosition,i=this.axis,s=t.pageX-e.left||0,e=t.pageY-e.top||0,i=this._change[i];return this._updatePrevProperties(),i&&(e=i.apply(this,[t,s,e]),this._updateVirtualBoundaries(t.shiftKey),(this._aspectRatio||t.shiftKey)&&(e=this._updateRatio(e,t)),e=this._respectSize(e,t),this._updateCache(e),this._propagate("resize",t),e=this._applyChanges(),!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize(),V.isEmptyObject(e)||(this._updatePrevProperties(),this._trigger("resize",t,this.ui()),this._applyChanges())),!1},_mouseStop:function(t){this.resizing=!1;var e,i,s,n=this.options,o=this;return this._helper&&(s=(e=(i=this._proportionallyResizeElements).length&&/textarea/i.test(i[0].nodeName))&&this._hasScroll(i[0],"left")?0:o.sizeDiff.height,i=e?0:o.sizeDiff.width,e={width:o.helper.width()-i,height:o.helper.height()-s},i=parseFloat(o.element.css("left"))+(o.position.left-o.originalPosition.left)||null,s=parseFloat(o.element.css("top"))+(o.position.top-o.originalPosition.top)||null,n.animate||this.element.css(V.extend(e,{top:s,left:i})),o.helper.height(o.size.height),o.helper.width(o.size.width),this._helper&&!n.animate&&this._proportionallyResize()),V("body").css("cursor","auto"),this._removeClass("ui-resizable-resizing"),this._propagate("stop",t),this._helper&&this.helper.remove(),!1},_updatePrevProperties:function(){this.prevPosition={top:this.position.top,left:this.position.left},this.prevSize={width:this.size.width,height:this.size.height}},_applyChanges:function(){var t={};return this.position.top!==this.prevPosition.top&&(t.top=this.position.top+"px"),this.position.left!==this.prevPosition.left&&(t.left=this.position.left+"px"),this.size.width!==this.prevSize.width&&(t.width=this.size.width+"px"),this.size.height!==this.prevSize.height&&(t.height=this.size.height+"px"),this.helper.css(t),t},_updateVirtualBoundaries:function(t){var e,i,s=this.options,n={minWidth:this._isNumber(s.minWidth)?s.minWidth:0,maxWidth:this._isNumber(s.maxWidth)?s.maxWidth:1/0,minHeight:this._isNumber(s.minHeight)?s.minHeight:0,maxHeight:this._isNumber(s.maxHeight)?s.maxHeight:1/0};(this._aspectRatio||t)&&(e=n.minHeight*this.aspectRatio,i=n.minWidth/this.aspectRatio,s=n.maxHeight*this.aspectRatio,t=n.maxWidth/this.aspectRatio,e>n.minWidth&&(n.minWidth=e),i>n.minHeight&&(n.minHeight=i),s<n.maxWidth&&(n.maxWidth=s),t<n.maxHeight&&(n.maxHeight=t)),this._vBoundaries=n},_updateCache:function(t){this.offset=this.helper.offset(),this._isNumber(t.left)&&(this.position.left=t.left),this._isNumber(t.top)&&(this.position.top=t.top),this._isNumber(t.height)&&(this.size.height=t.height),this._isNumber(t.width)&&(this.size.width=t.width)},_updateRatio:function(t){var e=this.position,i=this.size,s=this.axis;return this._isNumber(t.height)?t.width=t.height*this.aspectRatio:this._isNumber(t.width)&&(t.height=t.width/this.aspectRatio),"sw"===s&&(t.left=e.left+(i.width-t.width),t.top=null),"nw"===s&&(t.top=e.top+(i.height-t.height),t.left=e.left+(i.width-t.width)),t},_respectSize:function(t){var e=this._vBoundaries,i=this.axis,s=this._isNumber(t.width)&&e.maxWidth&&e.maxWidth<t.width,n=this._isNumber(t.height)&&e.maxHeight&&e.maxHeight<t.height,o=this._isNumber(t.width)&&e.minWidth&&e.minWidth>t.width,a=this._isNumber(t.height)&&e.minHeight&&e.minHeight>t.height,r=this.originalPosition.left+this.originalSize.width,l=this.originalPosition.top+this.originalSize.height,h=/sw|nw|w/.test(i),i=/nw|ne|n/.test(i);return o&&(t.width=e.minWidth),a&&(t.height=e.minHeight),s&&(t.width=e.maxWidth),n&&(t.height=e.maxHeight),o&&h&&(t.left=r-e.minWidth),s&&h&&(t.left=r-e.maxWidth),a&&i&&(t.top=l-e.minHeight),n&&i&&(t.top=l-e.maxHeight),t.width||t.height||t.left||!t.top?t.width||t.height||t.top||!t.left||(t.left=null):t.top=null,t},_getPaddingPlusBorderDimensions:function(t){for(var e=0,i=[],s=[t.css("borderTopWidth"),t.css("borderRightWidth"),t.css("borderBottomWidth"),t.css("borderLeftWidth")],n=[t.css("paddingTop"),t.css("paddingRight"),t.css("paddingBottom"),t.css("paddingLeft")];e<4;e++)i[e]=parseFloat(s[e])||0,i[e]+=parseFloat(n[e])||0;return{height:i[0]+i[2],width:i[1]+i[3]}},_proportionallyResize:function(){if(this._proportionallyResizeElements.length)for(var t,e=0,i=this.helper||this.element;e<this._proportionallyResizeElements.length;e++)t=this._proportionallyResizeElements[e],this.outerDimensions||(this.outerDimensions=this._getPaddingPlusBorderDimensions(t)),t.css({height:i.height()-this.outerDimensions.height||0,width:i.width()-this.outerDimensions.width||0})},_renderProxy:function(){var t=this.element,e=this.options;this.elementOffset=t.offset(),this._helper?(this.helper=this.helper||V("<div></div>").css({overflow:"hidden"}),this._addClass(this.helper,this._helper),this.helper.css({width:this.element.outerWidth(),height:this.element.outerHeight(),position:"absolute",left:this.elementOffset.left+"px",top:this.elementOffset.top+"px",zIndex:++e.zIndex}),this.helper.appendTo("body").disableSelection()):this.helper=this.element},_change:{e:function(t,e){return{width:this.originalSize.width+e}},w:function(t,e){var i=this.originalSize;return{left:this.originalPosition.left+e,width:i.width-e}},n:function(t,e,i){var s=this.originalSize;return{top:this.originalPosition.top+i,height:s.height-i}},s:function(t,e,i){return{height:this.originalSize.height+i}},se:function(t,e,i){return V.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[t,e,i]))},sw:function(t,e,i){return V.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[t,e,i]))},ne:function(t,e,i){return V.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[t,e,i]))},nw:function(t,e,i){return V.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[t,e,i]))}},_propagate:function(t,e){V.ui.plugin.call(this,t,[e,this.ui()]),"resize"!==t&&this._trigger(t,e,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}}),V.ui.plugin.add("resizable","animate",{stop:function(e){var i=V(this).resizable("instance"),t=i.options,s=i._proportionallyResizeElements,n=s.length&&/textarea/i.test(s[0].nodeName),o=n&&i._hasScroll(s[0],"left")?0:i.sizeDiff.height,a=n?0:i.sizeDiff.width,n={width:i.size.width-a,height:i.size.height-o},a=parseFloat(i.element.css("left"))+(i.position.left-i.originalPosition.left)||null,o=parseFloat(i.element.css("top"))+(i.position.top-i.originalPosition.top)||null;i.element.animate(V.extend(n,o&&a?{top:o,left:a}:{}),{duration:t.animateDuration,easing:t.animateEasing,step:function(){var t={width:parseFloat(i.element.css("width")),height:parseFloat(i.element.css("height")),top:parseFloat(i.element.css("top")),left:parseFloat(i.element.css("left"))};s&&s.length&&V(s[0]).css({width:t.width,height:t.height}),i._updateCache(t),i._propagate("resize",e)}})}}),V.ui.plugin.add("resizable","containment",{start:function(){var i,s,n=V(this).resizable("instance"),t=n.options,e=n.element,o=t.containment,a=o instanceof V?o.get(0):/parent/.test(o)?e.parent().get(0):o;a&&(n.containerElement=V(a),/document/.test(o)||o===document?(n.containerOffset={left:0,top:0},n.containerPosition={left:0,top:0},n.parentData={element:V(document),left:0,top:0,width:V(document).width(),height:V(document).height()||document.body.parentNode.scrollHeight}):(i=V(a),s=[],V(["Top","Right","Left","Bottom"]).each(function(t,e){s[t]=n._num(i.css("padding"+e))}),n.containerOffset=i.offset(),n.containerPosition=i.position(),n.containerSize={height:i.innerHeight()-s[3],width:i.innerWidth()-s[1]},t=n.containerOffset,e=n.containerSize.height,o=n.containerSize.width,o=n._hasScroll(a,"left")?a.scrollWidth:o,e=n._hasScroll(a)?a.scrollHeight:e,n.parentData={element:a,left:t.left,top:t.top,width:o,height:e}))},resize:function(t){var e=V(this).resizable("instance"),i=e.options,s=e.containerOffset,n=e.position,o=e._aspectRatio||t.shiftKey,a={top:0,left:0},r=e.containerElement,t=!0;r[0]!==document&&/static/.test(r.css("position"))&&(a=s),n.left<(e._helper?s.left:0)&&(e.size.width=e.size.width+(e._helper?e.position.left-s.left:e.position.left-a.left),o&&(e.size.height=e.size.width/e.aspectRatio,t=!1),e.position.left=i.helper?s.left:0),n.top<(e._helper?s.top:0)&&(e.size.height=e.size.height+(e._helper?e.position.top-s.top:e.position.top),o&&(e.size.width=e.size.height*e.aspectRatio,t=!1),e.position.top=e._helper?s.top:0),i=e.containerElement.get(0)===e.element.parent().get(0),n=/relative|absolute/.test(e.containerElement.css("position")),i&&n?(e.offset.left=e.parentData.left+e.position.left,e.offset.top=e.parentData.top+e.position.top):(e.offset.left=e.element.offset().left,e.offset.top=e.element.offset().top),n=Math.abs(e.sizeDiff.width+(e._helper?e.offset.left-a.left:e.offset.left-s.left)),s=Math.abs(e.sizeDiff.height+(e._helper?e.offset.top-a.top:e.offset.top-s.top)),n+e.size.width>=e.parentData.width&&(e.size.width=e.parentData.width-n,o&&(e.size.height=e.size.width/e.aspectRatio,t=!1)),s+e.size.height>=e.parentData.height&&(e.size.height=e.parentData.height-s,o&&(e.size.width=e.size.height*e.aspectRatio,t=!1)),t||(e.position.left=e.prevPosition.left,e.position.top=e.prevPosition.top,e.size.width=e.prevSize.width,e.size.height=e.prevSize.height)},stop:function(){var t=V(this).resizable("instance"),e=t.options,i=t.containerOffset,s=t.containerPosition,n=t.containerElement,o=V(t.helper),a=o.offset(),r=o.outerWidth()-t.sizeDiff.width,o=o.outerHeight()-t.sizeDiff.height;t._helper&&!e.animate&&/relative/.test(n.css("position"))&&V(this).css({left:a.left-s.left-i.left,width:r,height:o}),t._helper&&!e.animate&&/static/.test(n.css("position"))&&V(this).css({left:a.left-s.left-i.left,width:r,height:o})}}),V.ui.plugin.add("resizable","alsoResize",{start:function(){var t=V(this).resizable("instance").options;V(t.alsoResize).each(function(){var t=V(this);t.data("ui-resizable-alsoresize",{width:parseFloat(t.width()),height:parseFloat(t.height()),left:parseFloat(t.css("left")),top:parseFloat(t.css("top"))})})},resize:function(t,i){var e=V(this).resizable("instance"),s=e.options,n=e.originalSize,o=e.originalPosition,a={height:e.size.height-n.height||0,width:e.size.width-n.width||0,top:e.position.top-o.top||0,left:e.position.left-o.left||0};V(s.alsoResize).each(function(){var t=V(this),s=V(this).data("ui-resizable-alsoresize"),n={},e=t.parents(i.originalElement[0]).length?["width","height"]:["width","height","top","left"];V.each(e,function(t,e){var i=(s[e]||0)+(a[e]||0);i&&0<=i&&(n[e]=i||null)}),t.css(n)})},stop:function(){V(this).removeData("ui-resizable-alsoresize")}}),V.ui.plugin.add("resizable","ghost",{start:function(){var t=V(this).resizable("instance"),e=t.size;t.ghost=t.originalElement.clone(),t.ghost.css({opacity:.25,display:"block",position:"relative",height:e.height,width:e.width,margin:0,left:0,top:0}),t._addClass(t.ghost,"ui-resizable-ghost"),!1!==V.uiBackCompat&&"string"==typeof t.options.ghost&&t.ghost.addClass(this.options.ghost),t.ghost.appendTo(t.helper)},resize:function(){var t=V(this).resizable("instance");t.ghost&&t.ghost.css({position:"relative",height:t.size.height,width:t.size.width})},stop:function(){var t=V(this).resizable("instance");t.ghost&&t.helper&&t.helper.get(0).removeChild(t.ghost.get(0))}}),V.ui.plugin.add("resizable","grid",{resize:function(){var t,e=V(this).resizable("instance"),i=e.options,s=e.size,n=e.originalSize,o=e.originalPosition,a=e.axis,r="number"==typeof i.grid?[i.grid,i.grid]:i.grid,l=r[0]||1,h=r[1]||1,c=Math.round((s.width-n.width)/l)*l,u=Math.round((s.height-n.height)/h)*h,d=n.width+c,p=n.height+u,f=i.maxWidth&&i.maxWidth<d,g=i.maxHeight&&i.maxHeight<p,m=i.minWidth&&i.minWidth>d,s=i.minHeight&&i.minHeight>p;i.grid=r,m&&(d+=l),s&&(p+=h),f&&(d-=l),g&&(p-=h),/^(se|s|e)$/.test(a)?(e.size.width=d,e.size.height=p):/^(ne)$/.test(a)?(e.size.width=d,e.size.height=p,e.position.top=o.top-u):/^(sw)$/.test(a)?(e.size.width=d,e.size.height=p,e.position.left=o.left-c):((p-h<=0||d-l<=0)&&(t=e._getPaddingPlusBorderDimensions(this)),0<p-h?(e.size.height=p,e.position.top=o.top-u):(p=h-t.height,e.size.height=p,e.position.top=o.top+n.height-p),0<d-l?(e.size.width=d,e.position.left=o.left-c):(d=l-t.width,e.size.width=d,e.position.left=o.left+n.width-d))}});V.ui.resizable;V.widget("ui.dialog",{version:"1.13.1",options:{appendTo:"body",autoOpen:!0,buttons:[],classes:{"ui-dialog":"ui-corner-all","ui-dialog-titlebar":"ui-corner-all"},closeOnEscape:!0,closeText:"Close",draggable:!0,hide:null,height:"auto",maxHeight:null,maxWidth:null,minHeight:150,minWidth:150,modal:!1,position:{my:"center",at:"center",of:window,collision:"fit",using:function(t){var e=V(this).css(t).offset().top;e<0&&V(this).css("top",t.top-e)}},resizable:!0,show:null,title:null,width:300,beforeClose:null,close:null,drag:null,dragStart:null,dragStop:null,focus:null,open:null,resize:null,resizeStart:null,resizeStop:null},sizeRelatedOptions:{buttons:!0,height:!0,maxHeight:!0,maxWidth:!0,minHeight:!0,minWidth:!0,width:!0},resizableRelatedOptions:{maxHeight:!0,maxWidth:!0,minHeight:!0,minWidth:!0},_create:function(){this.originalCss={display:this.element[0].style.display,width:this.element[0].style.width,minHeight:this.element[0].style.minHeight,maxHeight:this.element[0].style.maxHeight,height:this.element[0].style.height},this.originalPosition={parent:this.element.parent(),index:this.element.parent().children().index(this.element)},this.originalTitle=this.element.attr("title"),null==this.options.title&&null!=this.originalTitle&&(this.options.title=this.originalTitle),this.options.disabled&&(this.options.disabled=!1),this._createWrapper(),this.element.show().removeAttr("title").appendTo(this.uiDialog),this._addClass("ui-dialog-content","ui-widget-content"),this._createTitlebar(),this._createButtonPane(),this.options.draggable&&V.fn.draggable&&this._makeDraggable(),this.options.resizable&&V.fn.resizable&&this._makeResizable(),this._isOpen=!1,this._trackFocus()},_init:function(){this.options.autoOpen&&this.open()},_appendTo:function(){var t=this.options.appendTo;return t&&(t.jquery||t.nodeType)?V(t):this.document.find(t||"body").eq(0)},_destroy:function(){var t,e=this.originalPosition;this._untrackInstance(),this._destroyOverlay(),this.element.removeUniqueId().css(this.originalCss).detach(),this.uiDialog.remove(),this.originalTitle&&this.element.attr("title",this.originalTitle),(t=e.parent.children().eq(e.index)).length&&t[0]!==this.element[0]?t.before(this.element):e.parent.append(this.element)},widget:function(){return this.uiDialog},disable:V.noop,enable:V.noop,close:function(t){var e=this;this._isOpen&&!1!==this._trigger("beforeClose",t)&&(this._isOpen=!1,this._focusedElement=null,this._destroyOverlay(),this._untrackInstance(),this.opener.filter(":focusable").trigger("focus").length||V.ui.safeBlur(V.ui.safeActiveElement(this.document[0])),this._hide(this.uiDialog,this.options.hide,function(){e._trigger("close",t)}))},isOpen:function(){return this._isOpen},moveToTop:function(){this._moveToTop()},_moveToTop:function(t,e){var i=!1,s=this.uiDialog.siblings(".ui-front:visible").map(function(){return+V(this).css("z-index")}).get(),s=Math.max.apply(null,s);return s>=+this.uiDialog.css("z-index")&&(this.uiDialog.css("z-index",s+1),i=!0),i&&!e&&this._trigger("focus",t),i},open:function(){var t=this;this._isOpen?this._moveToTop()&&this._focusTabbable():(this._isOpen=!0,this.opener=V(V.ui.safeActiveElement(this.document[0])),this._size(),this._position(),this._createOverlay(),this._moveToTop(null,!0),this.overlay&&this.overlay.css("z-index",this.uiDialog.css("z-index")-1),this._show(this.uiDialog,this.options.show,function(){t._focusTabbable(),t._trigger("focus")}),this._makeFocusTarget(),this._trigger("open"))},_focusTabbable:function(){var t=this._focusedElement;(t=!(t=!(t=!(t=!(t=t||this.element.find("[autofocus]")).length?this.element.find(":tabbable"):t).length?this.uiDialogButtonPane.find(":tabbable"):t).length?this.uiDialogTitlebarClose.filter(":tabbable"):t).length?this.uiDialog:t).eq(0).trigger("focus")},_restoreTabbableFocus:function(){var t=V.ui.safeActiveElement(this.document[0]);this.uiDialog[0]===t||V.contains(this.uiDialog[0],t)||this._focusTabbable()},_keepFocus:function(t){t.preventDefault(),this._restoreTabbableFocus(),this._delay(this._restoreTabbableFocus)},_createWrapper:function(){this.uiDialog=V("<div>").hide().attr({tabIndex:-1,role:"dialog"}).appendTo(this._appendTo()),this._addClass(this.uiDialog,"ui-dialog","ui-widget ui-widget-content ui-front"),this._on(this.uiDialog,{keydown:function(t){if(this.options.closeOnEscape&&!t.isDefaultPrevented()&&t.keyCode&&t.keyCode===V.ui.keyCode.ESCAPE)return t.preventDefault(),void this.close(t);var e,i,s;t.keyCode!==V.ui.keyCode.TAB||t.isDefaultPrevented()||(e=this.uiDialog.find(":tabbable"),i=e.first(),s=e.last(),t.target!==s[0]&&t.target!==this.uiDialog[0]||t.shiftKey?t.target!==i[0]&&t.target!==this.uiDialog[0]||!t.shiftKey||(this._delay(function(){s.trigger("focus")}),t.preventDefault()):(this._delay(function(){i.trigger("focus")}),t.preventDefault()))},mousedown:function(t){this._moveToTop(t)&&this._focusTabbable()}}),this.element.find("[aria-describedby]").length||this.uiDialog.attr({"aria-describedby":this.element.uniqueId().attr("id")})},_createTitlebar:function(){var t;this.uiDialogTitlebar=V("<div>"),this._addClass(this.uiDialogTitlebar,"ui-dialog-titlebar","ui-widget-header ui-helper-clearfix"),this._on(this.uiDialogTitlebar,{mousedown:function(t){V(t.target).closest(".ui-dialog-titlebar-close")||this.uiDialog.trigger("focus")}}),this.uiDialogTitlebarClose=V("<button type='button'></button>").button({label:V("<a>").text(this.options.closeText).html(),icon:"ui-icon-closethick",showLabel:!1}).appendTo(this.uiDialogTitlebar),this._addClass(this.uiDialogTitlebarClose,"ui-dialog-titlebar-close"),this._on(this.uiDialogTitlebarClose,{click:function(t){t.preventDefault(),this.close(t)}}),t=V("<span>").uniqueId().prependTo(this.uiDialogTitlebar),this._addClass(t,"ui-dialog-title"),this._title(t),this.uiDialogTitlebar.prependTo(this.uiDialog),this.uiDialog.attr({"aria-labelledby":t.attr("id")})},_title:function(t){this.options.title?t.text(this.options.title):t.html(" ")},_createButtonPane:function(){this.uiDialogButtonPane=V("<div>"),this._addClass(this.uiDialogButtonPane,"ui-dialog-buttonpane","ui-widget-content ui-helper-clearfix"),this.uiButtonSet=V("<div>").appendTo(this.uiDialogButtonPane),this._addClass(this.uiButtonSet,"ui-dialog-buttonset"),this._createButtons()},_createButtons:function(){var s=this,t=this.options.buttons;this.uiDialogButtonPane.remove(),this.uiButtonSet.empty(),V.isEmptyObject(t)||Array.isArray(t)&&!t.length?this._removeClass(this.uiDialog,"ui-dialog-buttons"):(V.each(t,function(t,e){var i;e=V.extend({type:"button"},e="function"==typeof e?{click:e,text:t}:e),i=e.click,t={icon:e.icon,iconPosition:e.iconPosition,showLabel:e.showLabel,icons:e.icons,text:e.text},delete e.click,delete e.icon,delete e.iconPosition,delete e.showLabel,delete e.icons,"boolean"==typeof e.text&&delete e.text,V("<button></button>",e).button(t).appendTo(s.uiButtonSet).on("click",function(){i.apply(s.element[0],arguments)})}),this._addClass(this.uiDialog,"ui-dialog-buttons"),this.uiDialogButtonPane.appendTo(this.uiDialog))},_makeDraggable:function(){var n=this,o=this.options;function a(t){return{position:t.position,offset:t.offset}}this.uiDialog.draggable({cancel:".ui-dialog-content, .ui-dialog-titlebar-close",handle:".ui-dialog-titlebar",containment:"document",start:function(t,e){n._addClass(V(this),"ui-dialog-dragging"),n._blockFrames(),n._trigger("dragStart",t,a(e))},drag:function(t,e){n._trigger("drag",t,a(e))},stop:function(t,e){var i=e.offset.left-n.document.scrollLeft(),s=e.offset.top-n.document.scrollTop();o.position={my:"left top",at:"left"+(0<=i?"+":"")+i+" top"+(0<=s?"+":"")+s,of:n.window},n._removeClass(V(this),"ui-dialog-dragging"),n._unblockFrames(),n._trigger("dragStop",t,a(e))}})},_makeResizable:function(){var n=this,o=this.options,t=o.resizable,e=this.uiDialog.css("position"),t="string"==typeof t?t:"n,e,s,w,se,sw,ne,nw";function a(t){return{originalPosition:t.originalPosition,originalSize:t.originalSize,position:t.position,size:t.size}}this.uiDialog.resizable({cancel:".ui-dialog-content",containment:"document",alsoResize:this.element,maxWidth:o.maxWidth,maxHeight:o.maxHeight,minWidth:o.minWidth,minHeight:this._minHeight(),handles:t,start:function(t,e){n._addClass(V(this),"ui-dialog-resizing"),n._blockFrames(),n._trigger("resizeStart",t,a(e))},resize:function(t,e){n._trigger("resize",t,a(e))},stop:function(t,e){var i=n.uiDialog.offset(),s=i.left-n.document.scrollLeft(),i=i.top-n.document.scrollTop();o.height=n.uiDialog.height(),o.width=n.uiDialog.width(),o.position={my:"left top",at:"left"+(0<=s?"+":"")+s+" top"+(0<=i?"+":"")+i,of:n.window},n._removeClass(V(this),"ui-dialog-resizing"),n._unblockFrames(),n._trigger("resizeStop",t,a(e))}}).css("position",e)},_trackFocus:function(){this._on(this.widget(),{focusin:function(t){this._makeFocusTarget(),this._focusedElement=V(t.target)}})},_makeFocusTarget:function(){this._untrackInstance(),this._trackingInstances().unshift(this)},_untrackInstance:function(){var t=this._trackingInstances(),e=V.inArray(this,t);-1!==e&&t.splice(e,1)},_trackingInstances:function(){var t=this.document.data("ui-dialog-instances");return t||this.document.data("ui-dialog-instances",t=[]),t},_minHeight:function(){var t=this.options;return"auto"===t.height?t.minHeight:Math.min(t.minHeight,t.height)},_position:function(){var t=this.uiDialog.is(":visible");t||this.uiDialog.show(),this.uiDialog.position(this.options.position),t||this.uiDialog.hide()},_setOptions:function(t){var i=this,s=!1,n={};V.each(t,function(t,e){i._setOption(t,e),t in i.sizeRelatedOptions&&(s=!0),t in i.resizableRelatedOptions&&(n[t]=e)}),s&&(this._size(),this._position()),this.uiDialog.is(":data(ui-resizable)")&&this.uiDialog.resizable("option",n)},_setOption:function(t,e){var i,s=this.uiDialog;"disabled"!==t&&(this._super(t,e),"appendTo"===t&&this.uiDialog.appendTo(this._appendTo()),"buttons"===t&&this._createButtons(),"closeText"===t&&this.uiDialogTitlebarClose.button({label:V("<a>").text(""+this.options.closeText).html()}),"draggable"===t&&((i=s.is(":data(ui-draggable)"))&&!e&&s.draggable("destroy"),!i&&e&&this._makeDraggable()),"position"===t&&this._position(),"resizable"===t&&((i=s.is(":data(ui-resizable)"))&&!e&&s.resizable("destroy"),i&&"string"==typeof e&&s.resizable("option","handles",e),i||!1===e||this._makeResizable()),"title"===t&&this._title(this.uiDialogTitlebar.find(".ui-dialog-title")))},_size:function(){var t,e,i,s=this.options;this.element.show().css({width:"auto",minHeight:0,maxHeight:"none",height:0}),s.minWidth>s.width&&(s.width=s.minWidth),t=this.uiDialog.css({height:"auto",width:s.width}).outerHeight(),e=Math.max(0,s.minHeight-t),i="number"==typeof s.maxHeight?Math.max(0,s.maxHeight-t):"none","auto"===s.height?this.element.css({minHeight:e,maxHeight:i,height:"auto"}):this.element.height(Math.max(0,s.height-t)),this.uiDialog.is(":data(ui-resizable)")&&this.uiDialog.resizable("option","minHeight",this._minHeight())},_blockFrames:function(){this.iframeBlocks=this.document.find("iframe").map(function(){var t=V(this);return V("<div>").css({position:"absolute",width:t.outerWidth(),height:t.outerHeight()}).appendTo(t.parent()).offset(t.offset())[0]})},_unblockFrames:function(){this.iframeBlocks&&(this.iframeBlocks.remove(),delete this.iframeBlocks)},_allowInteraction:function(t){return!!V(t.target).closest(".ui-dialog").length||!!V(t.target).closest(".ui-datepicker").length},_createOverlay:function(){var i,s;this.options.modal&&(i=V.fn.jquery.substring(0,4),s=!0,this._delay(function(){s=!1}),this.document.data("ui-dialog-overlays")||this.document.on("focusin.ui-dialog",function(t){var e;s||((e=this._trackingInstances()[0])._allowInteraction(t)||(t.preventDefault(),e._focusTabbable(),"3.4."!==i&&"3.5."!==i||e._delay(e._restoreTabbableFocus)))}.bind(this)),this.overlay=V("<div>").appendTo(this._appendTo()),this._addClass(this.overlay,null,"ui-widget-overlay ui-front"),this._on(this.overlay,{mousedown:"_keepFocus"}),this.document.data("ui-dialog-overlays",(this.document.data("ui-dialog-overlays")||0)+1))},_destroyOverlay:function(){var t;this.options.modal&&this.overlay&&((t=this.document.data("ui-dialog-overlays")-1)?this.document.data("ui-dialog-overlays",t):(this.document.off("focusin.ui-dialog"),this.document.removeData("ui-dialog-overlays")),this.overlay.remove(),this.overlay=null)}}),!1!==V.uiBackCompat&&V.widget("ui.dialog",V.ui.dialog,{options:{dialogClass:""},_createWrapper:function(){this._super(),this.uiDialog.addClass(this.options.dialogClass)},_setOption:function(t,e){"dialogClass"===t&&this.uiDialog.removeClass(this.options.dialogClass).addClass(e),this._superApply(arguments)}});V.ui.dialog;function lt(t,e,i){return e<=t&&t<e+i}V.widget("ui.droppable",{version:"1.13.1",widgetEventPrefix:"drop",options:{accept:"*",addClasses:!0,greedy:!1,scope:"default",tolerance:"intersect",activate:null,deactivate:null,drop:null,out:null,over:null},_create:function(){var t,e=this.options,i=e.accept;this.isover=!1,this.isout=!0,this.accept="function"==typeof i?i:function(t){return t.is(i)},this.proportions=function(){if(!arguments.length)return t=t||{width:this.element[0].offsetWidth,height:this.element[0].offsetHeight};t=arguments[0]},this._addToManager(e.scope),e.addClasses&&this._addClass("ui-droppable")},_addToManager:function(t){V.ui.ddmanager.droppables[t]=V.ui.ddmanager.droppables[t]||[],V.ui.ddmanager.droppables[t].push(this)},_splice:function(t){for(var e=0;e<t.length;e++)t[e]===this&&t.splice(e,1)},_destroy:function(){var t=V.ui.ddmanager.droppables[this.options.scope];this._splice(t)},_setOption:function(t,e){var i;"accept"===t?this.accept="function"==typeof e?e:function(t){return t.is(e)}:"scope"===t&&(i=V.ui.ddmanager.droppables[this.options.scope],this._splice(i),this._addToManager(e)),this._super(t,e)},_activate:function(t){var e=V.ui.ddmanager.current;this._addActiveClass(),e&&this._trigger("activate",t,this.ui(e))},_deactivate:function(t){var e=V.ui.ddmanager.current;this._removeActiveClass(),e&&this._trigger("deactivate",t,this.ui(e))},_over:function(t){var e=V.ui.ddmanager.current;e&&(e.currentItem||e.element)[0]!==this.element[0]&&this.accept.call(this.element[0],e.currentItem||e.element)&&(this._addHoverClass(),this._trigger("over",t,this.ui(e)))},_out:function(t){var e=V.ui.ddmanager.current;e&&(e.currentItem||e.element)[0]!==this.element[0]&&this.accept.call(this.element[0],e.currentItem||e.element)&&(this._removeHoverClass(),this._trigger("out",t,this.ui(e)))},_drop:function(e,t){var i=t||V.ui.ddmanager.current,s=!1;return!(!i||(i.currentItem||i.element)[0]===this.element[0])&&(this.element.find(":data(ui-droppable)").not(".ui-draggable-dragging").each(function(){var t=V(this).droppable("instance");if(t.options.greedy&&!t.options.disabled&&t.options.scope===i.options.scope&&t.accept.call(t.element[0],i.currentItem||i.element)&&V.ui.intersect(i,V.extend(t,{offset:t.element.offset()}),t.options.tolerance,e))return!(s=!0)}),!s&&(!!this.accept.call(this.element[0],i.currentItem||i.element)&&(this._removeActiveClass(),this._removeHoverClass(),this._trigger("drop",e,this.ui(i)),this.element)))},ui:function(t){return{draggable:t.currentItem||t.element,helper:t.helper,position:t.position,offset:t.positionAbs}},_addHoverClass:function(){this._addClass("ui-droppable-hover")},_removeHoverClass:function(){this._removeClass("ui-droppable-hover")},_addActiveClass:function(){this._addClass("ui-droppable-active")},_removeActiveClass:function(){this._removeClass("ui-droppable-active")}}),V.ui.intersect=function(t,e,i,s){if(!e.offset)return!1;var n=(t.positionAbs||t.position.absolute).left+t.margins.left,o=(t.positionAbs||t.position.absolute).top+t.margins.top,a=n+t.helperProportions.width,r=o+t.helperProportions.height,l=e.offset.left,h=e.offset.top,c=l+e.proportions().width,u=h+e.proportions().height;switch(i){case"fit":return l<=n&&a<=c&&h<=o&&r<=u;case"intersect":return l<n+t.helperProportions.width/2&&a-t.helperProportions.width/2<c&&h<o+t.helperProportions.height/2&&r-t.helperProportions.height/2<u;case"pointer":return lt(s.pageY,h,e.proportions().height)&<(s.pageX,l,e.proportions().width);case"touch":return(h<=o&&o<=u||h<=r&&r<=u||o<h&&u<r)&&(l<=n&&n<=c||l<=a&&a<=c||n<l&&c<a);default:return!1}},!(V.ui.ddmanager={current:null,droppables:{default:[]},prepareOffsets:function(t,e){var i,s,n=V.ui.ddmanager.droppables[t.options.scope]||[],o=e?e.type:null,a=(t.currentItem||t.element).find(":data(ui-droppable)").addBack();t:for(i=0;i<n.length;i++)if(!(n[i].options.disabled||t&&!n[i].accept.call(n[i].element[0],t.currentItem||t.element))){for(s=0;s<a.length;s++)if(a[s]===n[i].element[0]){n[i].proportions().height=0;continue t}n[i].visible="none"!==n[i].element.css("display"),n[i].visible&&("mousedown"===o&&n[i]._activate.call(n[i],e),n[i].offset=n[i].element.offset(),n[i].proportions({width:n[i].element[0].offsetWidth,height:n[i].element[0].offsetHeight}))}},drop:function(t,e){var i=!1;return V.each((V.ui.ddmanager.droppables[t.options.scope]||[]).slice(),function(){this.options&&(!this.options.disabled&&this.visible&&V.ui.intersect(t,this,this.options.tolerance,e)&&(i=this._drop.call(this,e)||i),!this.options.disabled&&this.visible&&this.accept.call(this.element[0],t.currentItem||t.element)&&(this.isout=!0,this.isover=!1,this._deactivate.call(this,e)))}),i},dragStart:function(t,e){t.element.parentsUntil("body").on("scroll.droppable",function(){t.options.refreshPositions||V.ui.ddmanager.prepareOffsets(t,e)})},drag:function(n,o){n.options.refreshPositions&&V.ui.ddmanager.prepareOffsets(n,o),V.each(V.ui.ddmanager.droppables[n.options.scope]||[],function(){var t,e,i,s;this.options.disabled||this.greedyChild||!this.visible||(s=!(i=V.ui.intersect(n,this,this.options.tolerance,o))&&this.isover?"isout":i&&!this.isover?"isover":null)&&(this.options.greedy&&(e=this.options.scope,(i=this.element.parents(":data(ui-droppable)").filter(function(){return V(this).droppable("instance").options.scope===e})).length&&((t=V(i[0]).droppable("instance")).greedyChild="isover"===s)),t&&"isover"===s&&(t.isover=!1,t.isout=!0,t._out.call(t,o)),this[s]=!0,this["isout"===s?"isover":"isout"]=!1,this["isover"===s?"_over":"_out"].call(this,o),t&&"isout"===s&&(t.isout=!1,t.isover=!0,t._over.call(t,o)))})},dragStop:function(t,e){t.element.parentsUntil("body").off("scroll.droppable"),t.options.refreshPositions||V.ui.ddmanager.prepareOffsets(t,e)}})!==V.uiBackCompat&&V.widget("ui.droppable",V.ui.droppable,{options:{hoverClass:!1,activeClass:!1},_addActiveClass:function(){this._super(),this.options.activeClass&&this.element.addClass(this.options.activeClass)},_removeActiveClass:function(){this._super(),this.options.activeClass&&this.element.removeClass(this.options.activeClass)},_addHoverClass:function(){this._super(),this.options.hoverClass&&this.element.addClass(this.options.hoverClass)},_removeHoverClass:function(){this._super(),this.options.hoverClass&&this.element.removeClass(this.options.hoverClass)}});V.ui.droppable,V.widget("ui.progressbar",{version:"1.13.1",options:{classes:{"ui-progressbar":"ui-corner-all","ui-progressbar-value":"ui-corner-left","ui-progressbar-complete":"ui-corner-right"},max:100,value:0,change:null,complete:null},min:0,_create:function(){this.oldValue=this.options.value=this._constrainedValue(),this.element.attr({role:"progressbar","aria-valuemin":this.min}),this._addClass("ui-progressbar","ui-widget ui-widget-content"),this.valueDiv=V("<div>").appendTo(this.element),this._addClass(this.valueDiv,"ui-progressbar-value","ui-widget-header"),this._refreshValue()},_destroy:function(){this.element.removeAttr("role aria-valuemin aria-valuemax aria-valuenow"),this.valueDiv.remove()},value:function(t){if(void 0===t)return this.options.value;this.options.value=this._constrainedValue(t),this._refreshValue()},_constrainedValue:function(t){return void 0===t&&(t=this.options.value),this.indeterminate=!1===t,"number"!=typeof t&&(t=0),!this.indeterminate&&Math.min(this.options.max,Math.max(this.min,t))},_setOptions:function(t){var e=t.value;delete t.value,this._super(t),this.options.value=this._constrainedValue(e),this._refreshValue()},_setOption:function(t,e){"max"===t&&(e=Math.max(this.min,e)),this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",t),this._toggleClass(null,"ui-state-disabled",!!t)},_percentage:function(){return this.indeterminate?100:100*(this.options.value-this.min)/(this.options.max-this.min)},_refreshValue:function(){var t=this.options.value,e=this._percentage();this.valueDiv.toggle(this.indeterminate||t>this.min).width(e.toFixed(0)+"%"),this._toggleClass(this.valueDiv,"ui-progressbar-complete",null,t===this.options.max)._toggleClass("ui-progressbar-indeterminate",null,this.indeterminate),this.indeterminate?(this.element.removeAttr("aria-valuenow"),this.overlayDiv||(this.overlayDiv=V("<div>").appendTo(this.valueDiv),this._addClass(this.overlayDiv,"ui-progressbar-overlay"))):(this.element.attr({"aria-valuemax":this.options.max,"aria-valuenow":t}),this.overlayDiv&&(this.overlayDiv.remove(),this.overlayDiv=null)),this.oldValue!==t&&(this.oldValue=t,this._trigger("change")),t===this.options.max&&this._trigger("complete")}}),V.widget("ui.selectable",V.ui.mouse,{version:"1.13.1",options:{appendTo:"body",autoRefresh:!0,distance:0,filter:"*",tolerance:"touch",selected:null,selecting:null,start:null,stop:null,unselected:null,unselecting:null},_create:function(){var i=this;this._addClass("ui-selectable"),this.dragged=!1,this.refresh=function(){i.elementPos=V(i.element[0]).offset(),i.selectees=V(i.options.filter,i.element[0]),i._addClass(i.selectees,"ui-selectee"),i.selectees.each(function(){var t=V(this),e=t.offset(),e={left:e.left-i.elementPos.left,top:e.top-i.elementPos.top};V.data(this,"selectable-item",{element:this,$element:t,left:e.left,top:e.top,right:e.left+t.outerWidth(),bottom:e.top+t.outerHeight(),startselected:!1,selected:t.hasClass("ui-selected"),selecting:t.hasClass("ui-selecting"),unselecting:t.hasClass("ui-unselecting")})})},this.refresh(),this._mouseInit(),this.helper=V("<div>"),this._addClass(this.helper,"ui-selectable-helper")},_destroy:function(){this.selectees.removeData("selectable-item"),this._mouseDestroy()},_mouseStart:function(i){var s=this,t=this.options;this.opos=[i.pageX,i.pageY],this.elementPos=V(this.element[0]).offset(),this.options.disabled||(this.selectees=V(t.filter,this.element[0]),this._trigger("start",i),V(t.appendTo).append(this.helper),this.helper.css({left:i.pageX,top:i.pageY,width:0,height:0}),t.autoRefresh&&this.refresh(),this.selectees.filter(".ui-selected").each(function(){var t=V.data(this,"selectable-item");t.startselected=!0,i.metaKey||i.ctrlKey||(s._removeClass(t.$element,"ui-selected"),t.selected=!1,s._addClass(t.$element,"ui-unselecting"),t.unselecting=!0,s._trigger("unselecting",i,{unselecting:t.element}))}),V(i.target).parents().addBack().each(function(){var t,e=V.data(this,"selectable-item");if(e)return t=!i.metaKey&&!i.ctrlKey||!e.$element.hasClass("ui-selected"),s._removeClass(e.$element,t?"ui-unselecting":"ui-selected")._addClass(e.$element,t?"ui-selecting":"ui-unselecting"),e.unselecting=!t,e.selecting=t,(e.selected=t)?s._trigger("selecting",i,{selecting:e.element}):s._trigger("unselecting",i,{unselecting:e.element}),!1}))},_mouseDrag:function(s){if(this.dragged=!0,!this.options.disabled){var t,n=this,o=this.options,a=this.opos[0],r=this.opos[1],l=s.pageX,h=s.pageY;return l<a&&(t=l,l=a,a=t),h<r&&(t=h,h=r,r=t),this.helper.css({left:a,top:r,width:l-a,height:h-r}),this.selectees.each(function(){var t=V.data(this,"selectable-item"),e=!1,i={};t&&t.element!==n.element[0]&&(i.left=t.left+n.elementPos.left,i.right=t.right+n.elementPos.left,i.top=t.top+n.elementPos.top,i.bottom=t.bottom+n.elementPos.top,"touch"===o.tolerance?e=!(i.left>l||i.right<a||i.top>h||i.bottom<r):"fit"===o.tolerance&&(e=i.left>a&&i.right<l&&i.top>r&&i.bottom<h),e?(t.selected&&(n._removeClass(t.$element,"ui-selected"),t.selected=!1),t.unselecting&&(n._removeClass(t.$element,"ui-unselecting"),t.unselecting=!1),t.selecting||(n._addClass(t.$element,"ui-selecting"),t.selecting=!0,n._trigger("selecting",s,{selecting:t.element}))):(t.selecting&&((s.metaKey||s.ctrlKey)&&t.startselected?(n._removeClass(t.$element,"ui-selecting"),t.selecting=!1,n._addClass(t.$element,"ui-selected"),t.selected=!0):(n._removeClass(t.$element,"ui-selecting"),t.selecting=!1,t.startselected&&(n._addClass(t.$element,"ui-unselecting"),t.unselecting=!0),n._trigger("unselecting",s,{unselecting:t.element}))),t.selected&&(s.metaKey||s.ctrlKey||t.startselected||(n._removeClass(t.$element,"ui-selected"),t.selected=!1,n._addClass(t.$element,"ui-unselecting"),t.unselecting=!0,n._trigger("unselecting",s,{unselecting:t.element})))))}),!1}},_mouseStop:function(e){var i=this;return this.dragged=!1,V(".ui-unselecting",this.element[0]).each(function(){var t=V.data(this,"selectable-item");i._removeClass(t.$element,"ui-unselecting"),t.unselecting=!1,t.startselected=!1,i._trigger("unselected",e,{unselected:t.element})}),V(".ui-selecting",this.element[0]).each(function(){var t=V.data(this,"selectable-item");i._removeClass(t.$element,"ui-selecting")._addClass(t.$element,"ui-selected"),t.selecting=!1,t.selected=!0,t.startselected=!0,i._trigger("selected",e,{selected:t.element})}),this._trigger("stop",e),this.helper.remove(),!1}}),V.widget("ui.selectmenu",[V.ui.formResetMixin,{version:"1.13.1",defaultElement:"<select>",options:{appendTo:null,classes:{"ui-selectmenu-button-open":"ui-corner-top","ui-selectmenu-button-closed":"ui-corner-all"},disabled:null,icons:{button:"ui-icon-triangle-1-s"},position:{my:"left top",at:"left bottom",collision:"none"},width:!1,change:null,close:null,focus:null,open:null,select:null},_create:function(){var t=this.element.uniqueId().attr("id");this.ids={element:t,button:t+"-button",menu:t+"-menu"},this._drawButton(),this._drawMenu(),this._bindFormResetHandler(),this._rendered=!1,this.menuItems=V()},_drawButton:function(){var t,e=this,i=this._parseOption(this.element.find("option:selected"),this.element[0].selectedIndex);this.labels=this.element.labels().attr("for",this.ids.button),this._on(this.labels,{click:function(t){this.button.trigger("focus"),t.preventDefault()}}),this.element.hide(),this.button=V("<span>",{tabindex:this.options.disabled?-1:0,id:this.ids.button,role:"combobox","aria-expanded":"false","aria-autocomplete":"list","aria-owns":this.ids.menu,"aria-haspopup":"true",title:this.element.attr("title")}).insertAfter(this.element),this._addClass(this.button,"ui-selectmenu-button ui-selectmenu-button-closed","ui-button ui-widget"),t=V("<span>").appendTo(this.button),this._addClass(t,"ui-selectmenu-icon","ui-icon "+this.options.icons.button),this.buttonItem=this._renderButtonItem(i).appendTo(this.button),!1!==this.options.width&&this._resizeButton(),this._on(this.button,this._buttonEvents),this.button.one("focusin",function(){e._rendered||e._refreshMenu()})},_drawMenu:function(){var i=this;this.menu=V("<ul>",{"aria-hidden":"true","aria-labelledby":this.ids.button,id:this.ids.menu}),this.menuWrap=V("<div>").append(this.menu),this._addClass(this.menuWrap,"ui-selectmenu-menu","ui-front"),this.menuWrap.appendTo(this._appendTo()),this.menuInstance=this.menu.menu({classes:{"ui-menu":"ui-corner-bottom"},role:"listbox",select:function(t,e){t.preventDefault(),i._setSelection(),i._select(e.item.data("ui-selectmenu-item"),t)},focus:function(t,e){e=e.item.data("ui-selectmenu-item");null!=i.focusIndex&&e.index!==i.focusIndex&&(i._trigger("focus",t,{item:e}),i.isOpen||i._select(e,t)),i.focusIndex=e.index,i.button.attr("aria-activedescendant",i.menuItems.eq(e.index).attr("id"))}}).menu("instance"),this.menuInstance._off(this.menu,"mouseleave"),this.menuInstance._closeOnDocumentClick=function(){return!1},this.menuInstance._isDivider=function(){return!1}},refresh:function(){this._refreshMenu(),this.buttonItem.replaceWith(this.buttonItem=this._renderButtonItem(this._getSelectedItem().data("ui-selectmenu-item")||{})),null===this.options.width&&this._resizeButton()},_refreshMenu:function(){var t=this.element.find("option");this.menu.empty(),this._parseOptions(t),this._renderMenu(this.menu,this.items),this.menuInstance.refresh(),this.menuItems=this.menu.find("li").not(".ui-selectmenu-optgroup").find(".ui-menu-item-wrapper"),this._rendered=!0,t.length&&(t=this._getSelectedItem(),this.menuInstance.focus(null,t),this._setAria(t.data("ui-selectmenu-item")),this._setOption("disabled",this.element.prop("disabled")))},open:function(t){this.options.disabled||(this._rendered?(this._removeClass(this.menu.find(".ui-state-active"),null,"ui-state-active"),this.menuInstance.focus(null,this._getSelectedItem())):this._refreshMenu(),this.menuItems.length&&(this.isOpen=!0,this._toggleAttr(),this._resizeMenu(),this._position(),this._on(this.document,this._documentClick),this._trigger("open",t)))},_position:function(){this.menuWrap.position(V.extend({of:this.button},this.options.position))},close:function(t){this.isOpen&&(this.isOpen=!1,this._toggleAttr(),this.range=null,this._off(this.document),this._trigger("close",t))},widget:function(){return this.button},menuWidget:function(){return this.menu},_renderButtonItem:function(t){var e=V("<span>");return this._setText(e,t.label),this._addClass(e,"ui-selectmenu-text"),e},_renderMenu:function(s,t){var n=this,o="";V.each(t,function(t,e){var i;e.optgroup!==o&&(i=V("<li>",{text:e.optgroup}),n._addClass(i,"ui-selectmenu-optgroup","ui-menu-divider"+(e.element.parent("optgroup").prop("disabled")?" ui-state-disabled":"")),i.appendTo(s),o=e.optgroup),n._renderItemData(s,e)})},_renderItemData:function(t,e){return this._renderItem(t,e).data("ui-selectmenu-item",e)},_renderItem:function(t,e){var i=V("<li>"),s=V("<div>",{title:e.element.attr("title")});return e.disabled&&this._addClass(i,null,"ui-state-disabled"),this._setText(s,e.label),i.append(s).appendTo(t)},_setText:function(t,e){e?t.text(e):t.html(" ")},_move:function(t,e){var i,s=".ui-menu-item";this.isOpen?i=this.menuItems.eq(this.focusIndex).parent("li"):(i=this.menuItems.eq(this.element[0].selectedIndex).parent("li"),s+=":not(.ui-state-disabled)"),(s="first"===t||"last"===t?i["first"===t?"prevAll":"nextAll"](s).eq(-1):i[t+"All"](s).eq(0)).length&&this.menuInstance.focus(e,s)},_getSelectedItem:function(){return this.menuItems.eq(this.element[0].selectedIndex).parent("li")},_toggle:function(t){this[this.isOpen?"close":"open"](t)},_setSelection:function(){var t;this.range&&(window.getSelection?((t=window.getSelection()).removeAllRanges(),t.addRange(this.range)):this.range.select(),this.button.focus())},_documentClick:{mousedown:function(t){this.isOpen&&(V(t.target).closest(".ui-selectmenu-menu, #"+V.escapeSelector(this.ids.button)).length||this.close(t))}},_buttonEvents:{mousedown:function(){var t;window.getSelection?(t=window.getSelection()).rangeCount&&(this.range=t.getRangeAt(0)):this.range=document.selection.createRange()},click:function(t){this._setSelection(),this._toggle(t)},keydown:function(t){var e=!0;switch(t.keyCode){case V.ui.keyCode.TAB:case V.ui.keyCode.ESCAPE:this.close(t),e=!1;break;case V.ui.keyCode.ENTER:this.isOpen&&this._selectFocusedItem(t);break;case V.ui.keyCode.UP:t.altKey?this._toggle(t):this._move("prev",t);break;case V.ui.keyCode.DOWN:t.altKey?this._toggle(t):this._move("next",t);break;case V.ui.keyCode.SPACE:this.isOpen?this._selectFocusedItem(t):this._toggle(t);break;case V.ui.keyCode.LEFT:this._move("prev",t);break;case V.ui.keyCode.RIGHT:this._move("next",t);break;case V.ui.keyCode.HOME:case V.ui.keyCode.PAGE_UP:this._move("first",t);break;case V.ui.keyCode.END:case V.ui.keyCode.PAGE_DOWN:this._move("last",t);break;default:this.menu.trigger(t),e=!1}e&&t.preventDefault()}},_selectFocusedItem:function(t){var e=this.menuItems.eq(this.focusIndex).parent("li");e.hasClass("ui-state-disabled")||this._select(e.data("ui-selectmenu-item"),t)},_select:function(t,e){var i=this.element[0].selectedIndex;this.element[0].selectedIndex=t.index,this.buttonItem.replaceWith(this.buttonItem=this._renderButtonItem(t)),this._setAria(t),this._trigger("select",e,{item:t}),t.index!==i&&this._trigger("change",e,{item:t}),this.close(e)},_setAria:function(t){t=this.menuItems.eq(t.index).attr("id");this.button.attr({"aria-labelledby":t,"aria-activedescendant":t}),this.menu.attr("aria-activedescendant",t)},_setOption:function(t,e){var i;"icons"===t&&(i=this.button.find("span.ui-icon"),this._removeClass(i,null,this.options.icons.button)._addClass(i,null,e.button)),this._super(t,e),"appendTo"===t&&this.menuWrap.appendTo(this._appendTo()),"width"===t&&this._resizeButton()},_setOptionDisabled:function(t){this._super(t),this.menuInstance.option("disabled",t),this.button.attr("aria-disabled",t),this._toggleClass(this.button,null,"ui-state-disabled",t),this.element.prop("disabled",t),t?(this.button.attr("tabindex",-1),this.close()):this.button.attr("tabindex",0)},_appendTo:function(){var t=this.options.appendTo;return t=!(t=!(t=t&&(t.jquery||t.nodeType?V(t):this.document.find(t).eq(0)))||!t[0]?this.element.closest(".ui-front, dialog"):t).length?this.document[0].body:t},_toggleAttr:function(){this.button.attr("aria-expanded",this.isOpen),this._removeClass(this.button,"ui-selectmenu-button-"+(this.isOpen?"closed":"open"))._addClass(this.button,"ui-selectmenu-button-"+(this.isOpen?"open":"closed"))._toggleClass(this.menuWrap,"ui-selectmenu-open",null,this.isOpen),this.menu.attr("aria-hidden",!this.isOpen)},_resizeButton:function(){var t=this.options.width;!1!==t?(null===t&&(t=this.element.show().outerWidth(),this.element.hide()),this.button.outerWidth(t)):this.button.css("width","")},_resizeMenu:function(){this.menu.outerWidth(Math.max(this.button.outerWidth(),this.menu.width("").outerWidth()+1))},_getCreateOptions:function(){var t=this._super();return t.disabled=this.element.prop("disabled"),t},_parseOptions:function(t){var i=this,s=[];t.each(function(t,e){e.hidden||s.push(i._parseOption(V(e),t))}),this.items=s},_parseOption:function(t,e){var i=t.parent("optgroup");return{element:t,index:e,value:t.val(),label:t.text(),optgroup:i.attr("label")||"",disabled:i.prop("disabled")||t.prop("disabled")}},_destroy:function(){this._unbindFormResetHandler(),this.menuWrap.remove(),this.button.remove(),this.element.show(),this.element.removeUniqueId(),this.labels.attr("for",this.ids.element)}}]),V.widget("ui.slider",V.ui.mouse,{version:"1.13.1",widgetEventPrefix:"slide",options:{animate:!1,classes:{"ui-slider":"ui-corner-all","ui-slider-handle":"ui-corner-all","ui-slider-range":"ui-corner-all ui-widget-header"},distance:0,max:100,min:0,orientation:"horizontal",range:!1,step:1,value:0,values:null,change:null,slide:null,start:null,stop:null},numPages:5,_create:function(){this._keySliding=!1,this._mouseSliding=!1,this._animateOff=!0,this._handleIndex=null,this._detectOrientation(),this._mouseInit(),this._calculateNewMax(),this._addClass("ui-slider ui-slider-"+this.orientation,"ui-widget ui-widget-content"),this._refresh(),this._animateOff=!1},_refresh:function(){this._createRange(),this._createHandles(),this._setupEvents(),this._refreshValue()},_createHandles:function(){var t,e=this.options,i=this.element.find(".ui-slider-handle"),s=[],n=e.values&&e.values.length||1;for(i.length>n&&(i.slice(n).remove(),i=i.slice(0,n)),t=i.length;t<n;t++)s.push("<span tabindex='0'></span>");this.handles=i.add(V(s.join("")).appendTo(this.element)),this._addClass(this.handles,"ui-slider-handle","ui-state-default"),this.handle=this.handles.eq(0),this.handles.each(function(t){V(this).data("ui-slider-handle-index",t).attr("tabIndex",0)})},_createRange:function(){var t=this.options;t.range?(!0===t.range&&(t.values?t.values.length&&2!==t.values.length?t.values=[t.values[0],t.values[0]]:Array.isArray(t.values)&&(t.values=t.values.slice(0)):t.values=[this._valueMin(),this._valueMin()]),this.range&&this.range.length?(this._removeClass(this.range,"ui-slider-range-min ui-slider-range-max"),this.range.css({left:"",bottom:""})):(this.range=V("<div>").appendTo(this.element),this._addClass(this.range,"ui-slider-range")),"min"!==t.range&&"max"!==t.range||this._addClass(this.range,"ui-slider-range-"+t.range)):(this.range&&this.range.remove(),this.range=null)},_setupEvents:function(){this._off(this.handles),this._on(this.handles,this._handleEvents),this._hoverable(this.handles),this._focusable(this.handles)},_destroy:function(){this.handles.remove(),this.range&&this.range.remove(),this._mouseDestroy()},_mouseCapture:function(t){var i,s,n,o,e,a,r=this,l=this.options;return!l.disabled&&(this.elementSize={width:this.element.outerWidth(),height:this.element.outerHeight()},this.elementOffset=this.element.offset(),a={x:t.pageX,y:t.pageY},i=this._normValueFromMouse(a),s=this._valueMax()-this._valueMin()+1,this.handles.each(function(t){var e=Math.abs(i-r.values(t));(e<s||s===e&&(t===r._lastChangedValue||r.values(t)===l.min))&&(s=e,n=V(this),o=t)}),!1!==this._start(t,o)&&(this._mouseSliding=!0,this._handleIndex=o,this._addClass(n,null,"ui-state-active"),n.trigger("focus"),e=n.offset(),a=!V(t.target).parents().addBack().is(".ui-slider-handle"),this._clickOffset=a?{left:0,top:0}:{left:t.pageX-e.left-n.width()/2,top:t.pageY-e.top-n.height()/2-(parseInt(n.css("borderTopWidth"),10)||0)-(parseInt(n.css("borderBottomWidth"),10)||0)+(parseInt(n.css("marginTop"),10)||0)},this.handles.hasClass("ui-state-hover")||this._slide(t,o,i),this._animateOff=!0))},_mouseStart:function(){return!0},_mouseDrag:function(t){var e={x:t.pageX,y:t.pageY},e=this._normValueFromMouse(e);return this._slide(t,this._handleIndex,e),!1},_mouseStop:function(t){return this._removeClass(this.handles,null,"ui-state-active"),this._mouseSliding=!1,this._stop(t,this._handleIndex),this._change(t,this._handleIndex),this._handleIndex=null,this._clickOffset=null,this._animateOff=!1},_detectOrientation:function(){this.orientation="vertical"===this.options.orientation?"vertical":"horizontal"},_normValueFromMouse:function(t){var e,t="horizontal"===this.orientation?(e=this.elementSize.width,t.x-this.elementOffset.left-(this._clickOffset?this._clickOffset.left:0)):(e=this.elementSize.height,t.y-this.elementOffset.top-(this._clickOffset?this._clickOffset.top:0)),t=t/e;return(t=1<t?1:t)<0&&(t=0),"vertical"===this.orientation&&(t=1-t),e=this._valueMax()-this._valueMin(),e=this._valueMin()+t*e,this._trimAlignValue(e)},_uiHash:function(t,e,i){var s={handle:this.handles[t],handleIndex:t,value:void 0!==e?e:this.value()};return this._hasMultipleValues()&&(s.value=void 0!==e?e:this.values(t),s.values=i||this.values()),s},_hasMultipleValues:function(){return this.options.values&&this.options.values.length},_start:function(t,e){return this._trigger("start",t,this._uiHash(e))},_slide:function(t,e,i){var s,n=this.value(),o=this.values();this._hasMultipleValues()&&(s=this.values(e?0:1),n=this.values(e),2===this.options.values.length&&!0===this.options.range&&(i=0===e?Math.min(s,i):Math.max(s,i)),o[e]=i),i!==n&&!1!==this._trigger("slide",t,this._uiHash(e,i,o))&&(this._hasMultipleValues()?this.values(e,i):this.value(i))},_stop:function(t,e){this._trigger("stop",t,this._uiHash(e))},_change:function(t,e){this._keySliding||this._mouseSliding||(this._lastChangedValue=e,this._trigger("change",t,this._uiHash(e)))},value:function(t){return arguments.length?(this.options.value=this._trimAlignValue(t),this._refreshValue(),void this._change(null,0)):this._value()},values:function(t,e){var i,s,n;if(1<arguments.length)return this.options.values[t]=this._trimAlignValue(e),this._refreshValue(),void this._change(null,t);if(!arguments.length)return this._values();if(!Array.isArray(t))return this._hasMultipleValues()?this._values(t):this.value();for(i=this.options.values,s=t,n=0;n<i.length;n+=1)i[n]=this._trimAlignValue(s[n]),this._change(null,n);this._refreshValue()},_setOption:function(t,e){var i,s=0;switch("range"===t&&!0===this.options.range&&("min"===e?(this.options.value=this._values(0),this.options.values=null):"max"===e&&(this.options.value=this._values(this.options.values.length-1),this.options.values=null)),Array.isArray(this.options.values)&&(s=this.options.values.length),this._super(t,e),t){case"orientation":this._detectOrientation(),this._removeClass("ui-slider-horizontal ui-slider-vertical")._addClass("ui-slider-"+this.orientation),this._refreshValue(),this.options.range&&this._refreshRange(e),this.handles.css("horizontal"===e?"bottom":"left","");break;case"value":this._animateOff=!0,this._refreshValue(),this._change(null,0),this._animateOff=!1;break;case"values":for(this._animateOff=!0,this._refreshValue(),i=s-1;0<=i;i--)this._change(null,i);this._animateOff=!1;break;case"step":case"min":case"max":this._animateOff=!0,this._calculateNewMax(),this._refreshValue(),this._animateOff=!1;break;case"range":this._animateOff=!0,this._refresh(),this._animateOff=!1}},_setOptionDisabled:function(t){this._super(t),this._toggleClass(null,"ui-state-disabled",!!t)},_value:function(){var t=this.options.value;return t=this._trimAlignValue(t)},_values:function(t){var e,i;if(arguments.length)return t=this.options.values[t],t=this._trimAlignValue(t);if(this._hasMultipleValues()){for(e=this.options.values.slice(),i=0;i<e.length;i+=1)e[i]=this._trimAlignValue(e[i]);return e}return[]},_trimAlignValue:function(t){if(t<=this._valueMin())return this._valueMin();if(t>=this._valueMax())return this._valueMax();var e=0<this.options.step?this.options.step:1,i=(t-this._valueMin())%e,t=t-i;return 2*Math.abs(i)>=e&&(t+=0<i?e:-e),parseFloat(t.toFixed(5))},_calculateNewMax:function(){var t=this.options.max,e=this._valueMin(),i=this.options.step;(t=Math.round((t-e)/i)*i+e)>this.options.max&&(t-=i),this.max=parseFloat(t.toFixed(this._precision()))},_precision:function(){var t=this._precisionOf(this.options.step);return t=null!==this.options.min?Math.max(t,this._precisionOf(this.options.min)):t},_precisionOf:function(t){var e=t.toString(),t=e.indexOf(".");return-1===t?0:e.length-t-1},_valueMin:function(){return this.options.min},_valueMax:function(){return this.max},_refreshRange:function(t){"vertical"===t&&this.range.css({width:"",left:""}),"horizontal"===t&&this.range.css({height:"",bottom:""})},_refreshValue:function(){var e,i,t,s,n,o=this.options.range,a=this.options,r=this,l=!this._animateOff&&a.animate,h={};this._hasMultipleValues()?this.handles.each(function(t){i=(r.values(t)-r._valueMin())/(r._valueMax()-r._valueMin())*100,h["horizontal"===r.orientation?"left":"bottom"]=i+"%",V(this).stop(1,1)[l?"animate":"css"](h,a.animate),!0===r.options.range&&("horizontal"===r.orientation?(0===t&&r.range.stop(1,1)[l?"animate":"css"]({left:i+"%"},a.animate),1===t&&r.range[l?"animate":"css"]({width:i-e+"%"},{queue:!1,duration:a.animate})):(0===t&&r.range.stop(1,1)[l?"animate":"css"]({bottom:i+"%"},a.animate),1===t&&r.range[l?"animate":"css"]({height:i-e+"%"},{queue:!1,duration:a.animate}))),e=i}):(t=this.value(),s=this._valueMin(),n=this._valueMax(),i=n!==s?(t-s)/(n-s)*100:0,h["horizontal"===this.orientation?"left":"bottom"]=i+"%",this.handle.stop(1,1)[l?"animate":"css"](h,a.animate),"min"===o&&"horizontal"===this.orientation&&this.range.stop(1,1)[l?"animate":"css"]({width:i+"%"},a.animate),"max"===o&&"horizontal"===this.orientation&&this.range.stop(1,1)[l?"animate":"css"]({width:100-i+"%"},a.animate),"min"===o&&"vertical"===this.orientation&&this.range.stop(1,1)[l?"animate":"css"]({height:i+"%"},a.animate),"max"===o&&"vertical"===this.orientation&&this.range.stop(1,1)[l?"animate":"css"]({height:100-i+"%"},a.animate))},_handleEvents:{keydown:function(t){var e,i,s,n=V(t.target).data("ui-slider-handle-index");switch(t.keyCode){case V.ui.keyCode.HOME:case V.ui.keyCode.END:case V.ui.keyCode.PAGE_UP:case V.ui.keyCode.PAGE_DOWN:case V.ui.keyCode.UP:case V.ui.keyCode.RIGHT:case V.ui.keyCode.DOWN:case V.ui.keyCode.LEFT:if(t.preventDefault(),!this._keySliding&&(this._keySliding=!0,this._addClass(V(t.target),null,"ui-state-active"),!1===this._start(t,n)))return}switch(s=this.options.step,e=i=this._hasMultipleValues()?this.values(n):this.value(),t.keyCode){case V.ui.keyCode.HOME:i=this._valueMin();break;case V.ui.keyCode.END:i=this._valueMax();break;case V.ui.keyCode.PAGE_UP:i=this._trimAlignValue(e+(this._valueMax()-this._valueMin())/this.numPages);break;case V.ui.keyCode.PAGE_DOWN:i=this._trimAlignValue(e-(this._valueMax()-this._valueMin())/this.numPages);break;case V.ui.keyCode.UP:case V.ui.keyCode.RIGHT:if(e===this._valueMax())return;i=this._trimAlignValue(e+s);break;case V.ui.keyCode.DOWN:case V.ui.keyCode.LEFT:if(e===this._valueMin())return;i=this._trimAlignValue(e-s)}this._slide(t,n,i)},keyup:function(t){var e=V(t.target).data("ui-slider-handle-index");this._keySliding&&(this._keySliding=!1,this._stop(t,e),this._change(t,e),this._removeClass(V(t.target),null,"ui-state-active"))}}}),V.widget("ui.sortable",V.ui.mouse,{version:"1.13.1",widgetEventPrefix:"sort",ready:!1,options:{appendTo:"parent",axis:!1,connectWith:!1,containment:!1,cursor:"auto",cursorAt:!1,dropOnEmpty:!0,forcePlaceholderSize:!1,forceHelperSize:!1,grid:!1,handle:!1,helper:"original",items:"> *",opacity:!1,placeholder:!1,revert:!1,scroll:!0,scrollSensitivity:20,scrollSpeed:20,scope:"default",tolerance:"intersect",zIndex:1e3,activate:null,beforeStop:null,change:null,deactivate:null,out:null,over:null,receive:null,remove:null,sort:null,start:null,stop:null,update:null},_isOverAxis:function(t,e,i){return e<=t&&t<e+i},_isFloating:function(t){return/left|right/.test(t.css("float"))||/inline|table-cell/.test(t.css("display"))},_create:function(){this.containerCache={},this._addClass("ui-sortable"),this.refresh(),this.offset=this.element.offset(),this._mouseInit(),this._setHandleClassName(),this.ready=!0},_setOption:function(t,e){this._super(t,e),"handle"===t&&this._setHandleClassName()},_setHandleClassName:function(){var t=this;this._removeClass(this.element.find(".ui-sortable-handle"),"ui-sortable-handle"),V.each(this.items,function(){t._addClass(this.instance.options.handle?this.item.find(this.instance.options.handle):this.item,"ui-sortable-handle")})},_destroy:function(){this._mouseDestroy();for(var t=this.items.length-1;0<=t;t--)this.items[t].item.removeData(this.widgetName+"-item");return this},_mouseCapture:function(t,e){var i=null,s=!1,n=this;return!this.reverting&&(!this.options.disabled&&"static"!==this.options.type&&(this._refreshItems(t),V(t.target).parents().each(function(){if(V.data(this,n.widgetName+"-item")===n)return i=V(this),!1}),!!(i=V.data(t.target,n.widgetName+"-item")===n?V(t.target):i)&&(!(this.options.handle&&!e&&(V(this.options.handle,i).find("*").addBack().each(function(){this===t.target&&(s=!0)}),!s))&&(this.currentItem=i,this._removeCurrentsFromItems(),!0))))},_mouseStart:function(t,e,i){var s,n,o=this.options;if((this.currentContainer=this).refreshPositions(),this.appendTo=V("parent"!==o.appendTo?o.appendTo:this.currentItem.parent()),this.helper=this._createHelper(t),this._cacheHelperProportions(),this._cacheMargins(),this.offset=this.currentItem.offset(),this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left},V.extend(this.offset,{click:{left:t.pageX-this.offset.left,top:t.pageY-this.offset.top},relative:this._getRelativeOffset()}),this.helper.css("position","absolute"),this.cssPosition=this.helper.css("position"),o.cursorAt&&this._adjustOffsetFromHelper(o.cursorAt),this.domPosition={prev:this.currentItem.prev()[0],parent:this.currentItem.parent()[0]},this.helper[0]!==this.currentItem[0]&&this.currentItem.hide(),this._createPlaceholder(),this.scrollParent=this.placeholder.scrollParent(),V.extend(this.offset,{parent:this._getParentOffset()}),o.containment&&this._setContainment(),o.cursor&&"auto"!==o.cursor&&(n=this.document.find("body"),this.storedCursor=n.css("cursor"),n.css("cursor",o.cursor),this.storedStylesheet=V("<style>*{ cursor: "+o.cursor+" !important; }</style>").appendTo(n)),o.zIndex&&(this.helper.css("zIndex")&&(this._storedZIndex=this.helper.css("zIndex")),this.helper.css("zIndex",o.zIndex)),o.opacity&&(this.helper.css("opacity")&&(this._storedOpacity=this.helper.css("opacity")),this.helper.css("opacity",o.opacity)),this.scrollParent[0]!==this.document[0]&&"HTML"!==this.scrollParent[0].tagName&&(this.overflowOffset=this.scrollParent.offset()),this._trigger("start",t,this._uiHash()),this._preserveHelperProportions||this._cacheHelperProportions(),!i)for(s=this.containers.length-1;0<=s;s--)this.containers[s]._trigger("activate",t,this._uiHash(this));return V.ui.ddmanager&&(V.ui.ddmanager.current=this),V.ui.ddmanager&&!o.dropBehaviour&&V.ui.ddmanager.prepareOffsets(this,t),this.dragging=!0,this._addClass(this.helper,"ui-sortable-helper"),this.helper.parent().is(this.appendTo)||(this.helper.detach().appendTo(this.appendTo),this.offset.parent=this._getParentOffset()),this.position=this.originalPosition=this._generatePosition(t),this.originalPageX=t.pageX,this.originalPageY=t.pageY,this.lastPositionAbs=this.positionAbs=this._convertPositionTo("absolute"),this._mouseDrag(t),!0},_scroll:function(t){var e=this.options,i=!1;return this.scrollParent[0]!==this.document[0]&&"HTML"!==this.scrollParent[0].tagName?(this.overflowOffset.top+this.scrollParent[0].offsetHeight-t.pageY<e.scrollSensitivity?this.scrollParent[0].scrollTop=i=this.scrollParent[0].scrollTop+e.scrollSpeed:t.pageY-this.overflowOffset.top<e.scrollSensitivity&&(this.scrollParent[0].scrollTop=i=this.scrollParent[0].scrollTop-e.scrollSpeed),this.overflowOffset.left+this.scrollParent[0].offsetWidth-t.pageX<e.scrollSensitivity?this.scrollParent[0].scrollLeft=i=this.scrollParent[0].scrollLeft+e.scrollSpeed:t.pageX-this.overflowOffset.left<e.scrollSensitivity&&(this.scrollParent[0].scrollLeft=i=this.scrollParent[0].scrollLeft-e.scrollSpeed)):(t.pageY-this.document.scrollTop()<e.scrollSensitivity?i=this.document.scrollTop(this.document.scrollTop()-e.scrollSpeed):this.window.height()-(t.pageY-this.document.scrollTop())<e.scrollSensitivity&&(i=this.document.scrollTop(this.document.scrollTop()+e.scrollSpeed)),t.pageX-this.document.scrollLeft()<e.scrollSensitivity?i=this.document.scrollLeft(this.document.scrollLeft()-e.scrollSpeed):this.window.width()-(t.pageX-this.document.scrollLeft())<e.scrollSensitivity&&(i=this.document.scrollLeft(this.document.scrollLeft()+e.scrollSpeed))),i},_mouseDrag:function(t){var e,i,s,n,o=this.options;for(this.position=this._generatePosition(t),this.positionAbs=this._convertPositionTo("absolute"),this.options.axis&&"y"===this.options.axis||(this.helper[0].style.left=this.position.left+"px"),this.options.axis&&"x"===this.options.axis||(this.helper[0].style.top=this.position.top+"px"),o.scroll&&!1!==this._scroll(t)&&(this._refreshItemPositions(!0),V.ui.ddmanager&&!o.dropBehaviour&&V.ui.ddmanager.prepareOffsets(this,t)),this.dragDirection={vertical:this._getDragVerticalDirection(),horizontal:this._getDragHorizontalDirection()},e=this.items.length-1;0<=e;e--)if(s=(i=this.items[e]).item[0],(n=this._intersectsWithPointer(i))&&i.instance===this.currentContainer&&!(s===this.currentItem[0]||this.placeholder[1===n?"next":"prev"]()[0]===s||V.contains(this.placeholder[0],s)||"semi-dynamic"===this.options.type&&V.contains(this.element[0],s))){if(this.direction=1===n?"down":"up","pointer"!==this.options.tolerance&&!this._intersectsWithSides(i))break;this._rearrange(t,i),this._trigger("change",t,this._uiHash());break}return this._contactContainers(t),V.ui.ddmanager&&V.ui.ddmanager.drag(this,t),this._trigger("sort",t,this._uiHash()),this.lastPositionAbs=this.positionAbs,!1},_mouseStop:function(t,e){var i,s,n,o;if(t)return V.ui.ddmanager&&!this.options.dropBehaviour&&V.ui.ddmanager.drop(this,t),this.options.revert?(s=(i=this).placeholder.offset(),o={},(n=this.options.axis)&&"x"!==n||(o.left=s.left-this.offset.parent.left-this.margins.left+(this.offsetParent[0]===this.document[0].body?0:this.offsetParent[0].scrollLeft)),n&&"y"!==n||(o.top=s.top-this.offset.parent.top-this.margins.top+(this.offsetParent[0]===this.document[0].body?0:this.offsetParent[0].scrollTop)),this.reverting=!0,V(this.helper).animate(o,parseInt(this.options.revert,10)||500,function(){i._clear(t)})):this._clear(t,e),!1},cancel:function(){if(this.dragging){this._mouseUp(new V.Event("mouseup",{target:null})),"original"===this.options.helper?(this.currentItem.css(this._storedCSS),this._removeClass(this.currentItem,"ui-sortable-helper")):this.currentItem.show();for(var t=this.containers.length-1;0<=t;t--)this.containers[t]._trigger("deactivate",null,this._uiHash(this)),this.containers[t].containerCache.over&&(this.containers[t]._trigger("out",null,this._uiHash(this)),this.containers[t].containerCache.over=0)}return this.placeholder&&(this.placeholder[0].parentNode&&this.placeholder[0].parentNode.removeChild(this.placeholder[0]),"original"!==this.options.helper&&this.helper&&this.helper[0].parentNode&&this.helper.remove(),V.extend(this,{helper:null,dragging:!1,reverting:!1,_noFinalSort:null}),this.domPosition.prev?V(this.domPosition.prev).after(this.currentItem):V(this.domPosition.parent).prepend(this.currentItem)),this},serialize:function(e){var t=this._getItemsAsjQuery(e&&e.connected),i=[];return e=e||{},V(t).each(function(){var t=(V(e.item||this).attr(e.attribute||"id")||"").match(e.expression||/(.+)[\-=_](.+)/);t&&i.push((e.key||t[1]+"[]")+"="+(e.key&&e.expression?t[1]:t[2]))}),!i.length&&e.key&&i.push(e.key+"="),i.join("&")},toArray:function(t){var e=this._getItemsAsjQuery(t&&t.connected),i=[];return t=t||{},e.each(function(){i.push(V(t.item||this).attr(t.attribute||"id")||"")}),i},_intersectsWith:function(t){var e=this.positionAbs.left,i=e+this.helperProportions.width,s=this.positionAbs.top,n=s+this.helperProportions.height,o=t.left,a=o+t.width,r=t.top,l=r+t.height,h=this.offset.click.top,c=this.offset.click.left,h="x"===this.options.axis||r<s+h&&s+h<l,c="y"===this.options.axis||o<e+c&&e+c<a;return"pointer"===this.options.tolerance||this.options.forcePointerForContainers||"pointer"!==this.options.tolerance&&this.helperProportions[this.floating?"width":"height"]>t[this.floating?"width":"height"]?h&&c:o<e+this.helperProportions.width/2&&i-this.helperProportions.width/2<a&&r<s+this.helperProportions.height/2&&n-this.helperProportions.height/2<l},_intersectsWithPointer:function(t){var e="x"===this.options.axis||this._isOverAxis(this.positionAbs.top+this.offset.click.top,t.top,t.height),t="y"===this.options.axis||this._isOverAxis(this.positionAbs.left+this.offset.click.left,t.left,t.width);return!(!e||!t)&&(e=this.dragDirection.vertical,t=this.dragDirection.horizontal,this.floating?"right"===t||"down"===e?2:1:e&&("down"===e?2:1))},_intersectsWithSides:function(t){var e=this._isOverAxis(this.positionAbs.top+this.offset.click.top,t.top+t.height/2,t.height),i=this._isOverAxis(this.positionAbs.left+this.offset.click.left,t.left+t.width/2,t.width),s=this.dragDirection.vertical,t=this.dragDirection.horizontal;return this.floating&&t?"right"===t&&i||"left"===t&&!i:s&&("down"===s&&e||"up"===s&&!e)},_getDragVerticalDirection:function(){var t=this.positionAbs.top-this.lastPositionAbs.top;return 0!=t&&(0<t?"down":"up")},_getDragHorizontalDirection:function(){var t=this.positionAbs.left-this.lastPositionAbs.left;return 0!=t&&(0<t?"right":"left")},refresh:function(t){return this._refreshItems(t),this._setHandleClassName(),this.refreshPositions(),this},_connectWith:function(){var t=this.options;return t.connectWith.constructor===String?[t.connectWith]:t.connectWith},_getItemsAsjQuery:function(t){var e,i,s,n,o=[],a=[],r=this._connectWith();if(r&&t)for(e=r.length-1;0<=e;e--)for(i=(s=V(r[e],this.document[0])).length-1;0<=i;i--)(n=V.data(s[i],this.widgetFullName))&&n!==this&&!n.options.disabled&&a.push(["function"==typeof n.options.items?n.options.items.call(n.element):V(n.options.items,n.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),n]);function l(){o.push(this)}for(a.push(["function"==typeof this.options.items?this.options.items.call(this.element,null,{options:this.options,item:this.currentItem}):V(this.options.items,this.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),this]),e=a.length-1;0<=e;e--)a[e][0].each(l);return V(o)},_removeCurrentsFromItems:function(){var i=this.currentItem.find(":data("+this.widgetName+"-item)");this.items=V.grep(this.items,function(t){for(var e=0;e<i.length;e++)if(i[e]===t.item[0])return!1;return!0})},_refreshItems:function(t){this.items=[],this.containers=[this];var e,i,s,n,o,a,r,l,h=this.items,c=[["function"==typeof this.options.items?this.options.items.call(this.element[0],t,{item:this.currentItem}):V(this.options.items,this.element),this]],u=this._connectWith();if(u&&this.ready)for(e=u.length-1;0<=e;e--)for(i=(s=V(u[e],this.document[0])).length-1;0<=i;i--)(n=V.data(s[i],this.widgetFullName))&&n!==this&&!n.options.disabled&&(c.push(["function"==typeof n.options.items?n.options.items.call(n.element[0],t,{item:this.currentItem}):V(n.options.items,n.element),n]),this.containers.push(n));for(e=c.length-1;0<=e;e--)for(o=c[e][1],l=(a=c[e][i=0]).length;i<l;i++)(r=V(a[i])).data(this.widgetName+"-item",o),h.push({item:r,instance:o,width:0,height:0,left:0,top:0})},_refreshItemPositions:function(t){for(var e,i,s=this.items.length-1;0<=s;s--)e=this.items[s],this.currentContainer&&e.instance!==this.currentContainer&&e.item[0]!==this.currentItem[0]||(i=this.options.toleranceElement?V(this.options.toleranceElement,e.item):e.item,t||(e.width=i.outerWidth(),e.height=i.outerHeight()),i=i.offset(),e.left=i.left,e.top=i.top)},refreshPositions:function(t){var e,i;if(this.floating=!!this.items.length&&("x"===this.options.axis||this._isFloating(this.items[0].item)),this.offsetParent&&this.helper&&(this.offset.parent=this._getParentOffset()),this._refreshItemPositions(t),this.options.custom&&this.options.custom.refreshContainers)this.options.custom.refreshContainers.call(this);else for(e=this.containers.length-1;0<=e;e--)i=this.containers[e].element.offset(),this.containers[e].containerCache.left=i.left,this.containers[e].containerCache.top=i.top,this.containers[e].containerCache.width=this.containers[e].element.outerWidth(),this.containers[e].containerCache.height=this.containers[e].element.outerHeight();return this},_createPlaceholder:function(i){var s,n,o=(i=i||this).options;o.placeholder&&o.placeholder.constructor!==String||(s=o.placeholder,n=i.currentItem[0].nodeName.toLowerCase(),o.placeholder={element:function(){var t=V("<"+n+">",i.document[0]);return i._addClass(t,"ui-sortable-placeholder",s||i.currentItem[0].className)._removeClass(t,"ui-sortable-helper"),"tbody"===n?i._createTrPlaceholder(i.currentItem.find("tr").eq(0),V("<tr>",i.document[0]).appendTo(t)):"tr"===n?i._createTrPlaceholder(i.currentItem,t):"img"===n&&t.attr("src",i.currentItem.attr("src")),s||t.css("visibility","hidden"),t},update:function(t,e){s&&!o.forcePlaceholderSize||(e.height()&&(!o.forcePlaceholderSize||"tbody"!==n&&"tr"!==n)||e.height(i.currentItem.innerHeight()-parseInt(i.currentItem.css("paddingTop")||0,10)-parseInt(i.currentItem.css("paddingBottom")||0,10)),e.width()||e.width(i.currentItem.innerWidth()-parseInt(i.currentItem.css("paddingLeft")||0,10)-parseInt(i.currentItem.css("paddingRight")||0,10)))}}),i.placeholder=V(o.placeholder.element.call(i.element,i.currentItem)),i.currentItem.after(i.placeholder),o.placeholder.update(i,i.placeholder)},_createTrPlaceholder:function(t,e){var i=this;t.children().each(function(){V("<td> </td>",i.document[0]).attr("colspan",V(this).attr("colspan")||1).appendTo(e)})},_contactContainers:function(t){for(var e,i,s,n,o,a,r,l,h,c=null,u=null,d=this.containers.length-1;0<=d;d--)V.contains(this.currentItem[0],this.containers[d].element[0])||(this._intersectsWith(this.containers[d].containerCache)?c&&V.contains(this.containers[d].element[0],c.element[0])||(c=this.containers[d],u=d):this.containers[d].containerCache.over&&(this.containers[d]._trigger("out",t,this._uiHash(this)),this.containers[d].containerCache.over=0));if(c)if(1===this.containers.length)this.containers[u].containerCache.over||(this.containers[u]._trigger("over",t,this._uiHash(this)),this.containers[u].containerCache.over=1);else{for(i=1e4,s=null,n=(l=c.floating||this._isFloating(this.currentItem))?"left":"top",o=l?"width":"height",h=l?"pageX":"pageY",e=this.items.length-1;0<=e;e--)V.contains(this.containers[u].element[0],this.items[e].item[0])&&this.items[e].item[0]!==this.currentItem[0]&&(a=this.items[e].item.offset()[n],r=!1,t[h]-a>this.items[e][o]/2&&(r=!0),Math.abs(t[h]-a)<i&&(i=Math.abs(t[h]-a),s=this.items[e],this.direction=r?"up":"down"));(s||this.options.dropOnEmpty)&&(this.currentContainer!==this.containers[u]?(s?this._rearrange(t,s,null,!0):this._rearrange(t,null,this.containers[u].element,!0),this._trigger("change",t,this._uiHash()),this.containers[u]._trigger("change",t,this._uiHash(this)),this.currentContainer=this.containers[u],this.options.placeholder.update(this.currentContainer,this.placeholder),this.scrollParent=this.placeholder.scrollParent(),this.scrollParent[0]!==this.document[0]&&"HTML"!==this.scrollParent[0].tagName&&(this.overflowOffset=this.scrollParent.offset()),this.containers[u]._trigger("over",t,this._uiHash(this)),this.containers[u].containerCache.over=1):this.currentContainer.containerCache.over||(this.containers[u]._trigger("over",t,this._uiHash()),this.currentContainer.containerCache.over=1))}},_createHelper:function(t){var e=this.options,t="function"==typeof e.helper?V(e.helper.apply(this.element[0],[t,this.currentItem])):"clone"===e.helper?this.currentItem.clone():this.currentItem;return t.parents("body").length||this.appendTo[0].appendChild(t[0]),t[0]===this.currentItem[0]&&(this._storedCSS={width:this.currentItem[0].style.width,height:this.currentItem[0].style.height,position:this.currentItem.css("position"),top:this.currentItem.css("top"),left:this.currentItem.css("left")}),t[0].style.width&&!e.forceHelperSize||t.width(this.currentItem.width()),t[0].style.height&&!e.forceHelperSize||t.height(this.currentItem.height()),t},_adjustOffsetFromHelper:function(t){"string"==typeof t&&(t=t.split(" ")),"left"in(t=Array.isArray(t)?{left:+t[0],top:+t[1]||0}:t)&&(this.offset.click.left=t.left+this.margins.left),"right"in t&&(this.offset.click.left=this.helperProportions.width-t.right+this.margins.left),"top"in t&&(this.offset.click.top=t.top+this.margins.top),"bottom"in t&&(this.offset.click.top=this.helperProportions.height-t.bottom+this.margins.top)},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var t=this.offsetParent.offset();return"absolute"===this.cssPosition&&this.scrollParent[0]!==this.document[0]&&V.contains(this.scrollParent[0],this.offsetParent[0])&&(t.left+=this.scrollParent.scrollLeft(),t.top+=this.scrollParent.scrollTop()),{top:(t=this.offsetParent[0]===this.document[0].body||this.offsetParent[0].tagName&&"html"===this.offsetParent[0].tagName.toLowerCase()&&V.ui.ie?{top:0,left:0}:t).top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:t.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if("relative"!==this.cssPosition)return{top:0,left:0};var t=this.currentItem.position();return{top:t.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:t.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}},_cacheMargins:function(){this.margins={left:parseInt(this.currentItem.css("marginLeft"),10)||0,top:parseInt(this.currentItem.css("marginTop"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var t,e,i=this.options;"parent"===i.containment&&(i.containment=this.helper[0].parentNode),"document"!==i.containment&&"window"!==i.containment||(this.containment=[0-this.offset.relative.left-this.offset.parent.left,0-this.offset.relative.top-this.offset.parent.top,"document"===i.containment?this.document.width():this.window.width()-this.helperProportions.width-this.margins.left,("document"===i.containment?this.document.height()||document.body.parentNode.scrollHeight:this.window.height()||this.document[0].body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top]),/^(document|window|parent)$/.test(i.containment)||(t=V(i.containment)[0],e=V(i.containment).offset(),i="hidden"!==V(t).css("overflow"),this.containment=[e.left+(parseInt(V(t).css("borderLeftWidth"),10)||0)+(parseInt(V(t).css("paddingLeft"),10)||0)-this.margins.left,e.top+(parseInt(V(t).css("borderTopWidth"),10)||0)+(parseInt(V(t).css("paddingTop"),10)||0)-this.margins.top,e.left+(i?Math.max(t.scrollWidth,t.offsetWidth):t.offsetWidth)-(parseInt(V(t).css("borderLeftWidth"),10)||0)-(parseInt(V(t).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left,e.top+(i?Math.max(t.scrollHeight,t.offsetHeight):t.offsetHeight)-(parseInt(V(t).css("borderTopWidth"),10)||0)-(parseInt(V(t).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top])},_convertPositionTo:function(t,e){e=e||this.position;var i="absolute"===t?1:-1,s="absolute"!==this.cssPosition||this.scrollParent[0]!==this.document[0]&&V.contains(this.scrollParent[0],this.offsetParent[0])?this.scrollParent:this.offsetParent,t=/(html|body)/i.test(s[0].tagName);return{top:e.top+this.offset.relative.top*i+this.offset.parent.top*i-("fixed"===this.cssPosition?-this.scrollParent.scrollTop():t?0:s.scrollTop())*i,left:e.left+this.offset.relative.left*i+this.offset.parent.left*i-("fixed"===this.cssPosition?-this.scrollParent.scrollLeft():t?0:s.scrollLeft())*i}},_generatePosition:function(t){var e=this.options,i=t.pageX,s=t.pageY,n="absolute"!==this.cssPosition||this.scrollParent[0]!==this.document[0]&&V.contains(this.scrollParent[0],this.offsetParent[0])?this.scrollParent:this.offsetParent,o=/(html|body)/i.test(n[0].tagName);return"relative"!==this.cssPosition||this.scrollParent[0]!==this.document[0]&&this.scrollParent[0]!==this.offsetParent[0]||(this.offset.relative=this._getRelativeOffset()),this.originalPosition&&(this.containment&&(t.pageX-this.offset.click.left<this.containment[0]&&(i=this.containment[0]+this.offset.click.left),t.pageY-this.offset.click.top<this.containment[1]&&(s=this.containment[1]+this.offset.click.top),t.pageX-this.offset.click.left>this.containment[2]&&(i=this.containment[2]+this.offset.click.left),t.pageY-this.offset.click.top>this.containment[3]&&(s=this.containment[3]+this.offset.click.top)),e.grid&&(t=this.originalPageY+Math.round((s-this.originalPageY)/e.grid[1])*e.grid[1],s=!this.containment||t-this.offset.click.top>=this.containment[1]&&t-this.offset.click.top<=this.containment[3]?t:t-this.offset.click.top>=this.containment[1]?t-e.grid[1]:t+e.grid[1],t=this.originalPageX+Math.round((i-this.originalPageX)/e.grid[0])*e.grid[0],i=!this.containment||t-this.offset.click.left>=this.containment[0]&&t-this.offset.click.left<=this.containment[2]?t:t-this.offset.click.left>=this.containment[0]?t-e.grid[0]:t+e.grid[0])),{top:s-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+("fixed"===this.cssPosition?-this.scrollParent.scrollTop():o?0:n.scrollTop()),left:i-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+("fixed"===this.cssPosition?-this.scrollParent.scrollLeft():o?0:n.scrollLeft())}},_rearrange:function(t,e,i,s){i?i[0].appendChild(this.placeholder[0]):e.item[0].parentNode.insertBefore(this.placeholder[0],"down"===this.direction?e.item[0]:e.item[0].nextSibling),this.counter=this.counter?++this.counter:1;var n=this.counter;this._delay(function(){n===this.counter&&this.refreshPositions(!s)})},_clear:function(t,e){this.reverting=!1;var i,s=[];if(!this._noFinalSort&&this.currentItem.parent().length&&this.placeholder.before(this.currentItem),this._noFinalSort=null,this.helper[0]===this.currentItem[0]){for(i in this._storedCSS)"auto"!==this._storedCSS[i]&&"static"!==this._storedCSS[i]||(this._storedCSS[i]="");this.currentItem.css(this._storedCSS),this._removeClass(this.currentItem,"ui-sortable-helper")}else this.currentItem.show();function n(e,i,s){return function(t){s._trigger(e,t,i._uiHash(i))}}for(this.fromOutside&&!e&&s.push(function(t){this._trigger("receive",t,this._uiHash(this.fromOutside))}),!this.fromOutside&&this.domPosition.prev===this.currentItem.prev().not(".ui-sortable-helper")[0]&&this.domPosition.parent===this.currentItem.parent()[0]||e||s.push(function(t){this._trigger("update",t,this._uiHash())}),this!==this.currentContainer&&(e||(s.push(function(t){this._trigger("remove",t,this._uiHash())}),s.push(function(e){return function(t){e._trigger("receive",t,this._uiHash(this))}}.call(this,this.currentContainer)),s.push(function(e){return function(t){e._trigger("update",t,this._uiHash(this))}}.call(this,this.currentContainer)))),i=this.containers.length-1;0<=i;i--)e||s.push(n("deactivate",this,this.containers[i])),this.containers[i].containerCache.over&&(s.push(n("out",this,this.containers[i])),this.containers[i].containerCache.over=0);if(this.storedCursor&&(this.document.find("body").css("cursor",this.storedCursor),this.storedStylesheet.remove()),this._storedOpacity&&this.helper.css("opacity",this._storedOpacity),this._storedZIndex&&this.helper.css("zIndex","auto"===this._storedZIndex?"":this._storedZIndex),this.dragging=!1,e||this._trigger("beforeStop",t,this._uiHash()),this.placeholder[0].parentNode.removeChild(this.placeholder[0]),this.cancelHelperRemoval||(this.helper[0]!==this.currentItem[0]&&this.helper.remove(),this.helper=null),!e){for(i=0;i<s.length;i++)s[i].call(this,t);this._trigger("stop",t,this._uiHash())}return this.fromOutside=!1,!this.cancelHelperRemoval},_trigger:function(){!1===V.Widget.prototype._trigger.apply(this,arguments)&&this.cancel()},_uiHash:function(t){var e=t||this;return{helper:e.helper,placeholder:e.placeholder||V([]),position:e.position,originalPosition:e.originalPosition,offset:e.positionAbs,item:e.currentItem,sender:t?t.element:null}}});function ht(e){return function(){var t=this.element.val();e.apply(this,arguments),this._refresh(),t!==this.element.val()&&this._trigger("change")}}V.widget("ui.spinner",{version:"1.13.1",defaultElement:"<input>",widgetEventPrefix:"spin",options:{classes:{"ui-spinner":"ui-corner-all","ui-spinner-down":"ui-corner-br","ui-spinner-up":"ui-corner-tr"},culture:null,icons:{down:"ui-icon-triangle-1-s",up:"ui-icon-triangle-1-n"},incremental:!0,max:null,min:null,numberFormat:null,page:10,step:1,change:null,spin:null,start:null,stop:null},_create:function(){this._setOption("max",this.options.max),this._setOption("min",this.options.min),this._setOption("step",this.options.step),""!==this.value()&&this._value(this.element.val(),!0),this._draw(),this._on(this._events),this._refresh(),this._on(this.window,{beforeunload:function(){this.element.removeAttr("autocomplete")}})},_getCreateOptions:function(){var s=this._super(),n=this.element;return V.each(["min","max","step"],function(t,e){var i=n.attr(e);null!=i&&i.length&&(s[e]=i)}),s},_events:{keydown:function(t){this._start(t)&&this._keydown(t)&&t.preventDefault()},keyup:"_stop",focus:function(){this.previous=this.element.val()},blur:function(t){this.cancelBlur?delete this.cancelBlur:(this._stop(),this._refresh(),this.previous!==this.element.val()&&this._trigger("change",t))},mousewheel:function(t,e){var i=V.ui.safeActiveElement(this.document[0]);if(this.element[0]===i&&e){if(!this.spinning&&!this._start(t))return!1;this._spin((0<e?1:-1)*this.options.step,t),clearTimeout(this.mousewheelTimer),this.mousewheelTimer=this._delay(function(){this.spinning&&this._stop(t)},100),t.preventDefault()}},"mousedown .ui-spinner-button":function(t){var e;function i(){this.element[0]===V.ui.safeActiveElement(this.document[0])||(this.element.trigger("focus"),this.previous=e,this._delay(function(){this.previous=e}))}e=this.element[0]===V.ui.safeActiveElement(this.document[0])?this.previous:this.element.val(),t.preventDefault(),i.call(this),this.cancelBlur=!0,this._delay(function(){delete this.cancelBlur,i.call(this)}),!1!==this._start(t)&&this._repeat(null,V(t.currentTarget).hasClass("ui-spinner-up")?1:-1,t)},"mouseup .ui-spinner-button":"_stop","mouseenter .ui-spinner-button":function(t){if(V(t.currentTarget).hasClass("ui-state-active"))return!1!==this._start(t)&&void this._repeat(null,V(t.currentTarget).hasClass("ui-spinner-up")?1:-1,t)},"mouseleave .ui-spinner-button":"_stop"},_enhance:function(){this.uiSpinner=this.element.attr("autocomplete","off").wrap("<span>").parent().append("<a></a><a></a>")},_draw:function(){this._enhance(),this._addClass(this.uiSpinner,"ui-spinner","ui-widget ui-widget-content"),this._addClass("ui-spinner-input"),this.element.attr("role","spinbutton"),this.buttons=this.uiSpinner.children("a").attr("tabIndex",-1).attr("aria-hidden",!0).button({classes:{"ui-button":""}}),this._removeClass(this.buttons,"ui-corner-all"),this._addClass(this.buttons.first(),"ui-spinner-button ui-spinner-up"),this._addClass(this.buttons.last(),"ui-spinner-button ui-spinner-down"),this.buttons.first().button({icon:this.options.icons.up,showLabel:!1}),this.buttons.last().button({icon:this.options.icons.down,showLabel:!1}),this.buttons.height()>Math.ceil(.5*this.uiSpinner.height())&&0<this.uiSpinner.height()&&this.uiSpinner.height(this.uiSpinner.height())},_keydown:function(t){var e=this.options,i=V.ui.keyCode;switch(t.keyCode){case i.UP:return this._repeat(null,1,t),!0;case i.DOWN:return this._repeat(null,-1,t),!0;case i.PAGE_UP:return this._repeat(null,e.page,t),!0;case i.PAGE_DOWN:return this._repeat(null,-e.page,t),!0}return!1},_start:function(t){return!(!this.spinning&&!1===this._trigger("start",t))&&(this.counter||(this.counter=1),this.spinning=!0)},_repeat:function(t,e,i){t=t||500,clearTimeout(this.timer),this.timer=this._delay(function(){this._repeat(40,e,i)},t),this._spin(e*this.options.step,i)},_spin:function(t,e){var i=this.value()||0;this.counter||(this.counter=1),i=this._adjustValue(i+t*this._increment(this.counter)),this.spinning&&!1===this._trigger("spin",e,{value:i})||(this._value(i),this.counter++)},_increment:function(t){var e=this.options.incremental;return e?"function"==typeof e?e(t):Math.floor(t*t*t/5e4-t*t/500+17*t/200+1):1},_precision:function(){var t=this._precisionOf(this.options.step);return t=null!==this.options.min?Math.max(t,this._precisionOf(this.options.min)):t},_precisionOf:function(t){var e=t.toString(),t=e.indexOf(".");return-1===t?0:e.length-t-1},_adjustValue:function(t){var e=this.options,i=null!==e.min?e.min:0,s=t-i;return t=i+Math.round(s/e.step)*e.step,t=parseFloat(t.toFixed(this._precision())),null!==e.max&&t>e.max?e.max:null!==e.min&&t<e.min?e.min:t},_stop:function(t){this.spinning&&(clearTimeout(this.timer),clearTimeout(this.mousewheelTimer),this.counter=0,this.spinning=!1,this._trigger("stop",t))},_setOption:function(t,e){var i;if("culture"===t||"numberFormat"===t)return i=this._parse(this.element.val()),this.options[t]=e,void this.element.val(this._format(i));"max"!==t&&"min"!==t&&"step"!==t||"string"==typeof e&&(e=this._parse(e)),"icons"===t&&(i=this.buttons.first().find(".ui-icon"),this._removeClass(i,null,this.options.icons.up),this._addClass(i,null,e.up),i=this.buttons.last().find(".ui-icon"),this._removeClass(i,null,this.options.icons.down),this._addClass(i,null,e.down)),this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this._toggleClass(this.uiSpinner,null,"ui-state-disabled",!!t),this.element.prop("disabled",!!t),this.buttons.button(t?"disable":"enable")},_setOptions:ht(function(t){this._super(t)}),_parse:function(t){return""===(t="string"==typeof t&&""!==t?window.Globalize&&this.options.numberFormat?Globalize.parseFloat(t,10,this.options.culture):+t:t)||isNaN(t)?null:t},_format:function(t){return""===t?"":window.Globalize&&this.options.numberFormat?Globalize.format(t,this.options.numberFormat,this.options.culture):t},_refresh:function(){this.element.attr({"aria-valuemin":this.options.min,"aria-valuemax":this.options.max,"aria-valuenow":this._parse(this.element.val())})},isValid:function(){var t=this.value();return null!==t&&t===this._adjustValue(t)},_value:function(t,e){var i;""!==t&&null!==(i=this._parse(t))&&(e||(i=this._adjustValue(i)),t=this._format(i)),this.element.val(t),this._refresh()},_destroy:function(){this.element.prop("disabled",!1).removeAttr("autocomplete role aria-valuemin aria-valuemax aria-valuenow"),this.uiSpinner.replaceWith(this.element)},stepUp:ht(function(t){this._stepUp(t)}),_stepUp:function(t){this._start()&&(this._spin((t||1)*this.options.step),this._stop())},stepDown:ht(function(t){this._stepDown(t)}),_stepDown:function(t){this._start()&&(this._spin((t||1)*-this.options.step),this._stop())},pageUp:ht(function(t){this._stepUp((t||1)*this.options.page)}),pageDown:ht(function(t){this._stepDown((t||1)*this.options.page)}),value:function(t){if(!arguments.length)return this._parse(this.element.val());ht(this._value).call(this,t)},widget:function(){return this.uiSpinner}}),!1!==V.uiBackCompat&&V.widget("ui.spinner",V.ui.spinner,{_enhance:function(){this.uiSpinner=this.element.attr("autocomplete","off").wrap(this._uiSpinnerHtml()).parent().append(this._buttonHtml())},_uiSpinnerHtml:function(){return"<span>"},_buttonHtml:function(){return"<a></a><a></a>"}});var ct;V.ui.spinner;V.widget("ui.tabs",{version:"1.13.1",delay:300,options:{active:null,classes:{"ui-tabs":"ui-corner-all","ui-tabs-nav":"ui-corner-all","ui-tabs-panel":"ui-corner-bottom","ui-tabs-tab":"ui-corner-top"},collapsible:!1,event:"click",heightStyle:"content",hide:null,show:null,activate:null,beforeActivate:null,beforeLoad:null,load:null},_isLocal:(ct=/#.*$/,function(t){var e=t.href.replace(ct,""),i=location.href.replace(ct,"");try{e=decodeURIComponent(e)}catch(t){}try{i=decodeURIComponent(i)}catch(t){}return 1<t.hash.length&&e===i}),_create:function(){var e=this,t=this.options;this.running=!1,this._addClass("ui-tabs","ui-widget ui-widget-content"),this._toggleClass("ui-tabs-collapsible",null,t.collapsible),this._processTabs(),t.active=this._initialActive(),Array.isArray(t.disabled)&&(t.disabled=V.uniqueSort(t.disabled.concat(V.map(this.tabs.filter(".ui-state-disabled"),function(t){return e.tabs.index(t)}))).sort()),!1!==this.options.active&&this.anchors.length?this.active=this._findActive(t.active):this.active=V(),this._refresh(),this.active.length&&this.load(t.active)},_initialActive:function(){var i=this.options.active,t=this.options.collapsible,s=location.hash.substring(1);return null===i&&(s&&this.tabs.each(function(t,e){if(V(e).attr("aria-controls")===s)return i=t,!1}),null!==(i=null===i?this.tabs.index(this.tabs.filter(".ui-tabs-active")):i)&&-1!==i||(i=!!this.tabs.length&&0)),!1!==i&&-1===(i=this.tabs.index(this.tabs.eq(i)))&&(i=!t&&0),i=!t&&!1===i&&this.anchors.length?0:i},_getCreateEventData:function(){return{tab:this.active,panel:this.active.length?this._getPanelForTab(this.active):V()}},_tabKeydown:function(t){var e=V(V.ui.safeActiveElement(this.document[0])).closest("li"),i=this.tabs.index(e),s=!0;if(!this._handlePageNav(t)){switch(t.keyCode){case V.ui.keyCode.RIGHT:case V.ui.keyCode.DOWN:i++;break;case V.ui.keyCode.UP:case V.ui.keyCode.LEFT:s=!1,i--;break;case V.ui.keyCode.END:i=this.anchors.length-1;break;case V.ui.keyCode.HOME:i=0;break;case V.ui.keyCode.SPACE:return t.preventDefault(),clearTimeout(this.activating),void this._activate(i);case V.ui.keyCode.ENTER:return t.preventDefault(),clearTimeout(this.activating),void this._activate(i!==this.options.active&&i);default:return}t.preventDefault(),clearTimeout(this.activating),i=this._focusNextTab(i,s),t.ctrlKey||t.metaKey||(e.attr("aria-selected","false"),this.tabs.eq(i).attr("aria-selected","true"),this.activating=this._delay(function(){this.option("active",i)},this.delay))}},_panelKeydown:function(t){this._handlePageNav(t)||t.ctrlKey&&t.keyCode===V.ui.keyCode.UP&&(t.preventDefault(),this.active.trigger("focus"))},_handlePageNav:function(t){return t.altKey&&t.keyCode===V.ui.keyCode.PAGE_UP?(this._activate(this._focusNextTab(this.options.active-1,!1)),!0):t.altKey&&t.keyCode===V.ui.keyCode.PAGE_DOWN?(this._activate(this._focusNextTab(this.options.active+1,!0)),!0):void 0},_findNextTab:function(t,e){var i=this.tabs.length-1;for(;-1!==V.inArray(t=(t=i<t?0:t)<0?i:t,this.options.disabled);)t=e?t+1:t-1;return t},_focusNextTab:function(t,e){return t=this._findNextTab(t,e),this.tabs.eq(t).trigger("focus"),t},_setOption:function(t,e){"active"!==t?(this._super(t,e),"collapsible"===t&&(this._toggleClass("ui-tabs-collapsible",null,e),e||!1!==this.options.active||this._activate(0)),"event"===t&&this._setupEvents(e),"heightStyle"===t&&this._setupHeightStyle(e)):this._activate(e)},_sanitizeSelector:function(t){return t?t.replace(/[!"$%&'()*+,.\/:;<=>?@\[\]\^`{|}~]/g,"\\$&"):""},refresh:function(){var t=this.options,e=this.tablist.children(":has(a[href])");t.disabled=V.map(e.filter(".ui-state-disabled"),function(t){return e.index(t)}),this._processTabs(),!1!==t.active&&this.anchors.length?this.active.length&&!V.contains(this.tablist[0],this.active[0])?this.tabs.length===t.disabled.length?(t.active=!1,this.active=V()):this._activate(this._findNextTab(Math.max(0,t.active-1),!1)):t.active=this.tabs.index(this.active):(t.active=!1,this.active=V()),this._refresh()},_refresh:function(){this._setOptionDisabled(this.options.disabled),this._setupEvents(this.options.event),this._setupHeightStyle(this.options.heightStyle),this.tabs.not(this.active).attr({"aria-selected":"false","aria-expanded":"false",tabIndex:-1}),this.panels.not(this._getPanelForTab(this.active)).hide().attr({"aria-hidden":"true"}),this.active.length?(this.active.attr({"aria-selected":"true","aria-expanded":"true",tabIndex:0}),this._addClass(this.active,"ui-tabs-active","ui-state-active"),this._getPanelForTab(this.active).show().attr({"aria-hidden":"false"})):this.tabs.eq(0).attr("tabIndex",0)},_processTabs:function(){var l=this,t=this.tabs,e=this.anchors,i=this.panels;this.tablist=this._getList().attr("role","tablist"),this._addClass(this.tablist,"ui-tabs-nav","ui-helper-reset ui-helper-clearfix ui-widget-header"),this.tablist.on("mousedown"+this.eventNamespace,"> li",function(t){V(this).is(".ui-state-disabled")&&t.preventDefault()}).on("focus"+this.eventNamespace,".ui-tabs-anchor",function(){V(this).closest("li").is(".ui-state-disabled")&&this.blur()}),this.tabs=this.tablist.find("> li:has(a[href])").attr({role:"tab",tabIndex:-1}),this._addClass(this.tabs,"ui-tabs-tab","ui-state-default"),this.anchors=this.tabs.map(function(){return V("a",this)[0]}).attr({tabIndex:-1}),this._addClass(this.anchors,"ui-tabs-anchor"),this.panels=V(),this.anchors.each(function(t,e){var i,s,n,o=V(e).uniqueId().attr("id"),a=V(e).closest("li"),r=a.attr("aria-controls");l._isLocal(e)?(n=(i=e.hash).substring(1),s=l.element.find(l._sanitizeSelector(i))):(n=a.attr("aria-controls")||V({}).uniqueId()[0].id,(s=l.element.find(i="#"+n)).length||(s=l._createPanel(n)).insertAfter(l.panels[t-1]||l.tablist),s.attr("aria-live","polite")),s.length&&(l.panels=l.panels.add(s)),r&&a.data("ui-tabs-aria-controls",r),a.attr({"aria-controls":n,"aria-labelledby":o}),s.attr("aria-labelledby",o)}),this.panels.attr("role","tabpanel"),this._addClass(this.panels,"ui-tabs-panel","ui-widget-content"),t&&(this._off(t.not(this.tabs)),this._off(e.not(this.anchors)),this._off(i.not(this.panels)))},_getList:function(){return this.tablist||this.element.find("ol, ul").eq(0)},_createPanel:function(t){return V("<div>").attr("id",t).data("ui-tabs-destroy",!0)},_setOptionDisabled:function(t){var e,i;for(Array.isArray(t)&&(t.length?t.length===this.anchors.length&&(t=!0):t=!1),i=0;e=this.tabs[i];i++)e=V(e),!0===t||-1!==V.inArray(i,t)?(e.attr("aria-disabled","true"),this._addClass(e,null,"ui-state-disabled")):(e.removeAttr("aria-disabled"),this._removeClass(e,null,"ui-state-disabled"));this.options.disabled=t,this._toggleClass(this.widget(),this.widgetFullName+"-disabled",null,!0===t)},_setupEvents:function(t){var i={};t&&V.each(t.split(" "),function(t,e){i[e]="_eventHandler"}),this._off(this.anchors.add(this.tabs).add(this.panels)),this._on(!0,this.anchors,{click:function(t){t.preventDefault()}}),this._on(this.anchors,i),this._on(this.tabs,{keydown:"_tabKeydown"}),this._on(this.panels,{keydown:"_panelKeydown"}),this._focusable(this.tabs),this._hoverable(this.tabs)},_setupHeightStyle:function(t){var i,e=this.element.parent();"fill"===t?(i=e.height(),i-=this.element.outerHeight()-this.element.height(),this.element.siblings(":visible").each(function(){var t=V(this),e=t.css("position");"absolute"!==e&&"fixed"!==e&&(i-=t.outerHeight(!0))}),this.element.children().not(this.panels).each(function(){i-=V(this).outerHeight(!0)}),this.panels.each(function(){V(this).height(Math.max(0,i-V(this).innerHeight()+V(this).height()))}).css("overflow","auto")):"auto"===t&&(i=0,this.panels.each(function(){i=Math.max(i,V(this).height("").height())}).height(i))},_eventHandler:function(t){var e=this.options,i=this.active,s=V(t.currentTarget).closest("li"),n=s[0]===i[0],o=n&&e.collapsible,a=o?V():this._getPanelForTab(s),r=i.length?this._getPanelForTab(i):V(),i={oldTab:i,oldPanel:r,newTab:o?V():s,newPanel:a};t.preventDefault(),s.hasClass("ui-state-disabled")||s.hasClass("ui-tabs-loading")||this.running||n&&!e.collapsible||!1===this._trigger("beforeActivate",t,i)||(e.active=!o&&this.tabs.index(s),this.active=n?V():s,this.xhr&&this.xhr.abort(),r.length||a.length||V.error("jQuery UI Tabs: Mismatching fragment identifier."),a.length&&this.load(this.tabs.index(s),t),this._toggle(t,i))},_toggle:function(t,e){var i=this,s=e.newPanel,n=e.oldPanel;function o(){i.running=!1,i._trigger("activate",t,e)}function a(){i._addClass(e.newTab.closest("li"),"ui-tabs-active","ui-state-active"),s.length&&i.options.show?i._show(s,i.options.show,o):(s.show(),o())}this.running=!0,n.length&&this.options.hide?this._hide(n,this.options.hide,function(){i._removeClass(e.oldTab.closest("li"),"ui-tabs-active","ui-state-active"),a()}):(this._removeClass(e.oldTab.closest("li"),"ui-tabs-active","ui-state-active"),n.hide(),a()),n.attr("aria-hidden","true"),e.oldTab.attr({"aria-selected":"false","aria-expanded":"false"}),s.length&&n.length?e.oldTab.attr("tabIndex",-1):s.length&&this.tabs.filter(function(){return 0===V(this).attr("tabIndex")}).attr("tabIndex",-1),s.attr("aria-hidden","false"),e.newTab.attr({"aria-selected":"true","aria-expanded":"true",tabIndex:0})},_activate:function(t){var t=this._findActive(t);t[0]!==this.active[0]&&(t=(t=!t.length?this.active:t).find(".ui-tabs-anchor")[0],this._eventHandler({target:t,currentTarget:t,preventDefault:V.noop}))},_findActive:function(t){return!1===t?V():this.tabs.eq(t)},_getIndex:function(t){return t="string"==typeof t?this.anchors.index(this.anchors.filter("[href$='"+V.escapeSelector(t)+"']")):t},_destroy:function(){this.xhr&&this.xhr.abort(),this.tablist.removeAttr("role").off(this.eventNamespace),this.anchors.removeAttr("role tabIndex").removeUniqueId(),this.tabs.add(this.panels).each(function(){V.data(this,"ui-tabs-destroy")?V(this).remove():V(this).removeAttr("role tabIndex aria-live aria-busy aria-selected aria-labelledby aria-hidden aria-expanded")}),this.tabs.each(function(){var t=V(this),e=t.data("ui-tabs-aria-controls");e?t.attr("aria-controls",e).removeData("ui-tabs-aria-controls"):t.removeAttr("aria-controls")}),this.panels.show(),"content"!==this.options.heightStyle&&this.panels.css("height","")},enable:function(i){var t=this.options.disabled;!1!==t&&(t=void 0!==i&&(i=this._getIndex(i),Array.isArray(t)?V.map(t,function(t){return t!==i?t:null}):V.map(this.tabs,function(t,e){return e!==i?e:null})),this._setOptionDisabled(t))},disable:function(t){var e=this.options.disabled;if(!0!==e){if(void 0===t)e=!0;else{if(t=this._getIndex(t),-1!==V.inArray(t,e))return;e=Array.isArray(e)?V.merge([t],e).sort():[t]}this._setOptionDisabled(e)}},load:function(t,s){t=this._getIndex(t);function n(t,e){"abort"===e&&o.panels.stop(!1,!0),o._removeClass(i,"ui-tabs-loading"),a.removeAttr("aria-busy"),t===o.xhr&&delete o.xhr}var o=this,i=this.tabs.eq(t),t=i.find(".ui-tabs-anchor"),a=this._getPanelForTab(i),r={tab:i,panel:a};this._isLocal(t[0])||(this.xhr=V.ajax(this._ajaxSettings(t,s,r)),this.xhr&&"canceled"!==this.xhr.statusText&&(this._addClass(i,"ui-tabs-loading"),a.attr("aria-busy","true"),this.xhr.done(function(t,e,i){setTimeout(function(){a.html(t),o._trigger("load",s,r),n(i,e)},1)}).fail(function(t,e){setTimeout(function(){n(t,e)},1)})))},_ajaxSettings:function(t,i,s){var n=this;return{url:t.attr("href").replace(/#.*$/,""),beforeSend:function(t,e){return n._trigger("beforeLoad",i,V.extend({jqXHR:t,ajaxSettings:e},s))}}},_getPanelForTab:function(t){t=V(t).attr("aria-controls");return this.element.find(this._sanitizeSelector("#"+t))}}),!1!==V.uiBackCompat&&V.widget("ui.tabs",V.ui.tabs,{_processTabs:function(){this._superApply(arguments),this._addClass(this.tabs,"ui-tab")}});V.ui.tabs;V.widget("ui.tooltip",{version:"1.13.1",options:{classes:{"ui-tooltip":"ui-corner-all ui-widget-shadow"},content:function(){var t=V(this).attr("title");return V("<a>").text(t).html()},hide:!0,items:"[title]:not([disabled])",position:{my:"left top+15",at:"left bottom",collision:"flipfit flip"},show:!0,track:!1,close:null,open:null},_addDescribedBy:function(t,e){var i=(t.attr("aria-describedby")||"").split(/\s+/);i.push(e),t.data("ui-tooltip-id",e).attr("aria-describedby",String.prototype.trim.call(i.join(" ")))},_removeDescribedBy:function(t){var e=t.data("ui-tooltip-id"),i=(t.attr("aria-describedby")||"").split(/\s+/),e=V.inArray(e,i);-1!==e&&i.splice(e,1),t.removeData("ui-tooltip-id"),(i=String.prototype.trim.call(i.join(" ")))?t.attr("aria-describedby",i):t.removeAttr("aria-describedby")},_create:function(){this._on({mouseover:"open",focusin:"open"}),this.tooltips={},this.parents={},this.liveRegion=V("<div>").attr({role:"log","aria-live":"assertive","aria-relevant":"additions"}).appendTo(this.document[0].body),this._addClass(this.liveRegion,null,"ui-helper-hidden-accessible"),this.disabledTitles=V([])},_setOption:function(t,e){var i=this;this._super(t,e),"content"===t&&V.each(this.tooltips,function(t,e){i._updateContent(e.element)})},_setOptionDisabled:function(t){this[t?"_disable":"_enable"]()},_disable:function(){var s=this;V.each(this.tooltips,function(t,e){var i=V.Event("blur");i.target=i.currentTarget=e.element[0],s.close(i,!0)}),this.disabledTitles=this.disabledTitles.add(this.element.find(this.options.items).addBack().filter(function(){var t=V(this);if(t.is("[title]"))return t.data("ui-tooltip-title",t.attr("title")).removeAttr("title")}))},_enable:function(){this.disabledTitles.each(function(){var t=V(this);t.data("ui-tooltip-title")&&t.attr("title",t.data("ui-tooltip-title"))}),this.disabledTitles=V([])},open:function(t){var i=this,e=V(t?t.target:this.element).closest(this.options.items);e.length&&!e.data("ui-tooltip-id")&&(e.attr("title")&&e.data("ui-tooltip-title",e.attr("title")),e.data("ui-tooltip-open",!0),t&&"mouseover"===t.type&&e.parents().each(function(){var t,e=V(this);e.data("ui-tooltip-open")&&((t=V.Event("blur")).target=t.currentTarget=this,i.close(t,!0)),e.attr("title")&&(e.uniqueId(),i.parents[this.id]={element:this,title:e.attr("title")},e.attr("title",""))}),this._registerCloseHandlers(t,e),this._updateContent(e,t))},_updateContent:function(e,i){var t=this.options.content,s=this,n=i?i.type:null;if("string"==typeof t||t.nodeType||t.jquery)return this._open(i,e,t);(t=t.call(e[0],function(t){s._delay(function(){e.data("ui-tooltip-open")&&(i&&(i.type=n),this._open(i,e,t))})}))&&this._open(i,e,t)},_open:function(t,e,i){var s,n,o,a=V.extend({},this.options.position);function r(t){a.of=t,n.is(":hidden")||n.position(a)}i&&((s=this._find(e))?s.tooltip.find(".ui-tooltip-content").html(i):(e.is("[title]")&&(t&&"mouseover"===t.type?e.attr("title",""):e.removeAttr("title")),s=this._tooltip(e),n=s.tooltip,this._addDescribedBy(e,n.attr("id")),n.find(".ui-tooltip-content").html(i),this.liveRegion.children().hide(),(i=V("<div>").html(n.find(".ui-tooltip-content").html())).removeAttr("name").find("[name]").removeAttr("name"),i.removeAttr("id").find("[id]").removeAttr("id"),i.appendTo(this.liveRegion),this.options.track&&t&&/^mouse/.test(t.type)?(this._on(this.document,{mousemove:r}),r(t)):n.position(V.extend({of:e},this.options.position)),n.hide(),this._show(n,this.options.show),this.options.track&&this.options.show&&this.options.show.delay&&(o=this.delayedShow=setInterval(function(){n.is(":visible")&&(r(a.of),clearInterval(o))},13)),this._trigger("open",t,{tooltip:n})))},_registerCloseHandlers:function(t,e){var i={keyup:function(t){t.keyCode===V.ui.keyCode.ESCAPE&&((t=V.Event(t)).currentTarget=e[0],this.close(t,!0))}};e[0]!==this.element[0]&&(i.remove=function(){var t=this._find(e);t&&this._removeTooltip(t.tooltip)}),t&&"mouseover"!==t.type||(i.mouseleave="close"),t&&"focusin"!==t.type||(i.focusout="close"),this._on(!0,e,i)},close:function(t){var e,i=this,s=V(t?t.currentTarget:this.element),n=this._find(s);n?(e=n.tooltip,n.closing||(clearInterval(this.delayedShow),s.data("ui-tooltip-title")&&!s.attr("title")&&s.attr("title",s.data("ui-tooltip-title")),this._removeDescribedBy(s),n.hiding=!0,e.stop(!0),this._hide(e,this.options.hide,function(){i._removeTooltip(V(this))}),s.removeData("ui-tooltip-open"),this._off(s,"mouseleave focusout keyup"),s[0]!==this.element[0]&&this._off(s,"remove"),this._off(this.document,"mousemove"),t&&"mouseleave"===t.type&&V.each(this.parents,function(t,e){V(e.element).attr("title",e.title),delete i.parents[t]}),n.closing=!0,this._trigger("close",t,{tooltip:e}),n.hiding||(n.closing=!1))):s.removeData("ui-tooltip-open")},_tooltip:function(t){var e=V("<div>").attr("role","tooltip"),i=V("<div>").appendTo(e),s=e.uniqueId().attr("id");return this._addClass(i,"ui-tooltip-content"),this._addClass(e,"ui-tooltip","ui-widget ui-widget-content"),e.appendTo(this._appendTo(t)),this.tooltips[s]={element:t,tooltip:e}},_find:function(t){t=t.data("ui-tooltip-id");return t?this.tooltips[t]:null},_removeTooltip:function(t){clearInterval(this.delayedShow),t.remove(),delete this.tooltips[t.attr("id")]},_appendTo:function(t){t=t.closest(".ui-front, dialog");return t=!t.length?this.document[0].body:t},_destroy:function(){var s=this;V.each(this.tooltips,function(t,e){var i=V.Event("blur"),e=e.element;i.target=i.currentTarget=e[0],s.close(i,!0),V("#"+t).remove(),e.data("ui-tooltip-title")&&(e.attr("title")||e.attr("title",e.data("ui-tooltip-title")),e.removeData("ui-tooltip-title"))}),this.liveRegion.remove()}}),!1!==V.uiBackCompat&&V.widget("ui.tooltip",V.ui.tooltip,{options:{tooltipClass:null},_tooltip:function(){var t=this._superApply(arguments);return this.options.tooltipClass&&t.tooltip.addClass(this.options.tooltipClass),t}});V.ui.tooltip});Evidence /*! jQuery UI - v1.13.1Solution Please upgrade to the latest version of jquery-ui.
-
-
-
Risk=Medium, Confidence=Low (1)
-
http://localhost (1)
-
Absence of Anti-CSRF Tokens (1)
POST http://localhost/phpmyadmin/index.php?lang=en&route=/collation-connection
Alert tags Alert description No Anti-CSRF tokens were found in a HTML submission form.
A cross-site request forgery is an attack that involves forcing a victim to send an HTTP request to a target destination without their knowledge or intent in order to perform an action as the victim. The underlying cause is application functionality using predictable URL/form actions in a repeatable way. The nature of the attack is that CSRF exploits the trust that a web site has for a user. By contrast, cross-site scripting (XSS) exploits the trust that a user has for a web site. Like XSS, CSRF attacks are not necessarily cross-site, but they can be. Cross-site request forgery is also known as CSRF, XSRF, one-click attack, session riding, confused deputy, and sea surf.
CSRF attacks are effective in a number of situations, including:
* The victim has an active session on the target site.
* The victim is authenticated via HTTP auth on the target site.
* The victim is on the same local network as the target site.
CSRF has primarily been used to perform an action against a target site using the victim's privileges, but recent techniques have been discovered to disclose information by gaining access to the response. The risk of information disclosure is dramatically increased when the target site is vulnerable to XSS, because XSS can be used as a platform for CSRF, allowing the attack to operate within the bounds of the same-origin policy.
Other info No known Anti-CSRF token [anticsrf, CSRFToken, __RequestVerificationToken, csrfmiddlewaretoken, authenticity_token, OWASP_CSRFTOKEN, anoncsrf, csrf_token, _csrf, _csrfSecret, __csrf_magic, CSRF, _token, _csrf_token] was found in the following HTML form: [Form 1: "check_page_refresh" "DisplayServersList" "FirstLevelNavigationItems" "MaxNavigationItems" "NavigationDisplayLogo" "NavigationDisplayServers" "NavigationLinkWithMainPanel" "NavigationLogoLink" "NavigationTreeAutoexpandSingleDb" "NavigationTreeDbSeparator" "NavigationTreeDisplayDbFilterMinimum" "NavigationTreeDisplayItemFilterMinimum" "NavigationTreeEnableExpansion" "NavigationTreeEnableGrouping" "NavigationTreePointerEnable" "NavigationTreeShowEvents" "NavigationTreeShowFunctions" "NavigationTreeShowProcedures" "NavigationTreeShowTables" "NavigationTreeShowViews" "NavigationTreeTableLevel" "NavigationTreeTableSeparator" "NavigationWidth" "NumFavoriteTables" "NumRecentTables" "ShowDatabasesNavigationAsTree" "submit_save" "tab_hash" "token" ].
Request Request line and header section (450 bytes)
POST http://localhost/phpmyadmin/index.php?lang=en&route=/collation-connection HTTP/1.1 host: localhost user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 pragma: no-cache cache-control: no-cache content-type: application/x-www-form-urlencoded referer: http://localhost/phpmyadmin/ content-length: 86 Cookie: pma_lang=en; phpMyAdmin=610f86c60f00a8f4dc92fe660c217e62Request body (86 bytes)
lang=en&token=68796d444825575e6d2d604f364a4658&collation_connection=utf8mb4_unicode_ciResponse Status line and header section (1362 bytes)
HTTP/1.1 302 Found Date: Sat, 19 Apr 2025 15:17:49 GMT Server: Apache/2.4.54 (Unix) OpenSSL/1.1.1s PHP/7.4.33 mod_perl/2.0.12 Perl/v5.34.1 X-Powered-By: PHP/7.4.33 Set-Cookie: phpMyAdmin=610f86c60f00a8f4dc92fe660c217e62; path=/phpmyadmin/; HttpOnly; SameSite=Strict Expires: Sat, 19 Apr 2025 15:17:49 +0000 Cache-Control: no-store, no-cache, must-revalidate, pre-check=0, post-check=0, max-age=0 Last-Modified: Sat, 19 Apr 2025 15:17:49 +0000 X-ob_mode: 1 Location: index.php?route=/ X-Frame-Options: DENY Referrer-Policy: no-referrer Content-Security-Policy: default-src 'self' ;script-src 'self' 'unsafe-inline' 'unsafe-eval' ;style-src 'self' 'unsafe-inline' ;img-src 'self' data: *.tile.openstreetmap.org;object-src 'none'; X-Content-Security-Policy: default-src 'self' ;options inline-script eval-script;referrer no-referrer;img-src 'self' data: *.tile.openstreetmap.org;object-src 'none'; X-WebKit-CSP: default-src 'self' ;script-src 'self' 'unsafe-inline' 'unsafe-eval';referrer no-referrer;style-src 'self' 'unsafe-inline' ;img-src 'self' data: *.tile.openstreetmap.org;object-src 'none'; X-XSS-Protection: 1; mode=block X-Content-Type-Options: nosniff X-Permitted-Cross-Domain-Policies: none X-Robots-Tag: noindex, nofollow Pragma: no-cache Vary: Accept-Encoding Content-Type: text/html; charset=utf-8 content-length: 75090Response body (75090 bytes)
<!doctype html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="referrer" content="no-referrer"> <meta name="robots" content="noindex,nofollow"> <style id="cfs-style">html{display: none;}</style> <link rel="icon" href="favicon.ico" type="image/x-icon"> <link rel="shortcut icon" href="favicon.ico" type="image/x-icon"> <link rel="stylesheet" type="text/css" href="./themes/pmahomme/jquery/jquery-ui.css"> <link rel="stylesheet" type="text/css" href="js/vendor/codemirror/lib/codemirror.css?v=5.2.0"> <link rel="stylesheet" type="text/css" href="js/vendor/codemirror/addon/hint/show-hint.css?v=5.2.0"> <link rel="stylesheet" type="text/css" href="js/vendor/codemirror/addon/lint/lint.css?v=5.2.0"> <link rel="stylesheet" type="text/css" href="./themes/pmahomme/css/theme.css?v=5.2.0"> <title>localhost / localhost | phpMyAdmin 5.2.0</title> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery.min.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery-migrate.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/sprintf.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/ajax.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/keyhandler.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery-ui.min.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/name-conflict-fixes.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/bootstrap/bootstrap.bundle.min.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/js.cookie.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery.validate.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery-ui-timepicker-addon.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery.debounce-1.0.6.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/menu_resizer.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/cross_framing_protection.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/messages.php?l=en&v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/config.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/doclinks.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/functions.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/navigation.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/indexes.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/common.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/page_settings.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/lib/codemirror.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/mode/sql/sql.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/addon/runmode/runmode.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/addon/hint/show-hint.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/addon/hint/sql-hint.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/addon/lint/lint.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/codemirror/addon/lint/sql-lint.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/tracekit.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/error_report.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/drag_drop_import.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/shortcuts_handler.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/console.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript"> // <![CDATA[ CommonParams.setAll({common_query:"",opendb_url:"index.php?route=/database/structure",lang:"en",server:"1",table:"",db:"",token:"68796d444825575e6d2d604f364a4658",text_dir:"ltr",LimitChars:"50",pftext:"P",confirm:true,LoginCookieValidity:"1440",session_gc_maxlifetime:"1440",logged_in:true,is_https:false,rootPath:"/phpmyadmin/",arg_separator:"&",version:"5.2.0",auth_type:"config",user:"root"}); var firstDayOfCalendar = '0'; var themeImagePath = '.\/themes\/pmahomme\/img\/'; var mysqlDocTemplate = '.\/url.php\u003Furl\u003Dhttps\u00253A\u00252F\u00252Fdev.mysql.com\u00252Fdoc\u00252Frefman\u00252F8.0\u00252Fen\u00252F\u002525s.html'; var maxInputVars = 1000; if ($.datepicker) { $.datepicker.regional[''].closeText = 'Done'; $.datepicker.regional[''].prevText = 'Prev'; $.datepicker.regional[''].nextText = 'Next'; $.datepicker.regional[''].currentText = 'Today'; $.datepicker.regional[''].monthNames = [ 'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December', ]; $.datepicker.regional[''].monthNamesShort = [ 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec', ]; $.datepicker.regional[''].dayNames = [ 'Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', ]; $.datepicker.regional[''].dayNamesShort = [ 'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', ]; $.datepicker.regional[''].dayNamesMin = [ 'Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa', ]; $.datepicker.regional[''].weekHeader = 'Wk'; $.datepicker.regional[''].showMonthAfterYear = false; $.datepicker.regional[''].yearSuffix = ''; $.extend($.datepicker._defaults, $.datepicker.regional['']); } if ($.timepicker) { $.timepicker.regional[''].timeText = 'Time'; $.timepicker.regional[''].hourText = 'Hour'; $.timepicker.regional[''].minuteText = 'Minute'; $.timepicker.regional[''].secondText = 'Second'; $.extend($.timepicker._defaults, $.timepicker.regional['']); } function extendingValidatorMessages () { $.extend($.validator.messages, { required: 'This\u0020field\u0020is\u0020required', remote: 'Please\u0020fix\u0020this\u0020field', email: 'Please\u0020enter\u0020a\u0020valid\u0020email\u0020address', url: 'Please\u0020enter\u0020a\u0020valid\u0020URL', date: 'Please\u0020enter\u0020a\u0020valid\u0020date', dateISO: 'Please\u0020enter\u0020a\u0020valid\u0020date\u0020\u0028\u0020ISO\u0020\u0029', number: 'Please\u0020enter\u0020a\u0020valid\u0020number', creditcard: 'Please\u0020enter\u0020a\u0020valid\u0020credit\u0020card\u0020number', digits: 'Please\u0020enter\u0020only\u0020digits', equalTo: 'Please\u0020enter\u0020the\u0020same\u0020value\u0020again', maxlength: $.validator.format('Please\u0020enter\u0020no\u0020more\u0020than\u0020\u007B0\u007D\u0020characters'), minlength: $.validator.format('Please\u0020enter\u0020at\u0020least\u0020\u007B0\u007D\u0020characters'), rangelength: $.validator.format('Please\u0020enter\u0020a\u0020value\u0020between\u0020\u007B0\u007D\u0020and\u0020\u007B1\u007D\u0020characters\u0020long'), range: $.validator.format('Please\u0020enter\u0020a\u0020value\u0020between\u0020\u007B0\u007D\u0020and\u0020\u007B1\u007D'), max: $.validator.format('Please\u0020enter\u0020a\u0020value\u0020less\u0020than\u0020or\u0020equal\u0020to\u0020\u007B0\u007D'), min: $.validator.format('Please\u0020enter\u0020a\u0020value\u0020greater\u0020than\u0020or\u0020equal\u0020to\u0020\u007B0\u007D'), validationFunctionForDateTime: $.validator.format('Please\u0020enter\u0020a\u0020valid\u0020date\u0020or\u0020time'), validationFunctionForHex: $.validator.format('Please\u0020enter\u0020a\u0020valid\u0020HEX\u0020input'), validationFunctionForMd5: $.validator.format('This\u0020column\u0020can\u0020not\u0020contain\u0020a\u002032\u0020chars\u0020value'), validationFunctionForAesDesEncrypt: $.validator.format('These\u0020functions\u0020are\u0020meant\u0020to\u0020return\u0020a\u0020binary\u0020result\u003B\u0020to\u0020avoid\u0020inconsistent\u0020results\u0020you\u0020should\u0020store\u0020it\u0020in\u0020a\u0020BINARY,\u0020VARBINARY,\u0020or\u0020BLOB\u0020column.') }); } ConsoleEnterExecutes=false AJAX.scriptHandler .add('vendor/jquery/jquery.min.js', 0) .add('vendor/jquery/jquery-migrate.js', 0) .add('vendor/sprintf.js', 1) .add('ajax.js', 0) .add('keyhandler.js', 1) .add('vendor/jquery/jquery-ui.min.js', 0) .add('name-conflict-fixes.js', 1) .add('vendor/bootstrap/bootstrap.bundle.min.js', 1) .add('vendor/js.cookie.js', 1) .add('vendor/jquery/jquery.validate.js', 0) .add('vendor/jquery/jquery-ui-timepicker-addon.js', 0) .add('vendor/jquery/jquery.debounce-1.0.6.js', 0) .add('menu_resizer.js', 1) .add('cross_framing_protection.js', 0) .add('messages.php', 0) .add('config.js', 1) .add('doclinks.js', 1) .add('functions.js', 1) .add('navigation.js', 1) .add('indexes.js', 1) .add('common.js', 1) .add('page_settings.js', 1) .add('vendor/codemirror/lib/codemirror.js', 0) .add('vendor/codemirror/mode/sql/sql.js', 0) .add('vendor/codemirror/addon/runmode/runmode.js', 0) .add('vendor/codemirror/addon/hint/show-hint.js', 0) .add('vendor/codemirror/addon/hint/sql-hint.js', 0) .add('vendor/codemirror/addon/lint/lint.js', 0) .add('codemirror/addon/lint/sql-lint.js', 0) .add('vendor/tracekit.js', 1) .add('error_report.js', 1) .add('drag_drop_import.js', 1) .add('shortcuts_handler.js', 1) .add('console.js', 1) ; $(function() { AJAX.fireOnload('vendor/sprintf.js'); AJAX.fireOnload('keyhandler.js'); AJAX.fireOnload('name-conflict-fixes.js'); AJAX.fireOnload('vendor/bootstrap/bootstrap.bundle.min.js'); AJAX.fireOnload('vendor/js.cookie.js'); AJAX.fireOnload('menu_resizer.js'); AJAX.fireOnload('config.js'); AJAX.fireOnload('doclinks.js'); AJAX.fireOnload('functions.js'); AJAX.fireOnload('navigation.js'); AJAX.fireOnload('indexes.js'); AJAX.fireOnload('common.js'); AJAX.fireOnload('page_settings.js'); AJAX.fireOnload('vendor/tracekit.js'); AJAX.fireOnload('error_report.js'); AJAX.fireOnload('drag_drop_import.js'); AJAX.fireOnload('shortcuts_handler.js'); AJAX.fireOnload('console.js'); }); // ]]> </script> <noscript><style>html{display:block}</style></noscript> </head> <body> <div id="pma_navigation" class="d-print-none" data-config-navigation-width="0"> <div id="pma_navigation_resizer"></div> <div id="pma_navigation_collapser"></div> <div id="pma_navigation_content"> <div id="pma_navigation_header"> <div id="pmalogo"> <a href="index.php"> <img id="imgpmalogo" src="./themes/pmahomme/img/logo_left.png" alt="phpMyAdmin"> </a> </div> <div id="navipanellinks"> <a href="index.php?route=/" title="Home"><img src="themes/dot.gif" title="Home" alt="Home" class="icon ic_b_home"></a> <a class="logout disableAjax" href="index.php?route=/logout" title="Empty session data"><img src="themes/dot.gif" title="Empty session data" alt="Empty session data" class="icon ic_s_loggoff"></a> <a href="./doc/html/index.html" title="phpMyAdmin documentation" target="_blank" rel="noopener noreferrer"><img src="themes/dot.gif" title="phpMyAdmin documentation" alt="phpMyAdmin documentation" class="icon ic_b_docs"></a> <a href="./url.php?url=https%3A%2F%2Fmariadb.com%2Fkb%2Fen%2Fdocumentation%2F" title="MariaDB Documentation" target="_blank" rel="noopener noreferrer"><img src="themes/dot.gif" title="MariaDB Documentation" alt="MariaDB Documentation" class="icon ic_b_sqlhelp"></a> <a id="pma_navigation_settings_icon" href="#" title="Navigation panel settings"><img src="themes/dot.gif" title="Navigation panel settings" alt="Navigation panel settings" class="icon ic_s_cog"></a> <a id="pma_navigation_reload" href="#" title="Reload navigation panel"><img src="themes/dot.gif" title="Reload navigation panel" alt="Reload navigation panel" class="icon ic_s_reload"></a> </div> <img src="themes/dot.gif" title="Loading…" alt="Loading…" style="visibility: hidden; display:none" class="icon ic_ajax_clock_small throbber"> </div> <div id="pma_navigation_tree" class="list_container synced highlight autoexpand"> <div class="pma_quick_warp"> <div class="drop_list"><button title="Recent tables" class="drop_button btn">Recent</button><ul id="pma_recent_list"><li class="warp_link"> <a href="index.php?route=/table/recent-favorite&db=test&table=wp_users"> `test`.`wp_users` </a> </li> <li class="warp_link"> <a href="index.php?route=/table/recent-favorite&db=scan&table=wp_users"> `scan`.`wp_users` </a> </li> <li class="warp_link"> <a href="index.php?route=/table/recent-favorite&db=attack&table=wp_users"> `attack`.`wp_users` </a> </li> </ul></div> <div class="drop_list"><button title="Favorite tables" class="drop_button btn">Favorites</button><ul id="pma_favorite_list"><li class="warp_link"> There are no favorite tables. </li> </ul></div> <div class="clearfloat"></div> </div> <div class="clearfloat"></div> <ul> <!-- CONTROLS START --> <li id="navigation_controls_outer"> <div id="navigation_controls"> <a href="#" id="pma_navigation_collapse" title="Collapse all"><img src="themes/dot.gif" title="Collapse all" alt="Collapse all" class="icon ic_s_collapseall"></a> <a href="#" id="pma_navigation_sync" title="Unlink from main panel"><img src="themes/dot.gif" title="Unlink from main panel" alt="Unlink from main panel" class="icon ic_s_link"></a> </div> </li> <!-- CONTROLS ENDS --> </ul> <div id='pma_navigation_tree_content'> <ul> <li class="first new_database italics"> <div class="block"> <i class="first"></i> </div> <div class="block second"> <a href="index.php?route=/server/databases"><img src="themes/dot.gif" title="New" alt="New" class="icon ic_b_newdb"></a> </div> <a class="hover_show_full" href="index.php?route=/server/databases" title="New">New</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.YXR0YWNr" data-vpath="cm9vdA==.YXR0YWNr" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=attack"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=attack" title="Structure">attack</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.aW5mb3JtYXRpb25fc2NoZW1h" data-vpath="cm9vdA==.aW5mb3JtYXRpb25fc2NoZW1h" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=information_schema"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=information_schema" title="Structure">information_schema</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.bXlzcWw=" data-vpath="cm9vdA==.bXlzcWw=" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=mysql"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=mysql" title="Structure">mysql</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.cGVyZm9ybWFuY2Vfc2NoZW1h" data-vpath="cm9vdA==.cGVyZm9ybWFuY2Vfc2NoZW1h" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=performance_schema"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=performance_schema" title="Structure">performance_schema</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.cGhwbXlhZG1pbg==" data-vpath="cm9vdA==.cGhwbXlhZG1pbg==" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=phpmyadmin"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=phpmyadmin" title="Structure">phpmyadmin</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.c2Nhbg==" data-vpath="cm9vdA==.c2Nhbg==" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=scan"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=scan" title="Structure">scan</a> <div class="clearfloat"></div> </li> <li class="last database"> <div class="block"> <i></i> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.dGVzdA==" data-vpath="cm9vdA==.dGVzdA==" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=test"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=test" title="Structure">test</a> <div class="clearfloat"></div> </li> </ul> </div> </div> <div id="pma_navi_settings_container"> <div id="pma_navigation_settings"><div class="page_settings"><form method="post" action="index.php?route=%2Fcollation-connection&server=1" class="config-form disableAjax"> <input type="hidden" name="tab_hash" value=""> <input type="hidden" name="check_page_refresh" id="check_page_refresh" value=""> <input type="hidden" name="token" value="68796d444825575e6d2d604f364a4658"> <input type="hidden" name="submit_save" value="Navi"> <ul class="nav nav-tabs" id="configFormDisplayTab" role="tablist"> <li class="nav-item" role="presentation"> <a class="nav-link active" id="Navi_panel-tab" href="#Navi_panel" data-bs-toggle="tab" role="tab" aria-controls="Navi_panel" aria-selected="true">Navigation panel</a> </li> <li class="nav-item" role="presentation"> <a class="nav-link" id="Navi_tree-tab" href="#Navi_tree" data-bs-toggle="tab" role="tab" aria-controls="Navi_tree" aria-selected="false">Navigation tree</a> </li> <li class="nav-item" role="presentation"> <a class="nav-link" id="Navi_servers-tab" href="#Navi_servers" data-bs-toggle="tab" role="tab" aria-controls="Navi_servers" aria-selected="false">Servers</a> </li> <li class="nav-item" role="presentation"> <a class="nav-link" id="Navi_databases-tab" href="#Navi_databases" data-bs-toggle="tab" role="tab" aria-controls="Navi_databases" aria-selected="false">Databases</a> </li> <li class="nav-item" role="presentation"> <a class="nav-link" id="Navi_tables-tab" href="#Navi_tables" data-bs-toggle="tab" role="tab" aria-controls="Navi_tables" aria-selected="false">Tables</a> </li> </ul> <div class="tab-content"> <div class="tab-pane fade show active" id="Navi_panel" role="tabpanel" aria-labelledby="Navi_panel-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Navigation panel</h5> <h6 class="card-subtitle mb-2 text-muted">Customize appearance of the navigation panel.</h6> <fieldset class="optbox"> <legend>Navigation panel</legend> <table class="table table-borderless"> <tr> <th> <label for="ShowDatabasesNavigationAsTree">Show databases navigation as tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_ShowDatabasesNavigationAsTree" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>In the navigation panel, replaces the database tree with a selector</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="ShowDatabasesNavigationAsTree" id="ShowDatabasesNavigationAsTree" checked> </span> <a class="restore-default hide" href="#ShowDatabasesNavigationAsTree" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationLinkWithMainPanel">Link with main panel</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationLinkWithMainPanel" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Link with main panel by highlighting the current database or table.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationLinkWithMainPanel" id="NavigationLinkWithMainPanel" checked> </span> <a class="restore-default hide" href="#NavigationLinkWithMainPanel" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationDisplayLogo">Display logo</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationDisplayLogo" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Show logo in navigation panel.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationDisplayLogo" id="NavigationDisplayLogo" checked> </span> <a class="restore-default hide" href="#NavigationDisplayLogo" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationLogoLink">Logo link URL</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationLogoLink" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>URL where logo in the navigation panel will point to.</small> </th> <td> <input type="text" name="NavigationLogoLink" id="NavigationLogoLink" value="index.php" class="w-75"> <a class="restore-default hide" href="#NavigationLogoLink" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationLogoLinkWindow">Logo link target</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationLogoLinkWindow" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Open the linked page in the main window (<code>main</code>) or in a new one (<code>new</code>).</small> </th> <td> <select name="NavigationLogoLinkWindow" id="NavigationLogoLinkWindow" class="w-75"> <option value="main" selected>main</option> <option value="new">new</option> </select> <a class="restore-default hide" href="#NavigationLogoLinkWindow" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreePointerEnable">Enable highlighting</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreePointerEnable" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Highlight server under the mouse cursor.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreePointerEnable" id="NavigationTreePointerEnable" checked> </span> <a class="restore-default hide" href="#NavigationTreePointerEnable" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="FirstLevelNavigationItems">Maximum items on first level</label> <span class="doc"> <a href="./doc/html/config.html#cfg_FirstLevelNavigationItems" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>The number of items that can be displayed on each page on the first level of the navigation tree.</small> </th> <td> <input type="number" name="FirstLevelNavigationItems" id="FirstLevelNavigationItems" value="100" class=""> <a class="restore-default hide" href="#FirstLevelNavigationItems" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeDisplayItemFilterMinimum">Minimum number of items to display the filter box</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDisplayItemFilterMinimum" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Defines the minimum number of items (tables, views, routines and events) to display a filter box.</small> </th> <td> <input type="number" name="NavigationTreeDisplayItemFilterMinimum" id="NavigationTreeDisplayItemFilterMinimum" value="30" class=""> <a class="restore-default hide" href="#NavigationTreeDisplayItemFilterMinimum" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NumRecentTables">Recently used tables</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NumRecentTables" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Maximum number of recently used tables; set 0 to disable.</small> </th> <td> <input type="number" name="NumRecentTables" id="NumRecentTables" value="10" class=""> <a class="restore-default hide" href="#NumRecentTables" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NumFavoriteTables">Favorite tables</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NumFavoriteTables" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Maximum number of favorite tables; set 0 to disable.</small> </th> <td> <input type="number" name="NumFavoriteTables" id="NumFavoriteTables" value="10" class=""> <a class="restore-default hide" href="#NumFavoriteTables" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationWidth">Navigation panel width</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationWidth" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Set to 0 to collapse navigation panel.</small> </th> <td> <input type="number" name="NavigationWidth" id="NavigationWidth" value="0" class="custom"> <a class="restore-default hide" href="#NavigationWidth" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> <div class="tab-pane fade" id="Navi_tree" role="tabpanel" aria-labelledby="Navi_tree-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Navigation tree</h5> <h6 class="card-subtitle mb-2 text-muted">Customize the navigation tree.</h6> <fieldset class="optbox"> <legend>Navigation tree</legend> <table class="table table-borderless"> <tr> <th> <label for="MaxNavigationItems">Maximum items in branch</label> <span class="doc"> <a href="./doc/html/config.html#cfg_MaxNavigationItems" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>The number of items that can be displayed on each page of the navigation tree.</small> </th> <td> <input type="number" name="MaxNavigationItems" id="MaxNavigationItems" value="50" class=""> <a class="restore-default hide" href="#MaxNavigationItems" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeEnableGrouping">Group items in the tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeEnableGrouping" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Group items in the navigation tree (determined by the separator defined in the Databases and Tables tabs above).</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeEnableGrouping" id="NavigationTreeEnableGrouping" checked> </span> <a class="restore-default hide" href="#NavigationTreeEnableGrouping" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeEnableExpansion">Enable navigation tree expansion</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeEnableExpansion" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to offer the possibility of tree expansion in the navigation panel.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeEnableExpansion" id="NavigationTreeEnableExpansion" checked> </span> <a class="restore-default hide" href="#NavigationTreeEnableExpansion" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowTables">Show tables in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowTables" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show tables under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowTables" id="NavigationTreeShowTables" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowTables" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowViews">Show views in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowViews" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show views under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowViews" id="NavigationTreeShowViews" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowViews" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowFunctions">Show functions in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowFunctions" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show functions under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowFunctions" id="NavigationTreeShowFunctions" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowFunctions" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowProcedures">Show procedures in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowProcedures" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show procedures under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowProcedures" id="NavigationTreeShowProcedures" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowProcedures" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowEvents">Show events in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowEvents" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show events under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowEvents" id="NavigationTreeShowEvents" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowEvents" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeAutoexpandSingleDb">Expand single database</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeAutoexpandSingleDb" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to expand single database in the navigation tree automatically.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeAutoexpandSingleDb" id="NavigationTreeAutoexpandSingleDb" checked> </span> <a class="restore-default hide" href="#NavigationTreeAutoexpandSingleDb" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> <div class="tab-pane fade" id="Navi_servers" role="tabpanel" aria-labelledby="Navi_servers-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Servers</h5> <h6 class="card-subtitle mb-2 text-muted">Servers display options.</h6> <fieldset class="optbox"> <legend>Servers</legend> <table class="table table-borderless"> <tr> <th> <label for="NavigationDisplayServers">Display servers selection</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationDisplayServers" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Display server choice at the top of the navigation panel.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationDisplayServers" id="NavigationDisplayServers" checked> </span> <a class="restore-default hide" href="#NavigationDisplayServers" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="DisplayServersList">Display servers as a list</label> <span class="doc"> <a href="./doc/html/config.html#cfg_DisplayServersList" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Show server listing as a list instead of a drop down.</small> </th> <td> <span class="checkbox custom"> <input type="checkbox" name="DisplayServersList" id="DisplayServersList" checked> </span> <a class="restore-default hide" href="#DisplayServersList" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> <div class="tab-pane fade" id="Navi_databases" role="tabpanel" aria-labelledby="Navi_databases-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Databases</h5> <h6 class="card-subtitle mb-2 text-muted">Databases display options.</h6> <fieldset class="optbox"> <legend>Databases</legend> <table class="table table-borderless"> <tr> <th> <label for="NavigationTreeDisplayDbFilterMinimum">Minimum number of databases to display the database filter box</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDisplayDbFilterMinimum" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> </th> <td> <input type="number" name="NavigationTreeDisplayDbFilterMinimum" id="NavigationTreeDisplayDbFilterMinimum" value="30" class=""> <a class="restore-default hide" href="#NavigationTreeDisplayDbFilterMinimum" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeDbSeparator">Database tree separator</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDbSeparator" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>String that separates databases into different tree levels.</small> </th> <td> <input type="text" size="25" name="NavigationTreeDbSeparator" id="NavigationTreeDbSeparator" value="_" class=""> <a class="restore-default hide" href="#NavigationTreeDbSeparator" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> <div class="tab-pane fade" id="Navi_tables" role="tabpanel" aria-labelledby="Navi_tables-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Tables</h5> <h6 class="card-subtitle mb-2 text-muted">Tables display options.</h6> <fieldset class="optbox"> <legend>Tables</legend> <table class="table table-borderless"> <tr> <th> <label for="NavigationTreeDefaultTabTable">Target for quick access icon</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDefaultTabTable" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> </th> <td> <select name="NavigationTreeDefaultTabTable" id="NavigationTreeDefaultTabTable" class="w-75"> <option value="structure" selected>Structure</option> <option value="sql">SQL</option> <option value="search">Search</option> <option value="insert">Insert</option> <option value="browse">Browse</option> </select> <a class="restore-default hide" href="#NavigationTreeDefaultTabTable" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeDefaultTabTable2">Target for second quick access icon</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDefaultTabTable2" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> </th> <td> <select name="NavigationTreeDefaultTabTable2" id="NavigationTreeDefaultTabTable2" class="w-75 custom"> <option value=""></option> <option value="structure" selected>Structure</option> <option value="sql">SQL</option> <option value="search">Search</option> <option value="insert">Insert</option> <option value="browse">Browse</option> </select> <a class="restore-default hide" href="#NavigationTreeDefaultTabTable2" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeTableSeparator">Table tree separator</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeTableSeparator" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>String that separates tables into different tree levels.</small> </th> <td> <input type="text" size="25" name="NavigationTreeTableSeparator" id="NavigationTreeTableSeparator" value="__" class=""> <a class="restore-default hide" href="#NavigationTreeTableSeparator" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeTableLevel">Maximum table tree depth</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeTableLevel" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> </th> <td> <input type="number" name="NavigationTreeTableLevel" id="NavigationTreeTableLevel" value="1" class=""> <a class="restore-default hide" href="#NavigationTreeTableLevel" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> </div> </form> <script type="text/javascript"> if (typeof configInlineParams === 'undefined' || !Array.isArray(configInlineParams)) { configInlineParams = []; } configInlineParams.push(function () { registerFieldValidator('FirstLevelNavigationItems', 'validatePositiveNumber', true); registerFieldValidator('NavigationTreeDisplayItemFilterMinimum', 'validatePositiveNumber', true); registerFieldValidator('NumRecentTables', 'validateNonNegativeNumber', true); registerFieldValidator('NumFavoriteTables', 'validateNonNegativeNumber', true); registerFieldValidator('NavigationWidth', 'validateNonNegativeNumber', true); registerFieldValidator('MaxNavigationItems', 'validatePositiveNumber', true); registerFieldValidator('NavigationTreeTableLevel', 'validatePositiveNumber', true); $.extend(Messages, { 'error_nan_p': 'Not\u0020a\u0020positive\u0020number\u0021', 'error_nan_nneg': 'Not\u0020a\u0020non\u002Dnegative\u0020number\u0021', 'error_incorrect_port': 'Not\u0020a\u0020valid\u0020port\u0020number\u0021', 'error_invalid_value': 'Incorrect\u0020value\u0021', 'error_value_lte': 'Value\u0020must\u0020be\u0020less\u0020than\u0020or\u0020equal\u0020to\u0020\u0025s\u0021', }); $.extend(defaultValues, { 'ShowDatabasesNavigationAsTree': true, 'NavigationLinkWithMainPanel': true, 'NavigationDisplayLogo': true, 'NavigationLogoLink': 'index.php', 'NavigationLogoLinkWindow': ['main'], 'NavigationTreePointerEnable': true, 'FirstLevelNavigationItems': '100', 'NavigationTreeDisplayItemFilterMinimum': '30', 'NumRecentTables': '10', 'NumFavoriteTables': '10', 'NavigationWidth': '240', 'MaxNavigationItems': '50', 'NavigationTreeEnableGrouping': true, 'NavigationTreeEnableExpansion': true, 'NavigationTreeShowTables': true, 'NavigationTreeShowViews': true, 'NavigationTreeShowFunctions': true, 'NavigationTreeShowProcedures': true, 'NavigationTreeShowEvents': true, 'NavigationTreeAutoexpandSingleDb': true, 'NavigationDisplayServers': true, 'DisplayServersList': false, 'NavigationTreeDisplayDbFilterMinimum': '30', 'NavigationTreeDbSeparator': '_', 'NavigationTreeDefaultTabTable': ['structure'], 'NavigationTreeDefaultTabTable2': [''], 'NavigationTreeTableSeparator': '__', 'NavigationTreeTableLevel': '1' }); }); if (typeof configScriptLoaded !== 'undefined' && configInlineParams) { loadInlineConfig(); } </script> </div></div> </div> </div> <div class="pma_drop_handler"> Drop files here </div> <div class="pma_sql_import_status"> <h2> SQL upload ( <span class="pma_import_count">0</span> ) <span class="close">x</span> <span class="minimize">-</span> </h2> <div></div> </div> </div> <div class="modal fade" id="unhideNavItemModal" tabindex="-1" aria-labelledby="unhideNavItemModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="unhideNavItemModalLabel">Show hidden navigation tree items.</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"></div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> </div> </div> </div> </div> <noscript> <div class="alert alert-danger" role="alert"> <img src="themes/dot.gif" title="" alt="" class="icon ic_s_error"> Javascript must be enabled past this point! </div> </noscript> <div id="floating_menubar" class="d-print-none"></div> <nav id="server-breadcrumb" aria-label="breadcrumb"> <ol class="breadcrumb breadcrumb-navbar"> <li class="breadcrumb-item"> <img src="themes/dot.gif" title="" alt="" class="icon ic_s_host"> <a href="index.php?route=/" data-raw-text="localhost" draggable="false"> Server: localhost </a> </li> </ol> </nav> <div id="topmenucontainer" class="menucontainer"> <nav class="navbar navbar-expand-lg navbar-light bg-light"> <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-label="Toggle navigation" aria-controls="navbarNav" aria-expanded="false"> <span class="navbar-toggler-icon"></span> </button> <div class="collapse navbar-collapse" id="navbarNav"> <ul id="topmenu" class="navbar-nav"> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/databases"> <img src="themes/dot.gif" title="Databases" alt="Databases" class="icon ic_s_db"> Databases </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/sql"> <img src="themes/dot.gif" title="SQL" alt="SQL" class="icon ic_b_sql"> SQL </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/status"> <img src="themes/dot.gif" title="Status" alt="Status" class="icon ic_s_status"> Status </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/privileges&viewing_mode=server"> <img src="themes/dot.gif" title="User accounts" alt="User accounts" class="icon ic_s_rights"> User accounts </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/export"> <img src="themes/dot.gif" title="Export" alt="Export" class="icon ic_b_export"> Export </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/import"> <img src="themes/dot.gif" title="Import" alt="Import" class="icon ic_b_import"> Import </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/preferences/manage"> <img src="themes/dot.gif" title="Settings" alt="Settings" class="icon ic_b_tblops"> Settings </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/replication"> <img src="themes/dot.gif" title="Replication" alt="Replication" class="icon ic_s_replication"> Replication </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/variables"> <img src="themes/dot.gif" title="Variables" alt="Variables" class="icon ic_s_vars"> Variables </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/collations"> <img src="themes/dot.gif" title="Charsets" alt="Charsets" class="icon ic_s_asci"> Charsets </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/engines"> <img src="themes/dot.gif" title="Engines" alt="Engines" class="icon ic_b_engine"> Engines </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/plugins"> <img src="themes/dot.gif" title="Plugins" alt="Plugins" class="icon ic_b_plugin"> Plugins </a> </li> </ul> </div> </nav> </div> <span id="page_nav_icons" class="d-print-none"> <span id="lock_page_icon"></span> <span id="page_settings_icon"> <img src="themes/dot.gif" title="Page-related settings" alt="Page-related settings" class="icon ic_s_cog"> </span> <a id="goto_pagetop" href="#"><img src="themes/dot.gif" title="Click on the bar to scroll to top of page" alt="Click on the bar to scroll to top of page" class="icon ic_s_top"></a> </span> <div id="pma_console_container" class="d-print-none"> <div id="pma_console"> <div class="toolbar collapsed"> <div class="switch_button console_switch"> <img src="themes/dot.gif" title="SQL Query Console" alt="SQL Query Console" class="icon ic_console"> <span>Console</span> </div> <div class="button clear"> <span>Clear</span> </div> <div class="button history"> <span>History</span> </div> <div class="button options"> <span>Options</span> </div> <div class="button bookmarks"> <span>Bookmarks</span> </div> <div class="button debug hide"> <span>Debug SQL</span> </div> </div> <div class="content"> <div class="console_message_container"> <div class="message welcome"> <span id="instructions-0"> Press Ctrl+Enter to execute query </span> <span class="hide" id="instructions-1"> Press Enter to execute query </span> </div> <div class="message history collapsed hide select" targetdb="attack" targettable="wp_users"> <div class="action_content"> <span class="action collapse"> Collapse </span> <span class="action expand"> Expand </span> <span class="action requery"> Requery </span> <span class="action edit"> Edit </span> <span class="action explain"> Explain </span> <span class="action profiling"> Profiling </span> <span class="action bookmark"> Bookmark </span> <span class="text failed"> Query failed </span> <span class="text targetdb"> Database : <span>attack</span> </span> <span class="text query_time"> Queried time : <span>During current session</span> </span> </div> <span class="query">SELECT * FROM `wp_users`</span> </div> <div class="message history collapsed hide select" targetdb="test" targettable="wp_users"> <div class="action_content"> <span class="action collapse"> Collapse </span> <span class="action expand"> Expand </span> <span class="action requery"> Requery </span> <span class="action edit"> Edit </span> <span class="action explain"> Explain </span> <span class="action profiling"> Profiling </span> <span class="action bookmark"> Bookmark </span> <span class="text failed"> Query failed </span> <span class="text targetdb"> Database : <span>test</span> </span> <span class="text query_time"> Queried time : <span>During current session</span> </span> </div> <span class="query">SELECT * FROM `wp_users`</span> </div> <div class="message history collapsed hide select" targetdb="scan" targettable="wp_users"> <div class="action_content"> <span class="action collapse"> Collapse </span> <span class="action expand"> Expand </span> <span class="action requery"> Requery </span> <span class="action edit"> Edit </span> <span class="action explain"> Explain </span> <span class="action profiling"> Profiling </span> <span class="action bookmark"> Bookmark </span> <span class="text failed"> Query failed </span> <span class="text targetdb"> Database : <span>scan</span> </span> <span class="text query_time"> Queried time : <span>During current session</span> </span> </div> <span class="query">SELECT * FROM `wp_users`</span> </div> </div><!-- console_message_container --> <div class="query_input"> <span class="console_query_input"></span> </div> </div><!-- message end --> <div class="mid_layer"></div> <div class="card" id="debug_console"> <div class="toolbar "> <div class="button order order_asc"> <span>ascending</span> </div> <div class="button order order_desc"> <span>descending</span> </div> <div class="text"> <span>Order:</span> </div> <div class="switch_button"> <span>Debug SQL</span> </div> <div class="button order_by sort_count"> <span>Count</span> </div> <div class="button order_by sort_exec"> <span>Execution order</span> </div> <div class="button order_by sort_time"> <span>Time taken</span> </div> <div class="text"> <span>Order by:</span> </div> <div class="button group_queries"> <span>Group queries</span> </div> <div class="button ungroup_queries"> <span>Ungroup queries</span> </div> </div> <div class="content debug"> <div class="message welcome"></div> <div class="debugLog"></div> </div> <!-- Content --> <div class="templates"> <div class="debug_query action_content"> <span class="action collapse"> Collapse </span> <span class="action expand"> Expand </span> <span class="action dbg_show_trace"> Show trace </span> <span class="action dbg_hide_trace"> Hide trace </span> <span class="text count hide"> Count </span> <span class="text time"> Time taken </span> </div> </div> <!-- Template --> </div> <!-- Debug SQL card --> <div class="card" id="pma_bookmarks"> <div class="toolbar "> <div class="switch_button"> <span>Bookmarks</span> </div> <div class="button refresh"> <span>Refresh</span> </div> <div class="button add"> <span>Add</span> </div> </div> <div class="content bookmark"> <div class="message welcome"> <span>No bookmarks</span> </div> </div> <div class="mid_layer"></div> <div class="card add"> <div class="toolbar "> <div class="switch_button"> <span>Add bookmark</span> </div> </div> <div class="content add_bookmark"> <div class="options"> <label> Label: <input type="text" name="label"> </label> <label> Target database: <input type="text" name="targetdb"> </label> <label> <input type="checkbox" name="shared">Share this bookmark </label> <button class="btn btn-primary" type="submit" name="submit">OK</button> </div> <!-- options --> <div class="query_input"> <span class="bookmark_add_input"></span> </div> </div> </div> <!-- Add bookmark card --> </div> <!-- Bookmarks card --> <div class="card" id="pma_console_options"> <div class="toolbar "> <div class="switch_button"> <span>Options</span> </div> <div class="button default"> <span>Set default</span> </div> </div> <div class="content"> <label> <input type="checkbox" name="always_expand">Always expand query messages </label> <br> <label> <input type="checkbox" name="start_history">Show query history at start </label> <br> <label> <input type="checkbox" name="current_query">Show current browsing query </label> <br> <label> <input type="checkbox" name="enter_executes"> Execute queries on Enter and insert new line with Shift+Enter. To make this permanent, view settings. </label> <br> <label> <input type="checkbox" name="dark_theme">Switch to dark theme </label> <br> </div> </div> <!-- Options card --> <div class="templates"> <div class="query_actions"> <span class="action collapse"> Collapse </span> <span class="action expand"> Expand </span> <span class="action requery"> Requery </span> <span class="action edit"> Edit </span> <span class="action explain"> Explain </span> <span class="action profiling"> Profiling </span> <span class="action bookmark"> Bookmark </span> <span class="text failed"> Query failed </span> <span class="text targetdb"> Database : <span></span> </span> <span class="text query_time"> Queried time : <span></span> </span> </div> </div> </div> <!-- #console end --> </div> <!-- #console_container end --> <div id="page_content"> <div class="modal fade" id="previewSqlModal" tabindex="-1" aria-labelledby="previewSqlModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="previewSqlModalLabel">Loading</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"></div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> </div> </div> </div> </div> <div class="modal fade" id="enumEditorModal" tabindex="-1" aria-labelledby="enumEditorModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="enumEditorModalLabel">ENUM/SET editor</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"></div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" id="enumEditorGoButton" data-bs-dismiss="modal">Go</button> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> </div> </div> </div> </div> <div class="modal fade" id="createViewModal" tabindex="-1" aria-labelledby="createViewModalLabel" aria-hidden="true"> <div class="modal-dialog modal-lg" id="createViewModalDialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="createViewModalLabel">Create view</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"></div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" id="createViewModalGoButton">Go</button> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> </div> </div> </div> </div> </div> <div id="selflink" class="d-print-none"> <a href="index.php?route=%2Fcollation-connection&server=1" title="Open new phpMyAdmin window" target="_blank" rel="noopener noreferrer"> <img src="themes/dot.gif" title="Open new phpMyAdmin window" alt="Open new phpMyAdmin window" class="icon ic_window-new"> </a> </div> <div class="clearfloat d-print-none" id="pma_errors"> </div> <script data-cfasync="false" type="text/javascript"> // <![CDATA[ var debugSQLInfo = 'null'; // ]]> </script> </body> </html>Evidence <form method="post" action="index.php?route=%2Fcollation-connection&server=1" class="config-form disableAjax">Solution Phase: Architecture and Design
Use a vetted library or framework that does not allow this weakness to occur or provides constructs that make this weakness easier to avoid.
For example, use anti-CSRF packages such as the OWASP CSRFGuard.
Phase: Implementation
Ensure that your application is free of cross-site scripting issues, because most CSRF defenses can be bypassed using attacker-controlled script.
Phase: Architecture and Design
Generate a unique nonce for each form, place the nonce into the form, and verify the nonce upon receipt of the form. Be sure that the nonce is not predictable (CWE-330).
Note that this can be bypassed using XSS.
Identify especially dangerous operations. When the user performs a dangerous operation, send a separate confirmation request to ensure that the user intended to perform that operation.
Note that this can be bypassed using XSS.
Use the ESAPI Session Management control.
This control includes a component for CSRF.
Do not use the GET method for any request that triggers a state change.
Phase: Implementation
Check the HTTP Referer header to see if the request originated from an expected page. This could break legitimate functionality, because users or proxies may have disabled sending the Referer for privacy reasons.
-
-
-
Risk=Low, Confidence=High (1)
-
http://localhost (1)
-
Server Leaks Version Information via "Server" HTTP Response Header Field (1)
GET http://localhost/scan/wordpress/wp-content/plugins/woocommerce-payments/vendor/woocommerce/subscriptions-core/build/index.css?ver=3.1.6
Alert tags Alert description The web/application server is leaking version information via the "Server" HTTP response header. Access to such information may facilitate attackers identifying other vulnerabilities your web/application server is subject to.
Request Request line and header section (422 bytes)
GET http://localhost/scan/wordpress/wp-content/plugins/woocommerce-payments/vendor/woocommerce/subscriptions-core/build/index.css?ver=3.1.6 HTTP/1.1 host: localhost User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:136.0) Gecko/20100101 Firefox/136.0 Accept: text/css,*/*;q=0.1 Accept-Language: en-CA,en-US;q=0.7,en;q=0.3 Connection: keep-alive Referer: http://localhost/scan/wordpress/ Priority: u=2Request body (0 bytes)
Response Status line and header section (338 bytes)
HTTP/1.1 200 OK Date: Sat, 19 Apr 2025 15:16:05 GMT Server: Apache/2.4.54 (Unix) OpenSSL/1.1.1s PHP/7.4.33 mod_perl/2.0.12 Perl/v5.34.1 Last-Modified: Thu, 28 Oct 2021 10:51:02 GMT ETag: "585-5cf677c90d180" Accept-Ranges: bytes Content-Length: 1413 Keep-Alive: timeout=5, max=100 Connection: Keep-Alive Content-Type: text/cssResponse body (1413 bytes)
.wcs-recurring-totals-panel{position:relative;padding:1em 0 0}.wcs-recurring-totals-panel::after{border-style:solid;border-width:1px 0;bottom:0;content:"";display:block;left:0;opacity:.3;pointer-events:none;position:absolute;right:0;top:0}.wcs-recurring-totals-panel+.wcs-recurring-totals-panel::after{border-top-width:0}.wcs-recurring-totals-panel .wc-block-components-panel .wc-block-components-totals-item{padding-left:0;padding-right:0}.wcs-recurring-totals-panel .wc-block-components-totals-item__label::first-letter{text-transform:capitalize}.wcs-recurring-totals-panel .wcs-recurring-totals-panel__title .wc-block-components-totals-item__label{font-weight:700}.wcs-recurring-totals-panel__title{margin:0}.wcs-recurring-totals-panel__details .wc-block-components-panel__button,.wcs-recurring-totals-panel__details .wc-block-components-panel__button:hover,.wcs-recurring-totals-panel__details .wc-block-components-panel__button:focus{font-size:.875em}.wcs-recurring-totals-panel__details .wc-block-components-panel__content>.wc-block-components-totals-item:first-child{margin-top:0}.wcs-recurring-totals-panel__details .wc-block-components-panel__content>.wc-block-components-totals-item:last-child{margin-bottom:0}.wcs-recurring-totals-panel__details .wcs-recurring-totals-panel__details-total .wc-block-components-totals-item__label{font-weight:700}.wcs-recurring-totals__subscription-length{float:right}Evidence Apache/2.4.54 (Unix) OpenSSL/1.1.1s PHP/7.4.33 mod_perl/2.0.12 Perl/v5.34.1Solution Ensure that your web server, application server, load balancer, etc. is configured to suppress the "Server" header or provide generic details.
-
-
-
Risk=Low, Confidence=Medium (6)
-
http://localhost (6)
-
Big Redirect Detected (Potential Sensitive Information Leak) (1)
GET http://localhost/phpmyadmin/index.php?lang=en&route=/logout
Alert tags Alert description The server has responded with a redirect that seems to provide a large response. This may indicate that although the server sent a redirect it also responded with body content (which may include sensitive details, PII, etc.).
Other info Location header URI length: 29 [/phpmyadmin/index.php?route=/].
Predicted response size: 329.
Response Body Length: 70,427.
Request Request line and header section (366 bytes)
GET http://localhost/phpmyadmin/index.php?lang=en&route=/logout HTTP/1.1 host: localhost user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 pragma: no-cache cache-control: no-cache referer: http://localhost/phpmyadmin/ Cookie: phpMyAdmin=610f86c60f00a8f4dc92fe660c217e62; pma_lang=enRequest body (0 bytes)
Response Status line and header section (1374 bytes)
HTTP/1.1 302 Found Date: Sat, 19 Apr 2025 15:17:45 GMT Server: Apache/2.4.54 (Unix) OpenSSL/1.1.1s PHP/7.4.33 mod_perl/2.0.12 Perl/v5.34.1 X-Powered-By: PHP/7.4.33 Set-Cookie: phpMyAdmin=610f86c60f00a8f4dc92fe660c217e62; path=/phpmyadmin/; HttpOnly; SameSite=Strict Expires: Sat, 19 Apr 2025 15:17:45 +0000 Cache-Control: no-store, no-cache, must-revalidate, pre-check=0, post-check=0, max-age=0 Last-Modified: Sat, 19 Apr 2025 15:17:45 +0000 X-ob_mode: 1 Location: /phpmyadmin/index.php?route=/ X-Frame-Options: DENY Referrer-Policy: no-referrer Content-Security-Policy: default-src 'self' ;script-src 'self' 'unsafe-inline' 'unsafe-eval' ;style-src 'self' 'unsafe-inline' ;img-src 'self' data: *.tile.openstreetmap.org;object-src 'none'; X-Content-Security-Policy: default-src 'self' ;options inline-script eval-script;referrer no-referrer;img-src 'self' data: *.tile.openstreetmap.org;object-src 'none'; X-WebKit-CSP: default-src 'self' ;script-src 'self' 'unsafe-inline' 'unsafe-eval';referrer no-referrer;style-src 'self' 'unsafe-inline' ;img-src 'self' data: *.tile.openstreetmap.org;object-src 'none'; X-XSS-Protection: 1; mode=block X-Content-Type-Options: nosniff X-Permitted-Cross-Domain-Policies: none X-Robots-Tag: noindex, nofollow Pragma: no-cache Vary: Accept-Encoding Content-Type: text/html; charset=utf-8 content-length: 70427Response body (70427 bytes)
<!doctype html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="referrer" content="no-referrer"> <meta name="robots" content="noindex,nofollow"> <style id="cfs-style">html{display: none;}</style> <link rel="icon" href="favicon.ico" type="image/x-icon"> <link rel="shortcut icon" href="favicon.ico" type="image/x-icon"> <link rel="stylesheet" type="text/css" href="./themes/pmahomme/jquery/jquery-ui.css"> <link rel="stylesheet" type="text/css" href="js/vendor/codemirror/lib/codemirror.css?v=5.2.0"> <link rel="stylesheet" type="text/css" href="js/vendor/codemirror/addon/hint/show-hint.css?v=5.2.0"> <link rel="stylesheet" type="text/css" href="js/vendor/codemirror/addon/lint/lint.css?v=5.2.0"> <link rel="stylesheet" type="text/css" href="./themes/pmahomme/css/theme.css?v=5.2.0"> <title>localhost / localhost | phpMyAdmin 5.2.0</title> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery.min.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery-migrate.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/sprintf.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/ajax.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/keyhandler.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery-ui.min.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/name-conflict-fixes.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/bootstrap/bootstrap.bundle.min.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/js.cookie.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery.validate.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery-ui-timepicker-addon.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery.debounce-1.0.6.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/menu_resizer.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/cross_framing_protection.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/messages.php?l=en&v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/config.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/doclinks.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/functions.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/navigation.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/indexes.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/common.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/page_settings.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/lib/codemirror.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/mode/sql/sql.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/addon/runmode/runmode.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/addon/hint/show-hint.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/addon/hint/sql-hint.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/addon/lint/lint.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/codemirror/addon/lint/sql-lint.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/tracekit.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/error_report.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/drag_drop_import.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/shortcuts_handler.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/console.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript"> // <![CDATA[ CommonParams.setAll({common_query:"",opendb_url:"index.php?route=/database/structure",lang:"en",server:"1",table:"",db:"",token:"68796d444825575e6d2d604f364a4658",text_dir:"ltr",LimitChars:"50",pftext:"",confirm:true,LoginCookieValidity:"1440",session_gc_maxlifetime:"1440",logged_in:true,is_https:false,rootPath:"/phpmyadmin/",arg_separator:"&",version:"5.2.0",auth_type:"config",user:"root"}); var firstDayOfCalendar = '0'; var themeImagePath = '.\/themes\/pmahomme\/img\/'; var mysqlDocTemplate = '.\/url.php\u003Furl\u003Dhttps\u00253A\u00252F\u00252Fdev.mysql.com\u00252Fdoc\u00252Frefman\u00252F8.0\u00252Fen\u00252F\u002525s.html'; var maxInputVars = 1000; if ($.datepicker) { $.datepicker.regional[''].closeText = 'Done'; $.datepicker.regional[''].prevText = 'Prev'; $.datepicker.regional[''].nextText = 'Next'; $.datepicker.regional[''].currentText = 'Today'; $.datepicker.regional[''].monthNames = [ 'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December', ]; $.datepicker.regional[''].monthNamesShort = [ 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec', ]; $.datepicker.regional[''].dayNames = [ 'Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', ]; $.datepicker.regional[''].dayNamesShort = [ 'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', ]; $.datepicker.regional[''].dayNamesMin = [ 'Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa', ]; $.datepicker.regional[''].weekHeader = 'Wk'; $.datepicker.regional[''].showMonthAfterYear = false; $.datepicker.regional[''].yearSuffix = ''; $.extend($.datepicker._defaults, $.datepicker.regional['']); } if ($.timepicker) { $.timepicker.regional[''].timeText = 'Time'; $.timepicker.regional[''].hourText = 'Hour'; $.timepicker.regional[''].minuteText = 'Minute'; $.timepicker.regional[''].secondText = 'Second'; $.extend($.timepicker._defaults, $.timepicker.regional['']); } function extendingValidatorMessages () { $.extend($.validator.messages, { required: 'This\u0020field\u0020is\u0020required', remote: 'Please\u0020fix\u0020this\u0020field', email: 'Please\u0020enter\u0020a\u0020valid\u0020email\u0020address', url: 'Please\u0020enter\u0020a\u0020valid\u0020URL', date: 'Please\u0020enter\u0020a\u0020valid\u0020date', dateISO: 'Please\u0020enter\u0020a\u0020valid\u0020date\u0020\u0028\u0020ISO\u0020\u0029', number: 'Please\u0020enter\u0020a\u0020valid\u0020number', creditcard: 'Please\u0020enter\u0020a\u0020valid\u0020credit\u0020card\u0020number', digits: 'Please\u0020enter\u0020only\u0020digits', equalTo: 'Please\u0020enter\u0020the\u0020same\u0020value\u0020again', maxlength: $.validator.format('Please\u0020enter\u0020no\u0020more\u0020than\u0020\u007B0\u007D\u0020characters'), minlength: $.validator.format('Please\u0020enter\u0020at\u0020least\u0020\u007B0\u007D\u0020characters'), rangelength: $.validator.format('Please\u0020enter\u0020a\u0020value\u0020between\u0020\u007B0\u007D\u0020and\u0020\u007B1\u007D\u0020characters\u0020long'), range: $.validator.format('Please\u0020enter\u0020a\u0020value\u0020between\u0020\u007B0\u007D\u0020and\u0020\u007B1\u007D'), max: $.validator.format('Please\u0020enter\u0020a\u0020value\u0020less\u0020than\u0020or\u0020equal\u0020to\u0020\u007B0\u007D'), min: $.validator.format('Please\u0020enter\u0020a\u0020value\u0020greater\u0020than\u0020or\u0020equal\u0020to\u0020\u007B0\u007D'), validationFunctionForDateTime: $.validator.format('Please\u0020enter\u0020a\u0020valid\u0020date\u0020or\u0020time'), validationFunctionForHex: $.validator.format('Please\u0020enter\u0020a\u0020valid\u0020HEX\u0020input'), validationFunctionForMd5: $.validator.format('This\u0020column\u0020can\u0020not\u0020contain\u0020a\u002032\u0020chars\u0020value'), validationFunctionForAesDesEncrypt: $.validator.format('These\u0020functions\u0020are\u0020meant\u0020to\u0020return\u0020a\u0020binary\u0020result\u003B\u0020to\u0020avoid\u0020inconsistent\u0020results\u0020you\u0020should\u0020store\u0020it\u0020in\u0020a\u0020BINARY,\u0020VARBINARY,\u0020or\u0020BLOB\u0020column.') }); } ConsoleEnterExecutes=false AJAX.scriptHandler .add('vendor/jquery/jquery.min.js', 0) .add('vendor/jquery/jquery-migrate.js', 0) .add('vendor/sprintf.js', 1) .add('ajax.js', 0) .add('keyhandler.js', 1) .add('vendor/jquery/jquery-ui.min.js', 0) .add('name-conflict-fixes.js', 1) .add('vendor/bootstrap/bootstrap.bundle.min.js', 1) .add('vendor/js.cookie.js', 1) .add('vendor/jquery/jquery.validate.js', 0) .add('vendor/jquery/jquery-ui-timepicker-addon.js', 0) .add('vendor/jquery/jquery.debounce-1.0.6.js', 0) .add('menu_resizer.js', 1) .add('cross_framing_protection.js', 0) .add('messages.php', 0) .add('config.js', 1) .add('doclinks.js', 1) .add('functions.js', 1) .add('navigation.js', 1) .add('indexes.js', 1) .add('common.js', 1) .add('page_settings.js', 1) .add('vendor/codemirror/lib/codemirror.js', 0) .add('vendor/codemirror/mode/sql/sql.js', 0) .add('vendor/codemirror/addon/runmode/runmode.js', 0) .add('vendor/codemirror/addon/hint/show-hint.js', 0) .add('vendor/codemirror/addon/hint/sql-hint.js', 0) .add('vendor/codemirror/addon/lint/lint.js', 0) .add('codemirror/addon/lint/sql-lint.js', 0) .add('vendor/tracekit.js', 1) .add('error_report.js', 1) .add('drag_drop_import.js', 1) .add('shortcuts_handler.js', 1) .add('console.js', 1) ; $(function() { AJAX.fireOnload('vendor/sprintf.js'); AJAX.fireOnload('keyhandler.js'); AJAX.fireOnload('name-conflict-fixes.js'); AJAX.fireOnload('vendor/bootstrap/bootstrap.bundle.min.js'); AJAX.fireOnload('vendor/js.cookie.js'); AJAX.fireOnload('menu_resizer.js'); AJAX.fireOnload('config.js'); AJAX.fireOnload('doclinks.js'); AJAX.fireOnload('functions.js'); AJAX.fireOnload('navigation.js'); AJAX.fireOnload('indexes.js'); AJAX.fireOnload('common.js'); AJAX.fireOnload('page_settings.js'); AJAX.fireOnload('vendor/tracekit.js'); AJAX.fireOnload('error_report.js'); AJAX.fireOnload('drag_drop_import.js'); AJAX.fireOnload('shortcuts_handler.js'); AJAX.fireOnload('console.js'); }); // ]]> </script> <noscript><style>html{display:block}</style></noscript> </head> <body> <div id="pma_navigation" class="d-print-none" data-config-navigation-width="0"> <div id="pma_navigation_resizer"></div> <div id="pma_navigation_collapser"></div> <div id="pma_navigation_content"> <div id="pma_navigation_header"> <div id="pmalogo"> <a href="index.php"> <img id="imgpmalogo" src="./themes/pmahomme/img/logo_left.png" alt="phpMyAdmin"> </a> </div> <div id="navipanellinks"> <a href="index.php?route=/" title="Home"><img src="themes/dot.gif" title="Home" alt="Home" class="icon ic_b_home"></a> <a class="logout disableAjax" href="index.php?route=/logout" title="Empty session data"><img src="themes/dot.gif" title="Empty session data" alt="Empty session data" class="icon ic_s_loggoff"></a> <a href="./doc/html/index.html" title="phpMyAdmin documentation" target="_blank" rel="noopener noreferrer"><img src="themes/dot.gif" title="phpMyAdmin documentation" alt="phpMyAdmin documentation" class="icon ic_b_docs"></a> <a href="./url.php?url=https%3A%2F%2Fmariadb.com%2Fkb%2Fen%2Fdocumentation%2F" title="MariaDB Documentation" target="_blank" rel="noopener noreferrer"><img src="themes/dot.gif" title="MariaDB Documentation" alt="MariaDB Documentation" class="icon ic_b_sqlhelp"></a> <a id="pma_navigation_settings_icon" href="#" title="Navigation panel settings"><img src="themes/dot.gif" title="Navigation panel settings" alt="Navigation panel settings" class="icon ic_s_cog"></a> <a id="pma_navigation_reload" href="#" title="Reload navigation panel"><img src="themes/dot.gif" title="Reload navigation panel" alt="Reload navigation panel" class="icon ic_s_reload"></a> </div> <img src="themes/dot.gif" title="Loading…" alt="Loading…" style="visibility: hidden; display:none" class="icon ic_ajax_clock_small throbber"> </div> <div id="pma_navigation_tree" class="list_container synced highlight autoexpand"> <div class="pma_quick_warp"> <div class="drop_list"><button title="Recent tables" class="drop_button btn">Recent</button><ul id="pma_recent_list"><li class="warp_link"> <a href="index.php?route=/table/recent-favorite&db=scan&table=wp_users"> `scan`.`wp_users` </a> </li> <li class="warp_link"> <a href="index.php?route=/table/recent-favorite&db=attack&table=wp_users"> `attack`.`wp_users` </a> </li> <li class="warp_link"> <a href="index.php?route=/table/recent-favorite&db=test&table=wp_users"> `test`.`wp_users` </a> </li> </ul></div> <div class="drop_list"><button title="Favorite tables" class="drop_button btn">Favorites</button><ul id="pma_favorite_list"><li class="warp_link"> There are no favorite tables. </li> </ul></div> <div class="clearfloat"></div> </div> <div class="clearfloat"></div> <ul> <!-- CONTROLS START --> <li id="navigation_controls_outer"> <div id="navigation_controls"> <a href="#" id="pma_navigation_collapse" title="Collapse all"><img src="themes/dot.gif" title="Collapse all" alt="Collapse all" class="icon ic_s_collapseall"></a> <a href="#" id="pma_navigation_sync" title="Unlink from main panel"><img src="themes/dot.gif" title="Unlink from main panel" alt="Unlink from main panel" class="icon ic_s_link"></a> </div> </li> <!-- CONTROLS ENDS --> </ul> <div id='pma_navigation_tree_content'> <ul> <li class="first new_database italics"> <div class="block"> <i class="first"></i> </div> <div class="block second"> <a href="index.php?route=/server/databases"><img src="themes/dot.gif" title="New" alt="New" class="icon ic_b_newdb"></a> </div> <a class="hover_show_full" href="index.php?route=/server/databases" title="New">New</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.YXR0YWNr" data-vpath="cm9vdA==.YXR0YWNr" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=attack"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=attack" title="Structure">attack</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.aW5mb3JtYXRpb25fc2NoZW1h" data-vpath="cm9vdA==.aW5mb3JtYXRpb25fc2NoZW1h" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=information_schema"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=information_schema" title="Structure">information_schema</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.bXlzcWw=" data-vpath="cm9vdA==.bXlzcWw=" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=mysql"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=mysql" title="Structure">mysql</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.cGVyZm9ybWFuY2Vfc2NoZW1h" data-vpath="cm9vdA==.cGVyZm9ybWFuY2Vfc2NoZW1h" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=performance_schema"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=performance_schema" title="Structure">performance_schema</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.cGhwbXlhZG1pbg==" data-vpath="cm9vdA==.cGhwbXlhZG1pbg==" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=phpmyadmin"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=phpmyadmin" title="Structure">phpmyadmin</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.c2Nhbg==" data-vpath="cm9vdA==.c2Nhbg==" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=scan"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=scan" title="Structure">scan</a> <div class="clearfloat"></div> </li> <li class="last database"> <div class="block"> <i></i> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.dGVzdA==" data-vpath="cm9vdA==.dGVzdA==" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=test"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=test" title="Structure">test</a> <div class="clearfloat"></div> </li> </ul> </div> </div> <div id="pma_navi_settings_container"> <div id="pma_navigation_settings"><div class="page_settings"><form method="post" action="index.php?route=%2Flogout&server=1" class="config-form disableAjax"> <input type="hidden" name="tab_hash" value=""> <input type="hidden" name="check_page_refresh" id="check_page_refresh" value=""> <input type="hidden" name="token" value="68796d444825575e6d2d604f364a4658"> <input type="hidden" name="submit_save" value="Navi"> <ul class="nav nav-tabs" id="configFormDisplayTab" role="tablist"> <li class="nav-item" role="presentation"> <a class="nav-link active" id="Navi_panel-tab" href="#Navi_panel" data-bs-toggle="tab" role="tab" aria-controls="Navi_panel" aria-selected="true">Navigation panel</a> </li> <li class="nav-item" role="presentation"> <a class="nav-link" id="Navi_tree-tab" href="#Navi_tree" data-bs-toggle="tab" role="tab" aria-controls="Navi_tree" aria-selected="false">Navigation tree</a> </li> <li class="nav-item" role="presentation"> <a class="nav-link" id="Navi_servers-tab" href="#Navi_servers" data-bs-toggle="tab" role="tab" aria-controls="Navi_servers" aria-selected="false">Servers</a> </li> <li class="nav-item" role="presentation"> <a class="nav-link" id="Navi_databases-tab" href="#Navi_databases" data-bs-toggle="tab" role="tab" aria-controls="Navi_databases" aria-selected="false">Databases</a> </li> <li class="nav-item" role="presentation"> <a class="nav-link" id="Navi_tables-tab" href="#Navi_tables" data-bs-toggle="tab" role="tab" aria-controls="Navi_tables" aria-selected="false">Tables</a> </li> </ul> <div class="tab-content"> <div class="tab-pane fade show active" id="Navi_panel" role="tabpanel" aria-labelledby="Navi_panel-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Navigation panel</h5> <h6 class="card-subtitle mb-2 text-muted">Customize appearance of the navigation panel.</h6> <fieldset class="optbox"> <legend>Navigation panel</legend> <table class="table table-borderless"> <tr> <th> <label for="ShowDatabasesNavigationAsTree">Show databases navigation as tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_ShowDatabasesNavigationAsTree" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>In the navigation panel, replaces the database tree with a selector</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="ShowDatabasesNavigationAsTree" id="ShowDatabasesNavigationAsTree" checked> </span> <a class="restore-default hide" href="#ShowDatabasesNavigationAsTree" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationLinkWithMainPanel">Link with main panel</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationLinkWithMainPanel" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Link with main panel by highlighting the current database or table.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationLinkWithMainPanel" id="NavigationLinkWithMainPanel" checked> </span> <a class="restore-default hide" href="#NavigationLinkWithMainPanel" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationDisplayLogo">Display logo</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationDisplayLogo" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Show logo in navigation panel.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationDisplayLogo" id="NavigationDisplayLogo" checked> </span> <a class="restore-default hide" href="#NavigationDisplayLogo" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationLogoLink">Logo link URL</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationLogoLink" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>URL where logo in the navigation panel will point to.</small> </th> <td> <input type="text" name="NavigationLogoLink" id="NavigationLogoLink" value="index.php" class="w-75"> <a class="restore-default hide" href="#NavigationLogoLink" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationLogoLinkWindow">Logo link target</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationLogoLinkWindow" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Open the linked page in the main window (<code>main</code>) or in a new one (<code>new</code>).</small> </th> <td> <select name="NavigationLogoLinkWindow" id="NavigationLogoLinkWindow" class="w-75"> <option value="main" selected>main</option> <option value="new">new</option> </select> <a class="restore-default hide" href="#NavigationLogoLinkWindow" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreePointerEnable">Enable highlighting</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreePointerEnable" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Highlight server under the mouse cursor.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreePointerEnable" id="NavigationTreePointerEnable" checked> </span> <a class="restore-default hide" href="#NavigationTreePointerEnable" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="FirstLevelNavigationItems">Maximum items on first level</label> <span class="doc"> <a href="./doc/html/config.html#cfg_FirstLevelNavigationItems" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>The number of items that can be displayed on each page on the first level of the navigation tree.</small> </th> <td> <input type="number" name="FirstLevelNavigationItems" id="FirstLevelNavigationItems" value="100" class=""> <a class="restore-default hide" href="#FirstLevelNavigationItems" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeDisplayItemFilterMinimum">Minimum number of items to display the filter box</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDisplayItemFilterMinimum" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Defines the minimum number of items (tables, views, routines and events) to display a filter box.</small> </th> <td> <input type="number" name="NavigationTreeDisplayItemFilterMinimum" id="NavigationTreeDisplayItemFilterMinimum" value="30" class=""> <a class="restore-default hide" href="#NavigationTreeDisplayItemFilterMinimum" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NumRecentTables">Recently used tables</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NumRecentTables" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Maximum number of recently used tables; set 0 to disable.</small> </th> <td> <input type="number" name="NumRecentTables" id="NumRecentTables" value="10" class=""> <a class="restore-default hide" href="#NumRecentTables" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NumFavoriteTables">Favorite tables</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NumFavoriteTables" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Maximum number of favorite tables; set 0 to disable.</small> </th> <td> <input type="number" name="NumFavoriteTables" id="NumFavoriteTables" value="10" class=""> <a class="restore-default hide" href="#NumFavoriteTables" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationWidth">Navigation panel width</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationWidth" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Set to 0 to collapse navigation panel.</small> </th> <td> <input type="number" name="NavigationWidth" id="NavigationWidth" value="0" class="custom"> <a class="restore-default hide" href="#NavigationWidth" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> <div class="tab-pane fade" id="Navi_tree" role="tabpanel" aria-labelledby="Navi_tree-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Navigation tree</h5> <h6 class="card-subtitle mb-2 text-muted">Customize the navigation tree.</h6> <fieldset class="optbox"> <legend>Navigation tree</legend> <table class="table table-borderless"> <tr> <th> <label for="MaxNavigationItems">Maximum items in branch</label> <span class="doc"> <a href="./doc/html/config.html#cfg_MaxNavigationItems" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>The number of items that can be displayed on each page of the navigation tree.</small> </th> <td> <input type="number" name="MaxNavigationItems" id="MaxNavigationItems" value="50" class=""> <a class="restore-default hide" href="#MaxNavigationItems" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeEnableGrouping">Group items in the tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeEnableGrouping" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Group items in the navigation tree (determined by the separator defined in the Databases and Tables tabs above).</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeEnableGrouping" id="NavigationTreeEnableGrouping" checked> </span> <a class="restore-default hide" href="#NavigationTreeEnableGrouping" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeEnableExpansion">Enable navigation tree expansion</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeEnableExpansion" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to offer the possibility of tree expansion in the navigation panel.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeEnableExpansion" id="NavigationTreeEnableExpansion" checked> </span> <a class="restore-default hide" href="#NavigationTreeEnableExpansion" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowTables">Show tables in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowTables" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show tables under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowTables" id="NavigationTreeShowTables" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowTables" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowViews">Show views in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowViews" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show views under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowViews" id="NavigationTreeShowViews" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowViews" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowFunctions">Show functions in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowFunctions" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show functions under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowFunctions" id="NavigationTreeShowFunctions" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowFunctions" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowProcedures">Show procedures in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowProcedures" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show procedures under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowProcedures" id="NavigationTreeShowProcedures" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowProcedures" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowEvents">Show events in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowEvents" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show events under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowEvents" id="NavigationTreeShowEvents" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowEvents" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeAutoexpandSingleDb">Expand single database</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeAutoexpandSingleDb" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to expand single database in the navigation tree automatically.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeAutoexpandSingleDb" id="NavigationTreeAutoexpandSingleDb" checked> </span> <a class="restore-default hide" href="#NavigationTreeAutoexpandSingleDb" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> <div class="tab-pane fade" id="Navi_servers" role="tabpanel" aria-labelledby="Navi_servers-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Servers</h5> <h6 class="card-subtitle mb-2 text-muted">Servers display options.</h6> <fieldset class="optbox"> <legend>Servers</legend> <table class="table table-borderless"> <tr> <th> <label for="NavigationDisplayServers">Display servers selection</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationDisplayServers" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Display server choice at the top of the navigation panel.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationDisplayServers" id="NavigationDisplayServers" checked> </span> <a class="restore-default hide" href="#NavigationDisplayServers" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="DisplayServersList">Display servers as a list</label> <span class="doc"> <a href="./doc/html/config.html#cfg_DisplayServersList" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Show server listing as a list instead of a drop down.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="DisplayServersList" id="DisplayServersList"> </span> <a class="restore-default hide" href="#DisplayServersList" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> <div class="tab-pane fade" id="Navi_databases" role="tabpanel" aria-labelledby="Navi_databases-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Databases</h5> <h6 class="card-subtitle mb-2 text-muted">Databases display options.</h6> <fieldset class="optbox"> <legend>Databases</legend> <table class="table table-borderless"> <tr> <th> <label for="NavigationTreeDisplayDbFilterMinimum">Minimum number of databases to display the database filter box</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDisplayDbFilterMinimum" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> </th> <td> <input type="number" name="NavigationTreeDisplayDbFilterMinimum" id="NavigationTreeDisplayDbFilterMinimum" value="30" class=""> <a class="restore-default hide" href="#NavigationTreeDisplayDbFilterMinimum" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeDbSeparator">Database tree separator</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDbSeparator" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>String that separates databases into different tree levels.</small> </th> <td> <input type="text" size="25" name="NavigationTreeDbSeparator" id="NavigationTreeDbSeparator" value="_" class=""> <a class="restore-default hide" href="#NavigationTreeDbSeparator" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> <div class="tab-pane fade" id="Navi_tables" role="tabpanel" aria-labelledby="Navi_tables-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Tables</h5> <h6 class="card-subtitle mb-2 text-muted">Tables display options.</h6> <fieldset class="optbox"> <legend>Tables</legend> <table class="table table-borderless"> <tr> <th> <label for="NavigationTreeDefaultTabTable">Target for quick access icon</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDefaultTabTable" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> </th> <td> <select name="NavigationTreeDefaultTabTable" id="NavigationTreeDefaultTabTable" class="w-75"> <option value="structure" selected>Structure</option> <option value="sql">SQL</option> <option value="search">Search</option> <option value="insert">Insert</option> <option value="browse">Browse</option> </select> <a class="restore-default hide" href="#NavigationTreeDefaultTabTable" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeDefaultTabTable2">Target for second quick access icon</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDefaultTabTable2" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> </th> <td> <select name="NavigationTreeDefaultTabTable2" id="NavigationTreeDefaultTabTable2" class="w-75"> <option value="" selected></option> <option value="structure">Structure</option> <option value="sql">SQL</option> <option value="search">Search</option> <option value="insert">Insert</option> <option value="browse">Browse</option> </select> <a class="restore-default hide" href="#NavigationTreeDefaultTabTable2" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeTableSeparator">Table tree separator</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeTableSeparator" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>String that separates tables into different tree levels.</small> </th> <td> <input type="text" size="25" name="NavigationTreeTableSeparator" id="NavigationTreeTableSeparator" value="__" class=""> <a class="restore-default hide" href="#NavigationTreeTableSeparator" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeTableLevel">Maximum table tree depth</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeTableLevel" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> </th> <td> <input type="number" name="NavigationTreeTableLevel" id="NavigationTreeTableLevel" value="1" class=""> <a class="restore-default hide" href="#NavigationTreeTableLevel" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> </div> </form> <script type="text/javascript"> if (typeof configInlineParams === 'undefined' || !Array.isArray(configInlineParams)) { configInlineParams = []; } configInlineParams.push(function () { registerFieldValidator('FirstLevelNavigationItems', 'validatePositiveNumber', true); registerFieldValidator('NavigationTreeDisplayItemFilterMinimum', 'validatePositiveNumber', true); registerFieldValidator('NumRecentTables', 'validateNonNegativeNumber', true); registerFieldValidator('NumFavoriteTables', 'validateNonNegativeNumber', true); registerFieldValidator('NavigationWidth', 'validateNonNegativeNumber', true); registerFieldValidator('MaxNavigationItems', 'validatePositiveNumber', true); registerFieldValidator('NavigationTreeTableLevel', 'validatePositiveNumber', true); $.extend(Messages, { 'error_nan_p': 'Not\u0020a\u0020positive\u0020number\u0021', 'error_nan_nneg': 'Not\u0020a\u0020non\u002Dnegative\u0020number\u0021', 'error_incorrect_port': 'Not\u0020a\u0020valid\u0020port\u0020number\u0021', 'error_invalid_value': 'Incorrect\u0020value\u0021', 'error_value_lte': 'Value\u0020must\u0020be\u0020less\u0020than\u0020or\u0020equal\u0020to\u0020\u0025s\u0021', }); $.extend(defaultValues, { 'ShowDatabasesNavigationAsTree': true, 'NavigationLinkWithMainPanel': true, 'NavigationDisplayLogo': true, 'NavigationLogoLink': 'index.php', 'NavigationLogoLinkWindow': ['main'], 'NavigationTreePointerEnable': true, 'FirstLevelNavigationItems': '100', 'NavigationTreeDisplayItemFilterMinimum': '30', 'NumRecentTables': '10', 'NumFavoriteTables': '10', 'NavigationWidth': '240', 'MaxNavigationItems': '50', 'NavigationTreeEnableGrouping': true, 'NavigationTreeEnableExpansion': true, 'NavigationTreeShowTables': true, 'NavigationTreeShowViews': true, 'NavigationTreeShowFunctions': true, 'NavigationTreeShowProcedures': true, 'NavigationTreeShowEvents': true, 'NavigationTreeAutoexpandSingleDb': true, 'NavigationDisplayServers': true, 'DisplayServersList': false, 'NavigationTreeDisplayDbFilterMinimum': '30', 'NavigationTreeDbSeparator': '_', 'NavigationTreeDefaultTabTable': ['structure'], 'NavigationTreeDefaultTabTable2': [''], 'NavigationTreeTableSeparator': '__', 'NavigationTreeTableLevel': '1' }); }); if (typeof configScriptLoaded !== 'undefined' && configInlineParams) { loadInlineConfig(); } </script> </div></div> </div> </div> <div class="pma_drop_handler"> Drop files here </div> <div class="pma_sql_import_status"> <h2> SQL upload ( <span class="pma_import_count">0</span> ) <span class="close">x</span> <span class="minimize">-</span> </h2> <div></div> </div> </div> <div class="modal fade" id="unhideNavItemModal" tabindex="-1" aria-labelledby="unhideNavItemModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="unhideNavItemModalLabel">Show hidden navigation tree items.</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"></div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> </div> </div> </div> </div> <noscript> <div class="alert alert-danger" role="alert"> <img src="themes/dot.gif" title="" alt="" class="icon ic_s_error"> Javascript must be enabled past this point! </div> </noscript> <div id="floating_menubar" class="d-print-none"></div> <nav id="server-breadcrumb" aria-label="breadcrumb"> <ol class="breadcrumb breadcrumb-navbar"> <li class="breadcrumb-item"> <img src="themes/dot.gif" title="" alt="" class="icon ic_s_host"> <a href="index.php?route=/" data-raw-text="localhost" draggable="false"> Server: localhost </a> </li> </ol> </nav> <div id="topmenucontainer" class="menucontainer"> <nav class="navbar navbar-expand-lg navbar-light bg-light"> <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-label="Toggle navigation" aria-controls="navbarNav" aria-expanded="false"> <span class="navbar-toggler-icon"></span> </button> <div class="collapse navbar-collapse" id="navbarNav"> <ul id="topmenu" class="navbar-nav"> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/databases"> <img src="themes/dot.gif" title="Databases" alt="Databases" class="icon ic_s_db"> Databases </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/sql"> <img src="themes/dot.gif" title="SQL" alt="SQL" class="icon ic_b_sql"> SQL </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/status"> <img src="themes/dot.gif" title="Status" alt="Status" class="icon ic_s_status"> Status </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/privileges&viewing_mode=server"> <img src="themes/dot.gif" title="User accounts" alt="User accounts" class="icon ic_s_rights"> User accounts </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/export"> <img src="themes/dot.gif" title="Export" alt="Export" class="icon ic_b_export"> Export </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/import"> <img src="themes/dot.gif" title="Import" alt="Import" class="icon ic_b_import"> Import </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/preferences/manage"> <img src="themes/dot.gif" title="Settings" alt="Settings" class="icon ic_b_tblops"> Settings </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/replication"> <img src="themes/dot.gif" title="Replication" alt="Replication" class="icon ic_s_replication"> Replication </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/variables"> <img src="themes/dot.gif" title="Variables" alt="Variables" class="icon ic_s_vars"> Variables </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/collations"> <img src="themes/dot.gif" title="Charsets" alt="Charsets" class="icon ic_s_asci"> Charsets </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/engines"> <img src="themes/dot.gif" title="Engines" alt="Engines" class="icon ic_b_engine"> Engines </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/plugins"> <img src="themes/dot.gif" title="Plugins" alt="Plugins" class="icon ic_b_plugin"> Plugins </a> </li> </ul> </div> </nav> </div> <span id="page_nav_icons" class="d-print-none"> <span id="lock_page_icon"></span> <span id="page_settings_icon"> <img src="themes/dot.gif" title="Page-related settings" alt="Page-related settings" class="icon ic_s_cog"> </span> <a id="goto_pagetop" href="#"><img src="themes/dot.gif" title="Click on the bar to scroll to top of page" alt="Click on the bar to scroll to top of page" class="icon ic_s_top"></a> </span> <div id="pma_console_container" class="d-print-none"> <div id="pma_console"> <div class="toolbar collapsed"> <div class="switch_button console_switch"> <img src="themes/dot.gif" title="SQL Query Console" alt="SQL Query Console" class="icon ic_console"> <span>Console</span> </div> <div class="button clear"> <span>Clear</span> </div> <div class="button history"> <span>History</span> </div> <div class="button options"> <span>Options</span> </div> <div class="button bookmarks"> <span>Bookmarks</span> </div> <div class="button debug hide"> <span>Debug SQL</span> </div> </div> <div class="content"> <div class="console_message_container"> <div class="message welcome"> <span id="instructions-0"> Press Ctrl+Enter to execute query </span> <span class="hide" id="instructions-1"> Press Enter to execute query </span> </div> </div><!-- console_message_container --> <div class="query_input"> <span class="console_query_input"></span> </div> </div><!-- message end --> <div class="mid_layer"></div> <div class="card" id="debug_console"> <div class="toolbar "> <div class="button order order_asc"> <span>ascending</span> </div> <div class="button order order_desc"> <span>descending</span> </div> <div class="text"> <span>Order:</span> </div> <div class="switch_button"> <span>Debug SQL</span> </div> <div class="button order_by sort_count"> <span>Count</span> </div> <div class="button order_by sort_exec"> <span>Execution order</span> </div> <div class="button order_by sort_time"> <span>Time taken</span> </div> <div class="text"> <span>Order by:</span> </div> <div class="button group_queries"> <span>Group queries</span> </div> <div class="button ungroup_queries"> <span>Ungroup queries</span> </div> </div> <div class="content debug"> <div class="message welcome"></div> <div class="debugLog"></div> </div> <!-- Content --> <div class="templates"> <div class="debug_query action_content"> <span class="action collapse"> Collapse </span> <span class="action expand"> Expand </span> <span class="action dbg_show_trace"> Show trace </span> <span class="action dbg_hide_trace"> Hide trace </span> <span class="text count hide"> Count </span> <span class="text time"> Time taken </span> </div> </div> <!-- Template --> </div> <!-- Debug SQL card --> <div class="card" id="pma_bookmarks"> <div class="toolbar "> <div class="switch_button"> <span>Bookmarks</span> </div> <div class="button refresh"> <span>Refresh</span> </div> <div class="button add"> <span>Add</span> </div> </div> <div class="content bookmark"> <div class="message welcome"> <span>No bookmarks</span> </div> </div> <div class="mid_layer"></div> <div class="card add"> <div class="toolbar "> <div class="switch_button"> <span>Add bookmark</span> </div> </div> <div class="content add_bookmark"> <div class="options"> <label> Label: <input type="text" name="label"> </label> <label> Target database: <input type="text" name="targetdb"> </label> <label> <input type="checkbox" name="shared">Share this bookmark </label> <button class="btn btn-primary" type="submit" name="submit">OK</button> </div> <!-- options --> <div class="query_input"> <span class="bookmark_add_input"></span> </div> </div> </div> <!-- Add bookmark card --> </div> <!-- Bookmarks card --> <div class="card" id="pma_console_options"> <div class="toolbar "> <div class="switch_button"> <span>Options</span> </div> <div class="button default"> <span>Set default</span> </div> </div> <div class="content"> <label> <input type="checkbox" name="always_expand">Always expand query messages </label> <br> <label> <input type="checkbox" name="start_history">Show query history at start </label> <br> <label> <input type="checkbox" name="current_query">Show current browsing query </label> <br> <label> <input type="checkbox" name="enter_executes"> Execute queries on Enter and insert new line with Shift+Enter. To make this permanent, view settings. </label> <br> <label> <input type="checkbox" name="dark_theme">Switch to dark theme </label> <br> </div> </div> <!-- Options card --> <div class="templates"> <div class="query_actions"> <span class="action collapse"> Collapse </span> <span class="action expand"> Expand </span> <span class="action requery"> Requery </span> <span class="action edit"> Edit </span> <span class="action explain"> Explain </span> <span class="action profiling"> Profiling </span> <span class="action bookmark"> Bookmark </span> <span class="text failed"> Query failed </span> <span class="text targetdb"> Database : <span></span> </span> <span class="text query_time"> Queried time : <span></span> </span> </div> </div> </div> <!-- #console end --> </div> <!-- #console_container end --> <div id="page_content"> <div class="modal fade" id="previewSqlModal" tabindex="-1" aria-labelledby="previewSqlModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="previewSqlModalLabel">Loading</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"></div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> </div> </div> </div> </div> <div class="modal fade" id="enumEditorModal" tabindex="-1" aria-labelledby="enumEditorModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="enumEditorModalLabel">ENUM/SET editor</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"></div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" id="enumEditorGoButton" data-bs-dismiss="modal">Go</button> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> </div> </div> </div> </div> <div class="modal fade" id="createViewModal" tabindex="-1" aria-labelledby="createViewModalLabel" aria-hidden="true"> <div class="modal-dialog modal-lg" id="createViewModalDialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="createViewModalLabel">Create view</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"></div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" id="createViewModalGoButton">Go</button> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> </div> </div> </div> </div> </div> <div id="selflink" class="d-print-none"> <a href="index.php?route=%2Flogout&server=1" title="Open new phpMyAdmin window" target="_blank" rel="noopener noreferrer"> <img src="themes/dot.gif" title="Open new phpMyAdmin window" alt="Open new phpMyAdmin window" class="icon ic_window-new"> </a> </div> <div class="clearfloat d-print-none" id="pma_errors"> </div> <script data-cfasync="false" type="text/javascript"> // <![CDATA[ var debugSQLInfo = 'null'; // ]]> </script> </body> </html>Solution Ensure that no sensitive information is leaked via redirect responses. Redirect responses should have almost no content.
-
Cross-Domain JavaScript Source File Inclusion (1)
GET http://localhost/dashboard/
Alert tags Alert description The page includes one or more script files from a third-party domain.
Request Request line and header section (257 bytes)
GET http://localhost/dashboard/ HTTP/1.1 host: localhost user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 pragma: no-cache cache-control: no-cache referer: http://localhost/Request body (0 bytes)
Response Status line and header section (284 bytes)
HTTP/1.1 200 OK Date: Sat, 19 Apr 2025 15:17:44 GMT Server: Apache/2.4.54 (Unix) OpenSSL/1.1.1s PHP/7.4.33 mod_perl/2.0.12 Perl/v5.34.1 Last-Modified: Tue, 22 Nov 2022 19:37:39 GMT ETag: "1440-5ee144e0106c0" Accept-Ranges: bytes Content-Length: 5184 Content-Type: text/htmlResponse body (5184 bytes)
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <!-- Always force latest IE rendering engine or request Chrome Frame --> <meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible"> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <!-- Use title if it's in the page YAML frontmatter --> <title>Welcome to XAMPP</title> <meta name="description" content="XAMPP is an easy to install Apache distribution containing MariaDB, PHP and Perl." /> <meta name="keywords" content="xampp, apache, php, perl, mariadb, open source distribution" /> <link href="/dashboard/stylesheets/normalize.css" rel="stylesheet" type="text/css" /><link href="/dashboard/stylesheets/all.css" rel="stylesheet" type="text/css" /> <link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/3.1.0/css/font-awesome.min.css" rel="stylesheet" type="text/css" /> <script src="/dashboard/javascripts/modernizr.js" type="text/javascript"></script> <link href="/dashboard/images/favicon.png" rel="icon" type="image/png" /> </head> <body class="index"> <div id="fb-root"></div> <script>(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=277385395761685"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk'));</script> <header class="header contain-to-grid"> <nav class="top-bar" data-topbar> <ul class="title-area"> <li class="name"> <h1><a href="/dashboard/index.html">Apache Friends</a></h1> </li> <li class="toggle-topbar menu-icon"> <a href="#"> <span>Menu</span> </a> </li> </ul> <section class="top-bar-section"> <!-- Left Nav Section --> <ul class="left"> <li class="item "><a href="/dashboard/faq.html">FAQs</a></li> <li class="item "><a href="/dashboard/howto.html">HOW-TO Guides</a></li> <li class="item "><a target="_blank" href="/dashboard/phpinfo.php">PHPInfo</a></li> <li class="item "><a href="/phpmyadmin/">phpMyAdmin</a></li> </ul> </section> </nav> </header> <div class="wrapper"> <div class="hero"> <div class="row"> <div class="large-12 columns"> <h1><img src="/dashboard/images/xampp-logo.svg" />XAMPP <span>Apache + MariaDB + PHP + Perl</span></h1> </div> </div> </div> <div class="row"> <div class="large-12 columns"> <h2>Welcome to XAMPP for OS X 7.4.33</h2> </div> </div> <div class="row"> <div class="large-12 columns"> <p> You have successfully installed XAMPP on this system! Now you can start using Apache, MariaDB, PHP and other components. You can find more info in the <a href="/dashboard/faq.html">FAQs</a> section or check the <a href="/dashboard/howto.html">HOW-TO Guides</a> for getting started with PHP applications. </p> <p> XAMPP is meant only for development purposes. It has certain configuration settings that make it easy to develop locally but that are insecure if you want to have your installation accessible to others. </p> <p> Start the XAMPP Control Panel to check the server status. </p> </div> </div> <div class="row"> <div class="large-12 columns"> <h3>Community</h3> </div> </div> <div class="row"> <div class="large-12 columns"> <p> XAMPP has been around for more than 10 years – there is a huge community behind it. You can get involved by joining our <a href="https://community.apachefriends.org">Forums</a>, liking us on <a href="https://www.facebook.com/we.are.xampp">Facebook</a>, or following our exploits on <a href="https://twitter.com/apachefriends">Twitter</a>. </p> </div> </div> </div> <footer class="footer row"> <div class="columns"> <div class="footer_lists-container row collapse"> <div class="footer_social columns large-2"> <ul class="social"> <li class="twitter"><a href="https://twitter.com/apachefriends">Follow us on Twitter</a></li> <li class="facebook"><a href="https://www.facebook.com/we.are.xampp">Like us on Facebook</a></li> </ul> <p class="footer_copyright">Copyright (c) 2022, Apache Friends</p> </div> <ul class="footer_links columns large-9"> <li><a href="https://www.apachefriends.org/blog.html">Blog</a></li> <li><a href="/privacy_policy.html">Privacy Policy</a></li> <li> <a target="_blank" href="http://www.fastly.com/"> CDN provided by <img width="48" data-2x="/dashboard/images/fastly-logo@2x.png" src="/dashboard/images/fastly-logo.png" /> </a> </li> </ul> </div> </div> </footer> <!-- JS Libraries --> <script src="//code.jquery.com/jquery-1.10.2.min.js"></script> <script src="/dashboard/javascripts/all.js" type="text/javascript"></script> </body> </html>Parameter //code.jquery.com/jquery-1.10.2.min.jsEvidence <script src="//code.jquery.com/jquery-1.10.2.min.js"></script>Solution Ensure JavaScript source files are loaded from only trusted sources, and the sources can't be controlled by end users of the application.
-
Information Disclosure - Debug Error Messages (1)
GET http://localhost/phpmyadmin/doc/html/config.html
Alert tags Alert description The response appeared to contain common error messages returned by platforms such as ASP.NET, and Web-servers such as IIS and Apache. You can configure the list of common debug messages.
Request Request line and header section (355 bytes)
GET http://localhost/phpmyadmin/doc/html/config.html HTTP/1.1 host: localhost user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 pragma: no-cache cache-control: no-cache referer: http://localhost/phpmyadmin/ Cookie: pma_lang=en; phpMyAdmin=610f86c60f00a8f4dc92fe660c217e62Request body (0 bytes)
Response Status line and header section (287 bytes)
HTTP/1.1 200 OK Date: Sat, 19 Apr 2025 15:17:46 GMT Server: Apache/2.4.54 (Unix) OpenSSL/1.1.1s PHP/7.4.33 mod_perl/2.0.12 Perl/v5.34.1 Last-Modified: Wed, 11 May 2022 04:39:14 GMT ETag: "56378-5deb505f5e080" Accept-Ranges: bytes Content-Length: 353144 Content-Type: text/htmlResponse body (353144 bytes)
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Configuration — phpMyAdmin 5.2.0 documentation</title> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> <link rel="stylesheet" href="_static/classic.css" type="text/css" /> <script id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script> <script src="_static/jquery.js"></script> <script src="_static/underscore.js"></script> <script src="_static/doctools.js"></script> <link rel="index" title="Index" href="genindex.html" /> <link rel="search" title="Search" href="search.html" /> <link rel="copyright" title="Copyright" href="copyright.html" /> <link rel="next" title="User Guide" href="user.html" /> <link rel="prev" title="Installation" href="setup.html" /> </head><body> <div class="related" role="navigation" aria-label="related navigation"> <h3>Navigation</h3> <ul> <li class="right" style="margin-right: 10px"> <a href="genindex.html" title="General Index" accesskey="I">index</a></li> <li class="right" > <a href="user.html" title="User Guide" accesskey="N">next</a> |</li> <li class="right" > <a href="setup.html" title="Installation" accesskey="P">previous</a> |</li> <li class="nav-item nav-item-0"><a href="index.html">phpMyAdmin 5.2.0 documentation</a> »</li> <li class="nav-item nav-item-this"><a href="">Configuration</a></li> </ul> </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body" role="main"> <div class="section" id="configuration"> <span id="config"></span><span id="index-0"></span><h1>Configuration<a class="headerlink" href="#configuration" title="Permalink to this headline">¶</a></h1> <p>All configurable data is placed in <code class="file docutils literal notranslate"><span class="pre">config.inc.php</span></code> in phpMyAdmin’s toplevel directory. If this file does not exist, please refer to the <a class="reference internal" href="setup.html#setup"><span class="std std-ref">Installation</span></a> section to create one. This file only needs to contain the parameters you want to change from their corresponding default value in <code class="file docutils literal notranslate"><span class="pre">libraries/config.default.php</span></code> (this file is not intended for changes).</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="#config-examples"><span class="std std-ref">Examples</span></a> for examples of configurations</p> </div> <p>If a directive is missing from your file, you can just add another line with the file. This file is for over-writing the defaults; if you wish to use the default value there’s no need to add a line here.</p> <p>The parameters which relate to design (like colors) are placed in <code class="file docutils literal notranslate"><span class="pre">themes/themename/scss/_variables.scss</span></code>. You might also want to create <code class="file docutils literal notranslate"><span class="pre">config.footer.inc.php</span></code> and <code class="file docutils literal notranslate"><span class="pre">config.header.inc.php</span></code> files to add your site specific code to be included on start and end of each page.</p> <div class="admonition note"> <p class="admonition-title">Note</p> <p>Some distributions (eg. Debian or Ubuntu) store <code class="file docutils literal notranslate"><span class="pre">config.inc.php</span></code> in <code class="docutils literal notranslate"><span class="pre">/etc/phpmyadmin</span></code> instead of within phpMyAdmin sources.</p> </div> <div class="section" id="basic-settings"> <h2>Basic settings<a class="headerlink" href="#basic-settings" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_PmaAbsoluteUri"> <code class="sig-name descname">$cfg['PmaAbsoluteUri']</code><a class="headerlink" href="#cfg_PmaAbsoluteUri" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionchanged"> <p><span class="versionmodified changed">Changed in version 4.6.5: </span>This setting was not available in phpMyAdmin 4.6.0 - 4.6.4.</p> </div> <p>Sets here the complete <a class="reference internal" href="glossary.html#term-URL"><span class="xref std std-term">URL</span></a> (with full path) to your phpMyAdmin installation’s directory. E.g. <code class="docutils literal notranslate"><span class="pre">https://www.example.net/path_to_your_phpMyAdmin_directory/</span></code>. Note also that the <a class="reference internal" href="glossary.html#term-URL"><span class="xref std std-term">URL</span></a> on most of web servers are case sensitive (even on Windows). Don’t forget the trailing slash at the end.</p> <p>Starting with version 2.3.0, it is advisable to try leaving this blank. In most cases phpMyAdmin automatically detects the proper setting. Users of port forwarding or complex reverse proxy setup might need to set this.</p> <p>A good test is to browse a table, edit a row and save it. There should be an error message if phpMyAdmin is having trouble auto–detecting the correct value. If you get an error that this must be set or if the autodetect code fails to detect your path, please post a bug report on our bug tracker so we can improve the code.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="faq.html#faq1-40"><span class="std std-ref">1.40 When accessing phpMyAdmin via an Apache reverse proxy, cookie login does not work.</span></a>, <a class="reference internal" href="faq.html#faq2-5"><span class="std std-ref">2.5 Each time I want to insert or change a row or drop a database or a table, an error 404 (page not found) is displayed or, with HTTP or cookie authentication, I’m asked to log in again. What’s wrong?</span></a>, <a class="reference internal" href="faq.html#faq4-7"><span class="std std-ref">4.7 Authentication window is displayed more than once, why?</span></a>, <a class="reference internal" href="faq.html#faq5-16"><span class="std std-ref">5.16 With Internet Explorer, I get “Access is denied” Javascript errors. Or I cannot make phpMyAdmin work under Windows.</span></a></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_PmaNoRelation_DisableWarning"> <code class="sig-name descname">$cfg['PmaNoRelation_DisableWarning']</code><a class="headerlink" href="#cfg_PmaNoRelation_DisableWarning" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Starting with version 2.3.0 phpMyAdmin offers a lot of features to work with master / foreign – tables (see <span class="target" id="index-1"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a>).</p> <p>If you tried to set this up and it does not work for you, have a look on the <span class="guilabel">Structure</span> page of one database where you would like to use it. You will find a link that will analyze why those features have been disabled.</p> <p>If you do not want to use those features set this variable to <code class="docutils literal notranslate"><span class="pre">true</span></code> to stop this message from appearing.</p> </dd></dl> <dl class="config option"> <dt id="cfg_AuthLog"> <code class="sig-name descname">$cfg['AuthLog']</code><a class="headerlink" href="#cfg_AuthLog" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'auto'</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 4.8.0: </span>This is supported since phpMyAdmin 4.8.0.</p> </div> <p>Configure authentication logging destination. Failed (or all, depending on <span class="target" id="index-2"></span><a class="reference internal" href="#cfg_AuthLogSuccess"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['AuthLogSuccess']</span></code></a>) authentication attempts will be logged according to this directive:</p> <dl class="simple"> <dt><code class="docutils literal notranslate"><span class="pre">auto</span></code></dt><dd><p>Let phpMyAdmin automatically choose between <code class="docutils literal notranslate"><span class="pre">syslog</span></code> and <code class="docutils literal notranslate"><span class="pre">php</span></code>.</p> </dd> <dt><code class="docutils literal notranslate"><span class="pre">syslog</span></code></dt><dd><p>Log using syslog, using AUTH facility, on most systems this ends up in <code class="file docutils literal notranslate"><span class="pre">/var/log/auth.log</span></code>.</p> </dd> <dt><code class="docutils literal notranslate"><span class="pre">php</span></code></dt><dd><p>Log into PHP error log.</p> </dd> <dt><code class="docutils literal notranslate"><span class="pre">sapi</span></code></dt><dd><p>Log into PHP SAPI logging.</p> </dd> <dt><code class="docutils literal notranslate"><span class="pre">/path/to/file</span></code></dt><dd><p>Any other value is treated as a filename and log entries are written there.</p> </dd> </dl> <div class="admonition note"> <p class="admonition-title">Note</p> <p>When logging to a file, make sure its permissions are correctly set for a web server user, the setup should closely match instructions described in <span class="target" id="index-3"></span><a class="reference internal" href="#cfg_TempDir"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['TempDir']</span></code></a>:</p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_AuthLogSuccess"> <code class="sig-name descname">$cfg['AuthLogSuccess']</code><a class="headerlink" href="#cfg_AuthLogSuccess" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 4.8.0: </span>This is supported since phpMyAdmin 4.8.0.</p> </div> <p>Whether to log successful authentication attempts into <span class="target" id="index-4"></span><a class="reference internal" href="#cfg_AuthLog"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['AuthLog']</span></code></a>.</p> </dd></dl> <dl class="config option"> <dt id="cfg_SuhosinDisableWarning"> <code class="sig-name descname">$cfg['SuhosinDisableWarning']</code><a class="headerlink" href="#cfg_SuhosinDisableWarning" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>A warning is displayed on the main page if Suhosin is detected.</p> <p>You can set this parameter to <code class="docutils literal notranslate"><span class="pre">true</span></code> to stop this message from appearing.</p> </dd></dl> <dl class="config option"> <dt id="cfg_LoginCookieValidityDisableWarning"> <code class="sig-name descname">$cfg['LoginCookieValidityDisableWarning']</code><a class="headerlink" href="#cfg_LoginCookieValidityDisableWarning" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>A warning is displayed on the main page if the PHP parameter session.gc_maxlifetime is lower than cookie validity configured in phpMyAdmin.</p> <p>You can set this parameter to <code class="docutils literal notranslate"><span class="pre">true</span></code> to stop this message from appearing.</p> </dd></dl> <dl class="config option"> <dt id="cfg_ServerLibraryDifference_DisableWarning"> <code class="sig-name descname">$cfg['ServerLibraryDifference_DisableWarning']</code><a class="headerlink" href="#cfg_ServerLibraryDifference_DisableWarning" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <div class="deprecated"> <p><span class="versionmodified deprecated">Deprecated since version 4.7.0: </span>This setting was removed as the warning has been removed as well.</p> </div> <p>A warning is displayed on the main page if there is a difference between the MySQL library and server version.</p> <p>You can set this parameter to <code class="docutils literal notranslate"><span class="pre">true</span></code> to stop this message from appearing.</p> </dd></dl> <dl class="config option"> <dt id="cfg_ReservedWordDisableWarning"> <code class="sig-name descname">$cfg['ReservedWordDisableWarning']</code><a class="headerlink" href="#cfg_ReservedWordDisableWarning" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>This warning is displayed on the Structure page of a table if one or more column names match with words which are MySQL reserved.</p> <p>If you want to turn off this warning, you can set it to <code class="docutils literal notranslate"><span class="pre">true</span></code> and warning will no longer be displayed.</p> </dd></dl> <dl class="config option"> <dt id="cfg_TranslationWarningThreshold"> <code class="sig-name descname">$cfg['TranslationWarningThreshold']</code><a class="headerlink" href="#cfg_TranslationWarningThreshold" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>80</p> </dd> </dl> <p>Show warning about incomplete translations on certain threshold.</p> </dd></dl> <dl class="config option"> <dt id="cfg_SendErrorReports"> <code class="sig-name descname">$cfg['SendErrorReports']</code><a class="headerlink" href="#cfg_SendErrorReports" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'ask'</span></code></p> </dd> </dl> <p>Valid values are:</p> <ul class="simple"> <li><p><code class="docutils literal notranslate"><span class="pre">ask</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">always</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">never</span></code></p></li> </ul> <p>Sets the default behavior for JavaScript error reporting.</p> <p>Whenever an error is detected in the JavaScript execution, an error report may be sent to the phpMyAdmin team if the user agrees.</p> <p>The default setting of <code class="docutils literal notranslate"><span class="pre">'ask'</span></code> will ask the user everytime there is a new error report. However you can set this parameter to <code class="docutils literal notranslate"><span class="pre">'always'</span></code> to send error reports without asking for confirmation or you can set it to <code class="docutils literal notranslate"><span class="pre">'never'</span></code> to never send error reports.</p> <p>This directive is available both in the configuration file and in users preferences. If the person in charge of a multi-user installation prefers to disable this feature for all users, a value of <code class="docutils literal notranslate"><span class="pre">'never'</span></code> should be set, and the <span class="target" id="index-5"></span><a class="reference internal" href="#cfg_UserprefsDisallow"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['UserprefsDisallow']</span></code></a> directive should contain <code class="docutils literal notranslate"><span class="pre">'SendErrorReports'</span></code> in one of its array values.</p> </dd></dl> <dl class="config option"> <dt id="cfg_ConsoleEnterExecutes"> <code class="sig-name descname">$cfg['ConsoleEnterExecutes']</code><a class="headerlink" href="#cfg_ConsoleEnterExecutes" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Setting this to <code class="docutils literal notranslate"><span class="pre">true</span></code> allows the user to execute queries by pressing Enter instead of Ctrl+Enter. A new line can be inserted by pressing Shift+Enter.</p> <p>The behaviour of the console can be temporarily changed using console’s settings interface.</p> </dd></dl> <dl class="config option"> <dt id="cfg_AllowThirdPartyFraming"> <code class="sig-name descname">$cfg['AllowThirdPartyFraming']</code><a class="headerlink" href="#cfg_AllowThirdPartyFraming" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean|string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Setting this to <code class="docutils literal notranslate"><span class="pre">true</span></code> allows phpMyAdmin to be included inside a frame, and is a potential security hole allowing cross-frame scripting attacks or clickjacking. Setting this to ‘sameorigin’ prevents phpMyAdmin to be included from another document in a frame, unless that document belongs to the same domain.</p> </dd></dl> </div> <div class="section" id="server-connection-settings"> <h2>Server connection settings<a class="headerlink" href="#server-connection-settings" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_Servers"> <code class="sig-name descname">$cfg['Servers']</code><a class="headerlink" href="#cfg_Servers" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>one server array with settings listed below</p> </dd> </dl> <p>Since version 1.4.2, phpMyAdmin supports the administration of multiple MySQL servers. Therefore, a <span class="target" id="index-6"></span><a class="reference internal" href="#cfg_Servers"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers']</span></code></a>-array has been added which contains the login information for the different servers. The first <span class="target" id="index-7"></span><a class="reference internal" href="#cfg_Servers_host"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['host']</span></code></a> contains the hostname of the first server, the second <span class="target" id="index-8"></span><a class="reference internal" href="#cfg_Servers_host"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['host']</span></code></a> the hostname of the second server, etc. In <code class="file docutils literal notranslate"><span class="pre">libraries/config.default.php</span></code>, there is only one section for server definition, however you can put as many as you need in <code class="file docutils literal notranslate"><span class="pre">config.inc.php</span></code>, copy that block or needed parts (you don’t have to define all settings, just those you need to change).</p> <div class="admonition note"> <p class="admonition-title">Note</p> <p>The <span class="target" id="index-9"></span><a class="reference internal" href="#cfg_Servers"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers']</span></code></a> array starts with $cfg[‘Servers’][1]. Do not use $cfg[‘Servers’][0]. If you want more than one server, just copy following section (including $i increment) several times. There is no need to define full server array, just define values you need to change.</p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_host"> <code class="sig-name descname">$cfg['Servers'][$i]['host']</code><a class="headerlink" href="#cfg_Servers_host" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'localhost'</span></code></p> </dd> </dl> <p>The hostname or <a class="reference internal" href="glossary.html#term-IP"><span class="xref std std-term">IP</span></a> address of your $i-th MySQL-server. E.g. <code class="docutils literal notranslate"><span class="pre">localhost</span></code>.</p> <p>Possible values are:</p> <ul class="simple"> <li><p>hostname, e.g., <code class="docutils literal notranslate"><span class="pre">'localhost'</span></code> or <code class="docutils literal notranslate"><span class="pre">'mydb.example.org'</span></code></p></li> <li><p>IP address, e.g., <code class="docutils literal notranslate"><span class="pre">'127.0.0.1'</span></code> or <code class="docutils literal notranslate"><span class="pre">'192.168.10.1'</span></code></p></li> <li><p>IPv6 address, e.g. <code class="docutils literal notranslate"><span class="pre">2001:cdba:0000:0000:0000:0000:3257:9652</span></code></p></li> <li><p>dot - <code class="docutils literal notranslate"><span class="pre">'.'</span></code>, i.e., use named pipes on windows systems</p></li> <li><p>empty - <code class="docutils literal notranslate"><span class="pre">''</span></code>, disables this server</p></li> </ul> <div class="admonition note"> <p class="admonition-title">Note</p> <p>The hostname <code class="docutils literal notranslate"><span class="pre">localhost</span></code> is handled specially by MySQL and it uses the socket based connection protocol. To use TCP/IP networking, use an IP address or hostname such as <code class="docutils literal notranslate"><span class="pre">127.0.0.1</span></code> or <code class="docutils literal notranslate"><span class="pre">db.example.com</span></code>. You can configure the path to the socket with <span class="target" id="index-10"></span><a class="reference internal" href="#cfg_Servers_socket"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['socket']</span></code></a>.</p> </div> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><span class="target" id="index-11"></span><a class="reference internal" href="#cfg_Servers_port"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['port']</span></code></a>, <<a class="reference external" href="https://dev.mysql.com/doc/refman/8.0/en/connecting.html">https://dev.mysql.com/doc/refman/8.0/en/connecting.html</a>></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_port"> <code class="sig-name descname">$cfg['Servers'][$i]['port']</code><a class="headerlink" href="#cfg_Servers_port" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>The port-number of your $i-th MySQL-server. Default is 3306 (leave blank).</p> <div class="admonition note"> <p class="admonition-title">Note</p> <p>If you use <code class="docutils literal notranslate"><span class="pre">localhost</span></code> as the hostname, MySQL ignores this port number and connects with the socket, so if you want to connect to a port different from the default port, use <code class="docutils literal notranslate"><span class="pre">127.0.0.1</span></code> or the real hostname in <span class="target" id="index-12"></span><a class="reference internal" href="#cfg_Servers_host"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['host']</span></code></a>.</p> </div> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><span class="target" id="index-13"></span><a class="reference internal" href="#cfg_Servers_host"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['host']</span></code></a>, <<a class="reference external" href="https://dev.mysql.com/doc/refman/8.0/en/connecting.html">https://dev.mysql.com/doc/refman/8.0/en/connecting.html</a>></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_socket"> <code class="sig-name descname">$cfg['Servers'][$i]['socket']</code><a class="headerlink" href="#cfg_Servers_socket" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>The path to the socket to use. Leave blank for default. To determine the correct socket, check your MySQL configuration or, using the <strong class="command">mysql</strong> command–line client, issue the <code class="docutils literal notranslate"><span class="pre">status</span></code> command. Among the resulting information displayed will be the socket used.</p> <div class="admonition note"> <p class="admonition-title">Note</p> <p>This takes effect only if <span class="target" id="index-14"></span><a class="reference internal" href="#cfg_Servers_host"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['host']</span></code></a> is set to <code class="docutils literal notranslate"><span class="pre">localhost</span></code>.</p> </div> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><span class="target" id="index-15"></span><a class="reference internal" href="#cfg_Servers_host"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['host']</span></code></a>, <<a class="reference external" href="https://dev.mysql.com/doc/refman/8.0/en/connecting.html">https://dev.mysql.com/doc/refman/8.0/en/connecting.html</a>></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_ssl"> <code class="sig-name descname">$cfg['Servers'][$i]['ssl']</code><a class="headerlink" href="#cfg_Servers_ssl" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Whether to enable SSL for the connection between phpMyAdmin and the MySQL server to secure the connection.</p> <p>When using the <code class="docutils literal notranslate"><span class="pre">'mysql'</span></code> extension, none of the remaining <code class="docutils literal notranslate"><span class="pre">'ssl...'</span></code> configuration options apply.</p> <p>We strongly recommend the <code class="docutils literal notranslate"><span class="pre">'mysqli'</span></code> extension when using this option.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="setup.html#ssl"><span class="std std-ref">Using SSL for connection to database server</span></a>, <a class="reference internal" href="#example-google-ssl"><span class="std std-ref">Google Cloud SQL with SSL</span></a>, <a class="reference internal" href="#example-aws-ssl"><span class="std std-ref">Amazon RDS Aurora with SSL</span></a>, <span class="target" id="index-16"></span><a class="reference internal" href="#cfg_Servers_ssl_key"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_key']</span></code></a>, <span class="target" id="index-17"></span><a class="reference internal" href="#cfg_Servers_ssl_cert"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_cert']</span></code></a>, <span class="target" id="index-18"></span><a class="reference internal" href="#cfg_Servers_ssl_ca"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ca']</span></code></a>, <span class="target" id="index-19"></span><a class="reference internal" href="#cfg_Servers_ssl_ca_path"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ca_path']</span></code></a>, <span class="target" id="index-20"></span><a class="reference internal" href="#cfg_Servers_ssl_ciphers"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ciphers']</span></code></a>, <span class="target" id="index-21"></span><a class="reference internal" href="#cfg_Servers_ssl_verify"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_verify']</span></code></a></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_ssl_key"> <code class="sig-name descname">$cfg['Servers'][$i]['ssl_key']</code><a class="headerlink" href="#cfg_Servers_ssl_key" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>NULL</p> </dd> </dl> <p>Path to the client key file when using SSL for connecting to the MySQL server. This is used to authenticate the client to the server.</p> <p>For example:</p> <div class="highlight-php notranslate"><div class="highlight"><pre><span></span><span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'ssl_key'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'/etc/mysql/server-key.pem'</span><span class="p">;</span> </pre></div> </div> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="setup.html#ssl"><span class="std std-ref">Using SSL for connection to database server</span></a>, <a class="reference internal" href="#example-google-ssl"><span class="std std-ref">Google Cloud SQL with SSL</span></a>, <a class="reference internal" href="#example-aws-ssl"><span class="std std-ref">Amazon RDS Aurora with SSL</span></a>, <span class="target" id="index-22"></span><a class="reference internal" href="#cfg_Servers_ssl"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl']</span></code></a>, <span class="target" id="index-23"></span><a class="reference internal" href="#cfg_Servers_ssl_cert"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_cert']</span></code></a>, <span class="target" id="index-24"></span><a class="reference internal" href="#cfg_Servers_ssl_ca"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ca']</span></code></a>, <span class="target" id="index-25"></span><a class="reference internal" href="#cfg_Servers_ssl_ca_path"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ca_path']</span></code></a>, <span class="target" id="index-26"></span><a class="reference internal" href="#cfg_Servers_ssl_ciphers"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ciphers']</span></code></a>, <span class="target" id="index-27"></span><a class="reference internal" href="#cfg_Servers_ssl_verify"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_verify']</span></code></a></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_ssl_cert"> <code class="sig-name descname">$cfg['Servers'][$i]['ssl_cert']</code><a class="headerlink" href="#cfg_Servers_ssl_cert" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>NULL</p> </dd> </dl> <p>Path to the client certificate file when using SSL for connecting to the MySQL server. This is used to authenticate the client to the server.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="setup.html#ssl"><span class="std std-ref">Using SSL for connection to database server</span></a>, <a class="reference internal" href="#example-google-ssl"><span class="std std-ref">Google Cloud SQL with SSL</span></a>, <a class="reference internal" href="#example-aws-ssl"><span class="std std-ref">Amazon RDS Aurora with SSL</span></a>, <span class="target" id="index-28"></span><a class="reference internal" href="#cfg_Servers_ssl"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl']</span></code></a>, <span class="target" id="index-29"></span><a class="reference internal" href="#cfg_Servers_ssl_key"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_key']</span></code></a>, <span class="target" id="index-30"></span><a class="reference internal" href="#cfg_Servers_ssl_ca"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ca']</span></code></a>, <span class="target" id="index-31"></span><a class="reference internal" href="#cfg_Servers_ssl_ca_path"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ca_path']</span></code></a>, <span class="target" id="index-32"></span><a class="reference internal" href="#cfg_Servers_ssl_ciphers"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ciphers']</span></code></a>, <span class="target" id="index-33"></span><a class="reference internal" href="#cfg_Servers_ssl_verify"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_verify']</span></code></a></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_ssl_ca"> <code class="sig-name descname">$cfg['Servers'][$i]['ssl_ca']</code><a class="headerlink" href="#cfg_Servers_ssl_ca" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>NULL</p> </dd> </dl> <p>Path to the CA file when using SSL for connecting to the MySQL server.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="setup.html#ssl"><span class="std std-ref">Using SSL for connection to database server</span></a>, <a class="reference internal" href="#example-google-ssl"><span class="std std-ref">Google Cloud SQL with SSL</span></a>, <a class="reference internal" href="#example-aws-ssl"><span class="std std-ref">Amazon RDS Aurora with SSL</span></a>, <span class="target" id="index-34"></span><a class="reference internal" href="#cfg_Servers_ssl"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl']</span></code></a>, <span class="target" id="index-35"></span><a class="reference internal" href="#cfg_Servers_ssl_key"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_key']</span></code></a>, <span class="target" id="index-36"></span><a class="reference internal" href="#cfg_Servers_ssl_cert"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_cert']</span></code></a>, <span class="target" id="index-37"></span><a class="reference internal" href="#cfg_Servers_ssl_ca_path"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ca_path']</span></code></a>, <span class="target" id="index-38"></span><a class="reference internal" href="#cfg_Servers_ssl_ciphers"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ciphers']</span></code></a>, <span class="target" id="index-39"></span><a class="reference internal" href="#cfg_Servers_ssl_verify"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_verify']</span></code></a></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_ssl_ca_path"> <code class="sig-name descname">$cfg['Servers'][$i]['ssl_ca_path']</code><a class="headerlink" href="#cfg_Servers_ssl_ca_path" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>NULL</p> </dd> </dl> <p>Directory containing trusted SSL CA certificates in PEM format.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="setup.html#ssl"><span class="std std-ref">Using SSL for connection to database server</span></a>, <a class="reference internal" href="#example-google-ssl"><span class="std std-ref">Google Cloud SQL with SSL</span></a>, <a class="reference internal" href="#example-aws-ssl"><span class="std std-ref">Amazon RDS Aurora with SSL</span></a>, <span class="target" id="index-40"></span><a class="reference internal" href="#cfg_Servers_ssl"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl']</span></code></a>, <span class="target" id="index-41"></span><a class="reference internal" href="#cfg_Servers_ssl_key"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_key']</span></code></a>, <span class="target" id="index-42"></span><a class="reference internal" href="#cfg_Servers_ssl_cert"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_cert']</span></code></a>, <span class="target" id="index-43"></span><a class="reference internal" href="#cfg_Servers_ssl_ca"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ca']</span></code></a>, <span class="target" id="index-44"></span><a class="reference internal" href="#cfg_Servers_ssl_ciphers"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ciphers']</span></code></a>, <span class="target" id="index-45"></span><a class="reference internal" href="#cfg_Servers_ssl_verify"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_verify']</span></code></a></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_ssl_ciphers"> <code class="sig-name descname">$cfg['Servers'][$i]['ssl_ciphers']</code><a class="headerlink" href="#cfg_Servers_ssl_ciphers" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>NULL</p> </dd> </dl> <p>List of allowable ciphers for SSL connections to the MySQL server.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="setup.html#ssl"><span class="std std-ref">Using SSL for connection to database server</span></a>, <a class="reference internal" href="#example-google-ssl"><span class="std std-ref">Google Cloud SQL with SSL</span></a>, <a class="reference internal" href="#example-aws-ssl"><span class="std std-ref">Amazon RDS Aurora with SSL</span></a>, <span class="target" id="index-46"></span><a class="reference internal" href="#cfg_Servers_ssl"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl']</span></code></a>, <span class="target" id="index-47"></span><a class="reference internal" href="#cfg_Servers_ssl_key"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_key']</span></code></a>, <span class="target" id="index-48"></span><a class="reference internal" href="#cfg_Servers_ssl_cert"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_cert']</span></code></a>, <span class="target" id="index-49"></span><a class="reference internal" href="#cfg_Servers_ssl_ca"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ca']</span></code></a>, <span class="target" id="index-50"></span><a class="reference internal" href="#cfg_Servers_ssl_ca_path"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ca_path']</span></code></a>, <span class="target" id="index-51"></span><a class="reference internal" href="#cfg_Servers_ssl_verify"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_verify']</span></code></a></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_ssl_verify"> <code class="sig-name descname">$cfg['Servers'][$i]['ssl_verify']</code><a class="headerlink" href="#cfg_Servers_ssl_verify" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 4.6.0: </span>This is supported since phpMyAdmin 4.6.0.</p> </div> <p>If your PHP install uses the MySQL Native Driver (mysqlnd), your MySQL server is 5.6 or later, and your SSL certificate is self-signed, there is a chance your SSL connection will fail due to validation. Setting this to <code class="docutils literal notranslate"><span class="pre">false</span></code> will disable the validation check.</p> <p>Since PHP 5.6.0 it also verifies whether server name matches CN of its certificate. There is currently no way to disable just this check without disabling complete SSL verification.</p> <div class="admonition warning"> <p class="admonition-title">Warning</p> <p>Disabling the certificate verification defeats purpose of using SSL. This will make the connection vulnerable to man in the middle attacks.</p> </div> <div class="admonition note"> <p class="admonition-title">Note</p> <p>This flag only works with PHP 5.6.16 or later.</p> </div> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="setup.html#ssl"><span class="std std-ref">Using SSL for connection to database server</span></a>, <a class="reference internal" href="#example-google-ssl"><span class="std std-ref">Google Cloud SQL with SSL</span></a>, <a class="reference internal" href="#example-aws-ssl"><span class="std std-ref">Amazon RDS Aurora with SSL</span></a>, <span class="target" id="index-52"></span><a class="reference internal" href="#cfg_Servers_ssl"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl']</span></code></a>, <span class="target" id="index-53"></span><a class="reference internal" href="#cfg_Servers_ssl_key"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_key']</span></code></a>, <span class="target" id="index-54"></span><a class="reference internal" href="#cfg_Servers_ssl_cert"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_cert']</span></code></a>, <span class="target" id="index-55"></span><a class="reference internal" href="#cfg_Servers_ssl_ca"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ca']</span></code></a>, <span class="target" id="index-56"></span><a class="reference internal" href="#cfg_Servers_ssl_ca_path"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ca_path']</span></code></a>, <span class="target" id="index-57"></span><a class="reference internal" href="#cfg_Servers_ssl_ciphers"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ciphers']</span></code></a>, <span class="target" id="index-58"></span><a class="reference internal" href="#cfg_Servers_ssl_verify"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_verify']</span></code></a></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_connect_type"> <code class="sig-name descname">$cfg['Servers'][$i]['connect_type']</code><a class="headerlink" href="#cfg_Servers_connect_type" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'tcp'</span></code></p> </dd> </dl> <div class="deprecated"> <p><span class="versionmodified deprecated">Deprecated since version 4.7.0: </span>This setting is no longer used as of 4.7.0, since MySQL decides the connection type based on host, so it could lead to unexpected results. Please set <span class="target" id="index-59"></span><a class="reference internal" href="#cfg_Servers_host"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['host']</span></code></a> accordingly instead.</p> </div> <p>What type connection to use with the MySQL server. Your options are <code class="docutils literal notranslate"><span class="pre">'socket'</span></code> and <code class="docutils literal notranslate"><span class="pre">'tcp'</span></code>. It defaults to tcp as that is nearly guaranteed to be available on all MySQL servers, while sockets are not supported on some platforms. To use the socket mode, your MySQL server must be on the same machine as the Web server.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_compress"> <code class="sig-name descname">$cfg['Servers'][$i]['compress']</code><a class="headerlink" href="#cfg_Servers_compress" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Whether to use a compressed protocol for the MySQL server connection or not (experimental).</p> </dd></dl> <span class="target" id="controlhost"></span><dl class="config option"> <dt id="cfg_Servers_controlhost"> <code class="sig-name descname">$cfg['Servers'][$i]['controlhost']</code><a class="headerlink" href="#cfg_Servers_controlhost" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>Permits to use an alternate host to hold the configuration storage data.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><span class="target" id="index-60"></span><a class="reference internal" href="#cfg_Servers_control_*"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['control_*']</span></code></a></p> </div> </dd></dl> <span class="target" id="controlport"></span><dl class="config option"> <dt id="cfg_Servers_controlport"> <code class="sig-name descname">$cfg['Servers'][$i]['controlport']</code><a class="headerlink" href="#cfg_Servers_controlport" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>Permits to use an alternate port to connect to the host that holds the configuration storage.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><span class="target" id="index-61"></span><a class="reference internal" href="#cfg_Servers_control_*"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['control_*']</span></code></a></p> </div> </dd></dl> <span class="target" id="controluser"></span><dl class="config option"> <dt id="cfg_Servers_controluser"> <code class="sig-name descname">$cfg['Servers'][$i]['controluser']</code><a class="headerlink" href="#cfg_Servers_controluser" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_controlpass"> <code class="sig-name descname">$cfg['Servers'][$i]['controlpass']</code><a class="headerlink" href="#cfg_Servers_controlpass" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>This special account is used to access <a class="reference internal" href="setup.html#linked-tables"><span class="std std-ref">phpMyAdmin configuration storage</span></a>. You don’t need it in single user case, but if phpMyAdmin is shared it is recommended to give access to <a class="reference internal" href="setup.html#linked-tables"><span class="std std-ref">phpMyAdmin configuration storage</span></a> only to this user and configure phpMyAdmin to use it. All users will then be able to use the features without need to have direct access to <a class="reference internal" href="setup.html#linked-tables"><span class="std std-ref">phpMyAdmin configuration storage</span></a>.</p> <div class="versionchanged"> <p><span class="versionmodified changed">Changed in version 2.2.5: </span>those were called <code class="docutils literal notranslate"><span class="pre">stduser</span></code> and <code class="docutils literal notranslate"><span class="pre">stdpass</span></code></p> </div> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="setup.html#setup"><span class="std std-ref">Installation</span></a>, <a class="reference internal" href="setup.html#authentication-modes"><span class="std std-ref">Using authentication modes</span></a>, <a class="reference internal" href="setup.html#linked-tables"><span class="std std-ref">phpMyAdmin configuration storage</span></a>, <span class="target" id="index-62"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a>, <span class="target" id="index-63"></span><a class="reference internal" href="#cfg_Servers_controlhost"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['controlhost']</span></code></a>, <span class="target" id="index-64"></span><a class="reference internal" href="#cfg_Servers_controlport"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['controlport']</span></code></a>, <span class="target" id="index-65"></span><a class="reference internal" href="#cfg_Servers_control_*"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['control_*']</span></code></a></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_control_*"> <code class="sig-name descname">$cfg['Servers'][$i]['control_*']</code><a class="headerlink" href="#cfg_Servers_control_*" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>mixed</p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 4.7.0.</span></p> </div> <p>You can change any MySQL connection setting for control link (used to access <a class="reference internal" href="setup.html#linked-tables"><span class="std std-ref">phpMyAdmin configuration storage</span></a>) using configuration prefixed with <code class="docutils literal notranslate"><span class="pre">control_</span></code>.</p> <p>This can be used to change any aspect of the control connection, which by default uses same parameters as the user one.</p> <p>For example you can configure SSL for the control connection:</p> <div class="highlight-php notranslate"><div class="highlight"><pre><span></span><span class="c1">// Enable SSL</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'control_ssl'</span><span class="p">]</span> <span class="o">=</span> <span class="k">true</span><span class="p">;</span> <span class="c1">// Client secret key</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'control_ssl_key'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'../client-key.pem'</span><span class="p">;</span> <span class="c1">// Client certificate</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'control_ssl_cert'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'../client-cert.pem'</span><span class="p">;</span> <span class="c1">// Server certification authority</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'control_ssl_ca'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'../server-ca.pem'</span><span class="p">;</span> </pre></div> </div> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><span class="target" id="index-66"></span><a class="reference internal" href="#cfg_Servers_ssl"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl']</span></code></a>, <span class="target" id="index-67"></span><a class="reference internal" href="#cfg_Servers_ssl_key"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_key']</span></code></a>, <span class="target" id="index-68"></span><a class="reference internal" href="#cfg_Servers_ssl_cert"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_cert']</span></code></a>, <span class="target" id="index-69"></span><a class="reference internal" href="#cfg_Servers_ssl_ca"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ca']</span></code></a>, <span class="target" id="index-70"></span><a class="reference internal" href="#cfg_Servers_ssl_ca_path"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ca_path']</span></code></a>, <span class="target" id="index-71"></span><a class="reference internal" href="#cfg_Servers_ssl_ciphers"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ciphers']</span></code></a>, <span class="target" id="index-72"></span><a class="reference internal" href="#cfg_Servers_ssl_verify"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_verify']</span></code></a></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_auth_type"> <code class="sig-name descname">$cfg['Servers'][$i]['auth_type']</code><a class="headerlink" href="#cfg_Servers_auth_type" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'cookie'</span></code></p> </dd> </dl> <p>Whether config or cookie or <a class="reference internal" href="glossary.html#term-HTTP"><span class="xref std std-term">HTTP</span></a> or signon authentication should be used for this server.</p> <ul class="simple"> <li><p>‘config’ authentication (<code class="docutils literal notranslate"><span class="pre">$auth_type</span> <span class="pre">=</span> <span class="pre">'config'</span></code>) is the plain old way: username and password are stored in <code class="file docutils literal notranslate"><span class="pre">config.inc.php</span></code>.</p></li> <li><p>‘cookie’ authentication mode (<code class="docutils literal notranslate"><span class="pre">$auth_type</span> <span class="pre">=</span> <span class="pre">'cookie'</span></code>) allows you to log in as any valid MySQL user with the help of cookies.</p></li> <li><p>‘http’ authentication allows you to log in as any valid MySQL user via HTTP-Auth.</p></li> <li><p>‘signon’ authentication mode (<code class="docutils literal notranslate"><span class="pre">$auth_type</span> <span class="pre">=</span> <span class="pre">'signon'</span></code>) allows you to log in from prepared PHP session data or using supplied PHP script.</p></li> </ul> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="setup.html#authentication-modes"><span class="std std-ref">Using authentication modes</span></a></p> </div> </dd></dl> <span class="target" id="servers-auth-http-realm"></span><dl class="config option"> <dt id="cfg_Servers_auth_http_realm"> <code class="sig-name descname">$cfg['Servers'][$i]['auth_http_realm']</code><a class="headerlink" href="#cfg_Servers_auth_http_realm" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>When using auth_type = <code class="docutils literal notranslate"><span class="pre">http</span></code>, this field allows to define a custom <a class="reference internal" href="glossary.html#term-HTTP"><span class="xref std std-term">HTTP</span></a> Basic Auth Realm which will be displayed to the user. If not explicitly specified in your configuration, a string combined of “phpMyAdmin ” and either <span class="target" id="index-73"></span><a class="reference internal" href="#cfg_Servers_verbose"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['verbose']</span></code></a> or <span class="target" id="index-74"></span><a class="reference internal" href="#cfg_Servers_host"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['host']</span></code></a> will be used.</p> </dd></dl> <span class="target" id="servers-auth-swekey-config"></span><dl class="config option"> <dt id="cfg_Servers_auth_swekey_config"> <code class="sig-name descname">$cfg['Servers'][$i]['auth_swekey_config']</code><a class="headerlink" href="#cfg_Servers_auth_swekey_config" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 3.0.0.0: </span>This setting was named <cite>$cfg[‘Servers’][$i][‘auth_feebee_config’]</cite> and was renamed before the <cite>3.0.0.0</cite> release.</p> </div> <div class="deprecated"> <p><span class="versionmodified deprecated">Deprecated since version 4.6.4: </span>This setting was removed because their servers are no longer working and it was not working correctly.</p> </div> <div class="deprecated"> <p><span class="versionmodified deprecated">Deprecated since version 4.0.10.17: </span>This setting was removed in a maintenance release because their servers are no longer working and it was not working correctly.</p> </div> <p>The name of the file containing swekey ids and login names for hardware authentication. Leave empty to deactivate this feature.</p> </dd></dl> <span class="target" id="servers-user"></span><dl class="config option"> <dt id="cfg_Servers_user"> <code class="sig-name descname">$cfg['Servers'][$i]['user']</code><a class="headerlink" href="#cfg_Servers_user" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'root'</span></code></p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_password"> <code class="sig-name descname">$cfg['Servers'][$i]['password']</code><a class="headerlink" href="#cfg_Servers_password" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>When using <span class="target" id="index-75"></span><a class="reference internal" href="#cfg_Servers_auth_type"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['auth_type']</span></code></a> set to ‘config’, this is the user/password-pair which phpMyAdmin will use to connect to the MySQL server. This user/password pair is not needed when <a class="reference internal" href="glossary.html#term-HTTP"><span class="xref std std-term">HTTP</span></a> or cookie authentication is used and should be empty.</p> </dd></dl> <span class="target" id="servers-nopassword"></span><dl class="config option"> <dt id="cfg_Servers_nopassword"> <code class="sig-name descname">$cfg['Servers'][$i]['nopassword']</code><a class="headerlink" href="#cfg_Servers_nopassword" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <div class="deprecated"> <p><span class="versionmodified deprecated">Deprecated since version 4.7.0: </span>This setting was removed as it can produce unexpected results.</p> </div> <p>Allow attempt to log in without password when a login with password fails. This can be used together with http authentication, when authentication is done some other way and phpMyAdmin gets user name from auth and uses empty password for connecting to MySQL. Password login is still tried first, but as fallback, no password method is tried.</p> </dd></dl> <span class="target" id="servers-only-db"></span><dl class="config option"> <dt id="cfg_Servers_only_db"> <code class="sig-name descname">$cfg['Servers'][$i]['only_db']</code><a class="headerlink" href="#cfg_Servers_only_db" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>If set to a (an array of) database name(s), only this (these) database(s) will be shown to the user. Since phpMyAdmin 2.2.1, this/these database(s) name(s) may contain MySQL wildcards characters (“_” and “%”): if you want to use literal instances of these characters, escape them (I.E. use <code class="docutils literal notranslate"><span class="pre">'my\_db'</span></code> and not <code class="docutils literal notranslate"><span class="pre">'my_db'</span></code>).</p> <p>This setting is an efficient way to lower the server load since the latter does not need to send MySQL requests to build the available database list. But <strong>it does not replace the privileges rules of the MySQL database server</strong>. If set, it just means only these databases will be displayed but <strong>not that all other databases can’t be used.</strong></p> <p>An example of using more that one database:</p> <div class="highlight-php notranslate"><div class="highlight"><pre><span></span><span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'only_db'</span><span class="p">]</span> <span class="o">=</span> <span class="p">[</span><span class="s1">'db1'</span><span class="p">,</span> <span class="s1">'db2'</span><span class="p">];</span> </pre></div> </div> <div class="versionchanged"> <p><span class="versionmodified changed">Changed in version 4.0.0: </span>Previous versions permitted to specify the display order of the database names via this directive.</p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_hide_db"> <code class="sig-name descname">$cfg['Servers'][$i]['hide_db']</code><a class="headerlink" href="#cfg_Servers_hide_db" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>Regular expression for hiding some databases from unprivileged users. This only hides them from listing, but a user is still able to access them (using, for example, the SQL query area). To limit access, use the MySQL privilege system. For example, to hide all databases starting with the letter “a”, use</p> <div class="highlight-php notranslate"><div class="highlight"><pre><span></span><span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'hide_db'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'^a'</span><span class="p">;</span> </pre></div> </div> <p>and to hide both “db1” and “db2” use</p> <div class="highlight-php notranslate"><div class="highlight"><pre><span></span><span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'hide_db'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'^(db1|db2)$'</span><span class="p">;</span> </pre></div> </div> <p>More information on regular expressions can be found in the <a class="reference external" href="https://www.php.net/manual/en/reference.pcre.pattern.syntax.php">PCRE pattern syntax</a> portion of the PHP reference manual.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_verbose"> <code class="sig-name descname">$cfg['Servers'][$i]['verbose']</code><a class="headerlink" href="#cfg_Servers_verbose" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>Only useful when using phpMyAdmin with multiple server entries. If set, this string will be displayed instead of the hostname in the pull-down menu on the main page. This can be useful if you want to show only certain databases on your system, for example. For HTTP auth, all non-US-ASCII characters will be stripped.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_extension"> <code class="sig-name descname">$cfg['Servers'][$i]['extension']</code><a class="headerlink" href="#cfg_Servers_extension" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'mysqli'</span></code></p> </dd> </dl> <div class="deprecated"> <p><span class="versionmodified deprecated">Deprecated since version 4.2.0: </span>This setting was removed. The <code class="docutils literal notranslate"><span class="pre">mysql</span></code> extension will only be used when the <code class="docutils literal notranslate"><span class="pre">mysqli</span></code> extension is not available. As of 5.0.0, only the <code class="docutils literal notranslate"><span class="pre">mysqli</span></code> extension can be used.</p> </div> <p>The PHP MySQL extension to use (<code class="docutils literal notranslate"><span class="pre">mysql</span></code> or <code class="docutils literal notranslate"><span class="pre">mysqli</span></code>).</p> <p>It is recommended to use <code class="docutils literal notranslate"><span class="pre">mysqli</span></code> in all installations.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_pmadb"> <code class="sig-name descname">$cfg['Servers'][$i]['pmadb']</code><a class="headerlink" href="#cfg_Servers_pmadb" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>The name of the database containing the phpMyAdmin configuration storage.</p> <p>See the <a class="reference internal" href="setup.html#linked-tables"><span class="std std-ref">phpMyAdmin configuration storage</span></a> section in this document to see the benefits of this feature, and for a quick way of creating this database and the needed tables.</p> <p>If you are the only user of this phpMyAdmin installation, you can use your current database to store those special tables; in this case, just put your current database name in <span class="target" id="index-76"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a>. For a multi-user installation, set this parameter to the name of your central database containing the phpMyAdmin configuration storage.</p> </dd></dl> <span class="target" id="bookmark"></span><dl class="config option"> <dt id="cfg_Servers_bookmarktable"> <code class="sig-name descname">$cfg['Servers'][$i]['bookmarktable']</code><a class="headerlink" href="#cfg_Servers_bookmarktable" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or false</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 2.2.0.</span></p> </div> <p>Since release 2.2.0 phpMyAdmin allows users to bookmark queries. This can be useful for queries you often run. To allow the usage of this functionality:</p> <ul class="simple"> <li><p>set up <span class="target" id="index-77"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</p></li> <li><p>enter the table name in <span class="target" id="index-78"></span><a class="reference internal" href="#cfg_Servers_bookmarktable"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['bookmarktable']</span></code></a></p></li> </ul> <p>This feature can be disabled by setting the configuration to <code class="docutils literal notranslate"><span class="pre">false</span></code>.</p> </dd></dl> <span class="target" id="relation"></span><dl class="config option"> <dt id="cfg_Servers_relation"> <code class="sig-name descname">$cfg['Servers'][$i]['relation']</code><a class="headerlink" href="#cfg_Servers_relation" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or false</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 2.2.4.</span></p> </div> <p>Since release 2.2.4 you can describe, in a special ‘relation’ table, which column is a key in another table (a foreign key). phpMyAdmin currently uses this to:</p> <ul class="simple"> <li><p>make clickable, when you browse the master table, the data values that point to the foreign table;</p></li> <li><p>display in an optional tool-tip the “display column” when browsing the master table, if you move the mouse to a column containing a foreign key (use also the ‘table_info’ table); (see <a class="reference internal" href="faq.html#faqdisplay"><span class="std std-ref">6.7 How can I use the “display column” feature?</span></a>)</p></li> <li><p>in edit/insert mode, display a drop-down list of possible foreign keys (key value and “display column” are shown) (see <a class="reference internal" href="faq.html#faq6-21"><span class="std std-ref">6.21 In edit/insert mode, how can I see a list of possible values for a column, based on some foreign table?</span></a>)</p></li> <li><p>display links on the table properties page, to check referential integrity (display missing foreign keys) for each described key;</p></li> <li><p>in query-by-example, create automatic joins (see <a class="reference internal" href="faq.html#faq6-6"><span class="std std-ref">6.6 How can I use the relation table in Query-by-example?</span></a>)</p></li> <li><p>enable you to get a <a class="reference internal" href="glossary.html#term-PDF"><span class="xref std std-term">PDF</span></a> schema of your database (also uses the table_coords table).</p></li> </ul> <p>The keys can be numeric or character.</p> <p>To allow the usage of this functionality:</p> <ul class="simple"> <li><p>set up <span class="target" id="index-79"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</p></li> <li><p>put the relation table name in <span class="target" id="index-80"></span><a class="reference internal" href="#cfg_Servers_relation"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['relation']</span></code></a></p></li> <li><p>now as normal user open phpMyAdmin and for each one of your tables where you want to use this feature, click <span class="guilabel">Structure/Relation view/</span> and choose foreign columns.</p></li> </ul> <p>This feature can be disabled by setting the configuration to <code class="docutils literal notranslate"><span class="pre">false</span></code>.</p> <div class="admonition note"> <p class="admonition-title">Note</p> <p>In the current version, <code class="docutils literal notranslate"><span class="pre">master_db</span></code> must be the same as <code class="docutils literal notranslate"><span class="pre">foreign_db</span></code>. Those columns have been put in future development of the cross-db relations.</p> </div> </dd></dl> <span class="target" id="table-info"></span><dl class="config option"> <dt id="cfg_Servers_table_info"> <code class="sig-name descname">$cfg['Servers'][$i]['table_info']</code><a class="headerlink" href="#cfg_Servers_table_info" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or false</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 2.3.0.</span></p> </div> <p>Since release 2.3.0 you can describe, in a special ‘table_info’ table, which column is to be displayed as a tool-tip when moving the cursor over the corresponding key. This configuration variable will hold the name of this special table. To allow the usage of this functionality:</p> <ul class="simple"> <li><p>set up <span class="target" id="index-81"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</p></li> <li><p>put the table name in <span class="target" id="index-82"></span><a class="reference internal" href="#cfg_Servers_table_info"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['table_info']</span></code></a> (e.g. <code class="docutils literal notranslate"><span class="pre">pma__table_info</span></code>)</p></li> <li><p>then for each table where you want to use this feature, click “Structure/Relation view/Choose column to display” to choose the column.</p></li> </ul> <p>This feature can be disabled by setting the configuration to <code class="docutils literal notranslate"><span class="pre">false</span></code>.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="faq.html#faqdisplay"><span class="std std-ref">6.7 How can I use the “display column” feature?</span></a></p> </div> </dd></dl> <span class="target" id="table-coords"></span><dl class="config option"> <dt id="cfg_Servers_table_coords"> <code class="sig-name descname">$cfg['Servers'][$i]['table_coords']</code><a class="headerlink" href="#cfg_Servers_table_coords" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or false</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>The designer feature can save your page layout; by pressing the “Save page” or “Save page as” button in the expanding designer menu, you can customize the layout and have it loaded the next time you use the designer. That layout is stored in this table. Furthermore, this table is also required for using the PDF relation export feature, see <span class="target" id="index-83"></span><a class="reference internal" href="#cfg_Servers_pdf_pages"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pdf_pages']</span></code></a> for additional details.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_pdf_pages"> <code class="sig-name descname">$cfg['Servers'][$i]['pdf_pages']</code><a class="headerlink" href="#cfg_Servers_pdf_pages" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or false</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 2.3.0.</span></p> </div> <p>Since release 2.3.0 you can have phpMyAdmin create <a class="reference internal" href="glossary.html#term-PDF"><span class="xref std std-term">PDF</span></a> pages showing the relations between your tables. Further, the designer interface permits visually managing the relations. To do this it needs two tables “pdf_pages” (storing information about the available <a class="reference internal" href="glossary.html#term-PDF"><span class="xref std std-term">PDF</span></a> pages) and “table_coords” (storing coordinates where each table will be placed on a <a class="reference internal" href="glossary.html#term-PDF"><span class="xref std std-term">PDF</span></a> schema output). You must be using the “relation” feature.</p> <p>To allow the usage of this functionality:</p> <ul class="simple"> <li><p>set up <span class="target" id="index-84"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</p></li> <li><p>put the correct table names in <span class="target" id="index-85"></span><a class="reference internal" href="#cfg_Servers_table_coords"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['table_coords']</span></code></a> and <span class="target" id="index-86"></span><a class="reference internal" href="#cfg_Servers_pdf_pages"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pdf_pages']</span></code></a></p></li> </ul> <p>This feature can be disabled by setting either of the configurations to <code class="docutils literal notranslate"><span class="pre">false</span></code>.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="faq.html#faqpdf"><span class="std std-ref">6.8 How can I produce a PDF schema of my database?</span></a>.</p> </div> </dd></dl> <span class="target" id="designer-coords"></span><dl class="config option"> <dt id="cfg_Servers_designer_coords"> <code class="sig-name descname">$cfg['Servers'][$i]['designer_coords']</code><a class="headerlink" href="#cfg_Servers_designer_coords" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 2.10.0: </span>Since release 2.10.0 a Designer interface is available; it permits to visually manage the relations.</p> </div> <div class="deprecated"> <p><span class="versionmodified deprecated">Deprecated since version 4.3.0: </span>This setting was removed and the Designer table positioning data is now stored into <span class="target" id="index-87"></span><a class="reference internal" href="#cfg_Servers_table_coords"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['table_coords']</span></code></a>.</p> </div> <div class="admonition note"> <p class="admonition-title">Note</p> <p>You can now delete the table <cite>pma__designer_coords</cite> from your phpMyAdmin configuration storage database and remove <span class="target" id="index-88"></span><a class="reference internal" href="#cfg_Servers_designer_coords"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['designer_coords']</span></code></a> from your configuration file.</p> </div> </dd></dl> <span class="target" id="col-com"></span><dl class="config option"> <dt id="cfg_Servers_column_info"> <code class="sig-name descname">$cfg['Servers'][$i]['column_info']</code><a class="headerlink" href="#cfg_Servers_column_info" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or false</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 2.3.0.</span></p> </div> <p>This part requires a content update! Since release 2.3.0 you can store comments to describe each column for each table. These will then be shown on the “printview”.</p> <p>Starting with release 2.5.0, comments are consequently used on the table property pages and table browse view, showing up as tool-tips above the column name (properties page) or embedded within the header of table in browse view. They can also be shown in a table dump. Please see the relevant configuration directives later on.</p> <p>Also new in release 2.5.0 is a MIME- transformation system which is also based on the following table structure. See <a class="reference internal" href="transformations.html#transformations"><span class="std std-ref">Transformations</span></a> for further information. To use the MIME- transformation system, your column_info table has to have the three new columns ‘mimetype’, ‘transformation’, ‘transformation_options’.</p> <p>Starting with release 4.3.0, a new input-oriented transformation system has been introduced. Also, backward compatibility code used in the old transformations system was removed. As a result, an update to column_info table is necessary for previous transformations and the new input-oriented transformation system to work. phpMyAdmin will upgrade it automatically for you by analyzing your current column_info table structure. However, if something goes wrong with the auto-upgrade then you can use the SQL script found in <code class="docutils literal notranslate"><span class="pre">./sql/upgrade_column_info_4_3_0+.sql</span></code> to upgrade it manually.</p> <p>To allow the usage of this functionality:</p> <ul> <li><p>set up <span class="target" id="index-89"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</p></li> <li><p>put the table name in <span class="target" id="index-90"></span><a class="reference internal" href="#cfg_Servers_column_info"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['column_info']</span></code></a> (e.g. <code class="docutils literal notranslate"><span class="pre">pma__column_info</span></code>)</p></li> <li><p>to update your PRE-2.5.0 Column_comments table use this: and remember that the Variable in <code class="file docutils literal notranslate"><span class="pre">config.inc.php</span></code> has been renamed from <code class="samp docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['column_comments']</span></code> to <span class="target" id="index-91"></span><a class="reference internal" href="#cfg_Servers_column_info"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['column_info']</span></code></a></p> <div class="highlight-mysql notranslate"><div class="highlight"><pre><span></span><span class="k">ALTER</span> <span class="k">TABLE</span> <span class="n">`pma__column_comments`</span> <span class="k">ADD</span> <span class="n">`mimetype`</span> <span class="kt">VARCHAR</span><span class="p">(</span> <span class="mi">255</span> <span class="p">)</span> <span class="k">NOT</span> <span class="no">NULL</span><span class="p">,</span> <span class="k">ADD</span> <span class="n">`transformation`</span> <span class="kt">VARCHAR</span><span class="p">(</span> <span class="mi">255</span> <span class="p">)</span> <span class="k">NOT</span> <span class="no">NULL</span><span class="p">,</span> <span class="k">ADD</span> <span class="n">`transformation_options`</span> <span class="kt">VARCHAR</span><span class="p">(</span> <span class="mi">255</span> <span class="p">)</span> <span class="k">NOT</span> <span class="no">NULL</span><span class="p">;</span> </pre></div> </div> </li> <li><p>to update your PRE-4.3.0 Column_info table manually use this <code class="docutils literal notranslate"><span class="pre">./sql/upgrade_column_info_4_3_0+.sql</span></code> SQL script.</p></li> </ul> <p>This feature can be disabled by setting the configuration to <code class="docutils literal notranslate"><span class="pre">false</span></code>.</p> <div class="admonition note"> <p class="admonition-title">Note</p> <p>For auto-upgrade functionality to work, your <span class="target" id="index-92"></span><a class="reference internal" href="#cfg_Servers_controluser"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['controluser']</span></code></a> must have ALTER privilege on <code class="docutils literal notranslate"><span class="pre">phpmyadmin</span></code> database. See the <a class="reference external" href="https://dev.mysql.com/doc/refman/8.0/en/grant.html">MySQL documentation for GRANT</a> on how to <code class="docutils literal notranslate"><span class="pre">GRANT</span></code> privileges to a user.</p> </div> </dd></dl> <span class="target" id="history"></span><dl class="config option"> <dt id="cfg_Servers_history"> <code class="sig-name descname">$cfg['Servers'][$i]['history']</code><a class="headerlink" href="#cfg_Servers_history" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or false</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 2.5.0.</span></p> </div> <p>Since release 2.5.0 you can store your <a class="reference internal" href="glossary.html#term-SQL"><span class="xref std std-term">SQL</span></a> history, which means all queries you entered manually into the phpMyAdmin interface. If you don’t want to use a table-based history, you can use the JavaScript-based history.</p> <p>Using that, all your history items are deleted when closing the window. Using <span class="target" id="index-93"></span><a class="reference internal" href="#cfg_QueryHistoryMax"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['QueryHistoryMax']</span></code></a> you can specify an amount of history items you want to have on hold. On every login, this list gets cut to the maximum amount.</p> <p>The query history is only available if JavaScript is enabled in your browser.</p> <p>To allow the usage of this functionality:</p> <ul class="simple"> <li><p>set up <span class="target" id="index-94"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</p></li> <li><p>put the table name in <span class="target" id="index-95"></span><a class="reference internal" href="#cfg_Servers_history"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['history']</span></code></a> (e.g. <code class="docutils literal notranslate"><span class="pre">pma__history</span></code>)</p></li> </ul> <p>This feature can be disabled by setting the configuration to <code class="docutils literal notranslate"><span class="pre">false</span></code>.</p> </dd></dl> <span class="target" id="recent"></span><dl class="config option"> <dt id="cfg_Servers_recent"> <code class="sig-name descname">$cfg['Servers'][$i]['recent']</code><a class="headerlink" href="#cfg_Servers_recent" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or false</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 3.5.0.</span></p> </div> <p>Since release 3.5.0 you can show recently used tables in the navigation panel. It helps you to jump across table directly, without the need to select the database, and then select the table. Using <span class="target" id="index-96"></span><a class="reference internal" href="#cfg_NumRecentTables"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['NumRecentTables']</span></code></a> you can configure the maximum number of recent tables shown. When you select a table from the list, it will jump to the page specified in <span class="target" id="index-97"></span><a class="reference internal" href="#cfg_NavigationTreeDefaultTabTable"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['NavigationTreeDefaultTabTable']</span></code></a>.</p> <p>Without configuring the storage, you can still access the recently used tables, but it will disappear after you logout.</p> <p>To allow the usage of this functionality persistently:</p> <ul class="simple"> <li><p>set up <span class="target" id="index-98"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</p></li> <li><p>put the table name in <span class="target" id="index-99"></span><a class="reference internal" href="#cfg_Servers_recent"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['recent']</span></code></a> (e.g. <code class="docutils literal notranslate"><span class="pre">pma__recent</span></code>)</p></li> </ul> <p>This feature can be disabled by setting the configuration to <code class="docutils literal notranslate"><span class="pre">false</span></code>.</p> </dd></dl> <span class="target" id="favorite"></span><dl class="config option"> <dt id="cfg_Servers_favorite"> <code class="sig-name descname">$cfg['Servers'][$i]['favorite']</code><a class="headerlink" href="#cfg_Servers_favorite" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or false</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 4.2.0.</span></p> </div> <p>Since release 4.2.0 you can show a list of selected tables in the navigation panel. It helps you to jump to the table directly, without the need to select the database, and then select the table. When you select a table from the list, it will jump to the page specified in <span class="target" id="index-100"></span><a class="reference internal" href="#cfg_NavigationTreeDefaultTabTable"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['NavigationTreeDefaultTabTable']</span></code></a>.</p> <p>You can add tables to this list or remove tables from it in database structure page by clicking on the star icons next to table names. Using <span class="target" id="index-101"></span><a class="reference internal" href="#cfg_NumFavoriteTables"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['NumFavoriteTables']</span></code></a> you can configure the maximum number of favorite tables shown.</p> <p>Without configuring the storage, you can still access the favorite tables, but it will disappear after you logout.</p> <p>To allow the usage of this functionality persistently:</p> <ul class="simple"> <li><p>set up <span class="target" id="index-102"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</p></li> <li><p>put the table name in <span class="target" id="index-103"></span><a class="reference internal" href="#cfg_Servers_favorite"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['favorite']</span></code></a> (e.g. <code class="docutils literal notranslate"><span class="pre">pma__favorite</span></code>)</p></li> </ul> <p>This feature can be disabled by setting the configuration to <code class="docutils literal notranslate"><span class="pre">false</span></code>.</p> </dd></dl> <span class="target" id="table-uiprefs"></span><dl class="config option"> <dt id="cfg_Servers_table_uiprefs"> <code class="sig-name descname">$cfg['Servers'][$i]['table_uiprefs']</code><a class="headerlink" href="#cfg_Servers_table_uiprefs" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or false</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 3.5.0.</span></p> </div> <p>Since release 3.5.0 phpMyAdmin can be configured to remember several things (sorted column <span class="target" id="index-104"></span><a class="reference internal" href="#cfg_RememberSorting"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['RememberSorting']</span></code></a>, column order, and column visibility from a database table) for browsing tables. Without configuring the storage, these features still can be used, but the values will disappear after you logout.</p> <p>To allow the usage of these functionality persistently:</p> <ul class="simple"> <li><p>set up <span class="target" id="index-105"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</p></li> <li><p>put the table name in <span class="target" id="index-106"></span><a class="reference internal" href="#cfg_Servers_table_uiprefs"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['table_uiprefs']</span></code></a> (e.g. <code class="docutils literal notranslate"><span class="pre">pma__table_uiprefs</span></code>)</p></li> </ul> <p>This feature can be disabled by setting the configuration to <code class="docutils literal notranslate"><span class="pre">false</span></code>.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_users"> <code class="sig-name descname">$cfg['Servers'][$i]['users']</code><a class="headerlink" href="#cfg_Servers_users" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or false</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>The table used by phpMyAdmin to store user name information for associating with user groups. See the next entry on <span class="target" id="index-107"></span><a class="reference internal" href="#cfg_Servers_usergroups"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['usergroups']</span></code></a> for more details and the suggested settings.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_usergroups"> <code class="sig-name descname">$cfg['Servers'][$i]['usergroups']</code><a class="headerlink" href="#cfg_Servers_usergroups" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or false</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 4.1.0.</span></p> </div> <p>Since release 4.1.0 you can create different user groups with menu items attached to them. Users can be assigned to these groups and the logged in user would only see menu items configured to the usergroup they are assigned to. To do this it needs two tables “usergroups” (storing allowed menu items for each user group) and “users” (storing users and their assignments to user groups).</p> <p>To allow the usage of this functionality:</p> <ul class="simple"> <li><p>set up <span class="target" id="index-108"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</p></li> <li><p>put the correct table names in <span class="target" id="index-109"></span><a class="reference internal" href="#cfg_Servers_users"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['users']</span></code></a> (e.g. <code class="docutils literal notranslate"><span class="pre">pma__users</span></code>) and <span class="target" id="index-110"></span><a class="reference internal" href="#cfg_Servers_usergroups"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['usergroups']</span></code></a> (e.g. <code class="docutils literal notranslate"><span class="pre">pma__usergroups</span></code>)</p></li> </ul> <p>This feature can be disabled by setting either of the configurations to <code class="docutils literal notranslate"><span class="pre">false</span></code>.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="privileges.html#configurablemenus"><span class="std std-ref">Configurable menus and user groups</span></a></p> </div> </dd></dl> <span class="target" id="navigationhiding"></span><dl class="config option"> <dt id="cfg_Servers_navigationhiding"> <code class="sig-name descname">$cfg['Servers'][$i]['navigationhiding']</code><a class="headerlink" href="#cfg_Servers_navigationhiding" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or false</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 4.1.0.</span></p> </div> <p>Since release 4.1.0 you can hide/show items in the navigation tree.</p> <p>To allow the usage of this functionality:</p> <ul class="simple"> <li><p>set up <span class="target" id="index-111"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</p></li> <li><p>put the table name in <span class="target" id="index-112"></span><a class="reference internal" href="#cfg_Servers_navigationhiding"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['navigationhiding']</span></code></a> (e.g. <code class="docutils literal notranslate"><span class="pre">pma__navigationhiding</span></code>)</p></li> </ul> <p>This feature can be disabled by setting the configuration to <code class="docutils literal notranslate"><span class="pre">false</span></code>.</p> </dd></dl> <span class="target" id="central-columns"></span><dl class="config option"> <dt id="cfg_Servers_central_columns"> <code class="sig-name descname">$cfg['Servers'][$i]['central_columns']</code><a class="headerlink" href="#cfg_Servers_central_columns" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or false</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 4.3.0.</span></p> </div> <p>Since release 4.3.0 you can have a central list of columns per database. You can add/remove columns to the list as per your requirement. These columns in the central list will be available to use while you create a new column for a table or create a table itself. You can select a column from central list while creating a new column, it will save you from writing the same column definition over again or from writing different names for similar column.</p> <p>To allow the usage of this functionality:</p> <ul class="simple"> <li><p>set up <span class="target" id="index-113"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</p></li> <li><p>put the table name in <span class="target" id="index-114"></span><a class="reference internal" href="#cfg_Servers_central_columns"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['central_columns']</span></code></a> (e.g. <code class="docutils literal notranslate"><span class="pre">pma__central_columns</span></code>)</p></li> </ul> <p>This feature can be disabled by setting the configuration to <code class="docutils literal notranslate"><span class="pre">false</span></code>.</p> </dd></dl> <span class="target" id="designer-settings"></span><dl class="config option"> <dt id="cfg_Servers_designer_settings"> <code class="sig-name descname">$cfg['Servers'][$i]['designer_settings']</code><a class="headerlink" href="#cfg_Servers_designer_settings" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or false</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 4.5.0.</span></p> </div> <p>Since release 4.5.0 your designer settings can be remembered. Your choice regarding ‘Angular/Direct Links’, ‘Snap to Grid’, ‘Toggle Relation Lines’, ‘Small/Big All’, ‘Move Menu’ and ‘Pin Text’ can be remembered persistently.</p> <p>To allow the usage of this functionality:</p> <ul class="simple"> <li><p>set up <span class="target" id="index-115"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</p></li> <li><p>put the table name in <span class="target" id="index-116"></span><a class="reference internal" href="#cfg_Servers_designer_settings"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['designer_settings']</span></code></a> (e.g. <code class="docutils literal notranslate"><span class="pre">pma__designer_settings</span></code>)</p></li> </ul> <p>This feature can be disabled by setting the configuration to <code class="docutils literal notranslate"><span class="pre">false</span></code>.</p> </dd></dl> <span class="target" id="savedsearches"></span><dl class="config option"> <dt id="cfg_Servers_savedsearches"> <code class="sig-name descname">$cfg['Servers'][$i]['savedsearches']</code><a class="headerlink" href="#cfg_Servers_savedsearches" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or false</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 4.2.0.</span></p> </div> <p>Since release 4.2.0 you can save and load query-by-example searches from the Database > Query panel.</p> <p>To allow the usage of this functionality:</p> <ul class="simple"> <li><p>set up <span class="target" id="index-117"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</p></li> <li><p>put the table name in <span class="target" id="index-118"></span><a class="reference internal" href="#cfg_Servers_savedsearches"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['savedsearches']</span></code></a> (e.g. <code class="docutils literal notranslate"><span class="pre">pma__savedsearches</span></code>)</p></li> </ul> <p>This feature can be disabled by setting the configuration to <code class="docutils literal notranslate"><span class="pre">false</span></code>.</p> </dd></dl> <span class="target" id="export-templates"></span><dl class="config option"> <dt id="cfg_Servers_export_templates"> <code class="sig-name descname">$cfg['Servers'][$i]['export_templates']</code><a class="headerlink" href="#cfg_Servers_export_templates" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or false</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 4.5.0.</span></p> </div> <p>Since release 4.5.0 you can save and load export templates.</p> <p>To allow the usage of this functionality:</p> <ul class="simple"> <li><p>set up <span class="target" id="index-119"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</p></li> <li><p>put the table name in <span class="target" id="index-120"></span><a class="reference internal" href="#cfg_Servers_export_templates"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['export_templates']</span></code></a> (e.g. <code class="docutils literal notranslate"><span class="pre">pma__export_templates</span></code>)</p></li> </ul> <p>This feature can be disabled by setting the configuration to <code class="docutils literal notranslate"><span class="pre">false</span></code>.</p> </dd></dl> <span class="target" id="tracking"></span><dl class="config option"> <dt id="cfg_Servers_tracking"> <code class="sig-name descname">$cfg['Servers'][$i]['tracking']</code><a class="headerlink" href="#cfg_Servers_tracking" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or false</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 3.3.x.</span></p> </div> <p>Since release 3.3.x a tracking mechanism is available. It helps you to track every <a class="reference internal" href="glossary.html#term-SQL"><span class="xref std std-term">SQL</span></a> command which is executed by phpMyAdmin. The mechanism supports logging of data manipulation and data definition statements. After enabling it you can create versions of tables.</p> <p>The creation of a version has two effects:</p> <ul class="simple"> <li><p>phpMyAdmin saves a snapshot of the table, including structure and indexes.</p></li> <li><p>phpMyAdmin logs all commands which change the structure and/or data of the table and links these commands with the version number.</p></li> </ul> <p>Of course you can view the tracked changes. On the <span class="guilabel">Tracking</span> page a complete report is available for every version. For the report you can use filters, for example you can get a list of statements within a date range. When you want to filter usernames you can enter * for all names or you enter a list of names separated by ‘,’. In addition you can export the (filtered) report to a file or to a temporary database.</p> <p>To allow the usage of this functionality:</p> <ul class="simple"> <li><p>set up <span class="target" id="index-121"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</p></li> <li><p>put the table name in <span class="target" id="index-122"></span><a class="reference internal" href="#cfg_Servers_tracking"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['tracking']</span></code></a> (e.g. <code class="docutils literal notranslate"><span class="pre">pma__tracking</span></code>)</p></li> </ul> <p>This feature can be disabled by setting the configuration to <code class="docutils literal notranslate"><span class="pre">false</span></code>.</p> </dd></dl> <span class="target" id="tracking2"></span><dl class="config option"> <dt id="cfg_Servers_tracking_version_auto_create"> <code class="sig-name descname">$cfg['Servers'][$i]['tracking_version_auto_create']</code><a class="headerlink" href="#cfg_Servers_tracking_version_auto_create" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Whether the tracking mechanism creates versions for tables and views automatically.</p> <p>If this is set to true and you create a table or view with</p> <ul class="simple"> <li><p>CREATE TABLE …</p></li> <li><p>CREATE VIEW …</p></li> </ul> <p>and no version exists for it, the mechanism will create a version for you automatically.</p> </dd></dl> <span class="target" id="tracking3"></span><dl class="config option"> <dt id="cfg_Servers_tracking_default_statements"> <code class="sig-name descname">$cfg['Servers'][$i]['tracking_default_statements']</code><a class="headerlink" href="#cfg_Servers_tracking_default_statements" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'CREATE</span> <span class="pre">TABLE,ALTER</span> <span class="pre">TABLE,DROP</span> <span class="pre">TABLE,RENAME</span> <span class="pre">TABLE,CREATE</span> <span class="pre">INDEX,DROP</span> <span class="pre">INDEX,INSERT,UPDATE,DELETE,TRUNCATE,REPLACE,CREATE</span> <span class="pre">VIEW,ALTER</span> <span class="pre">VIEW,DROP</span> <span class="pre">VIEW,CREATE</span> <span class="pre">DATABASE,ALTER</span> <span class="pre">DATABASE,DROP</span> <span class="pre">DATABASE'</span></code></p> </dd> </dl> <p>Defines the list of statements the auto-creation uses for new versions.</p> </dd></dl> <span class="target" id="tracking4"></span><dl class="config option"> <dt id="cfg_Servers_tracking_add_drop_view"> <code class="sig-name descname">$cfg['Servers'][$i]['tracking_add_drop_view']</code><a class="headerlink" href="#cfg_Servers_tracking_add_drop_view" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Whether a <cite>DROP VIEW IF EXISTS</cite> statement will be added as first line to the log when creating a view.</p> </dd></dl> <span class="target" id="tracking5"></span><dl class="config option"> <dt id="cfg_Servers_tracking_add_drop_table"> <code class="sig-name descname">$cfg['Servers'][$i]['tracking_add_drop_table']</code><a class="headerlink" href="#cfg_Servers_tracking_add_drop_table" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Whether a <cite>DROP TABLE IF EXISTS</cite> statement will be added as first line to the log when creating a table.</p> </dd></dl> <span class="target" id="tracking6"></span><dl class="config option"> <dt id="cfg_Servers_tracking_add_drop_database"> <code class="sig-name descname">$cfg['Servers'][$i]['tracking_add_drop_database']</code><a class="headerlink" href="#cfg_Servers_tracking_add_drop_database" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Whether a <cite>DROP DATABASE IF EXISTS</cite> statement will be added as first line to the log when creating a database.</p> </dd></dl> <span class="target" id="userconfig"></span><dl class="config option"> <dt id="cfg_Servers_userconfig"> <code class="sig-name descname">$cfg['Servers'][$i]['userconfig']</code><a class="headerlink" href="#cfg_Servers_userconfig" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or false</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 3.4.x.</span></p> </div> <p>Since release 3.4.x phpMyAdmin allows users to set most preferences by themselves and store them in the database.</p> <p>If you don’t allow for storing preferences in <span class="target" id="index-123"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a>, users can still personalize phpMyAdmin, but settings will be saved in browser’s local storage, or, it is is unavailable, until the end of session.</p> <p>To allow the usage of this functionality:</p> <ul class="simple"> <li><p>set up <span class="target" id="index-124"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</p></li> <li><p>put the table name in <span class="target" id="index-125"></span><a class="reference internal" href="#cfg_Servers_userconfig"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['userconfig']</span></code></a></p></li> </ul> <p>This feature can be disabled by setting the configuration to <code class="docutils literal notranslate"><span class="pre">false</span></code>.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_MaxTableUiprefs"> <code class="sig-name descname">$cfg['Servers'][$i]['MaxTableUiprefs']</code><a class="headerlink" href="#cfg_Servers_MaxTableUiprefs" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>100</p> </dd> </dl> <p>Maximum number of rows saved in <span class="target" id="index-126"></span><a class="reference internal" href="#cfg_Servers_table_uiprefs"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['table_uiprefs']</span></code></a> table.</p> <p>When tables are dropped or renamed, <span class="target" id="index-127"></span><a class="reference internal" href="#cfg_Servers_table_uiprefs"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['table_uiprefs']</span></code></a> may contain invalid data (referring to tables which no longer exist). We only keep this number of newest rows in <span class="target" id="index-128"></span><a class="reference internal" href="#cfg_Servers_table_uiprefs"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['table_uiprefs']</span></code></a> and automatically delete older rows.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_SessionTimeZone"> <code class="sig-name descname">$cfg['Servers'][$i]['SessionTimeZone']</code><a class="headerlink" href="#cfg_Servers_SessionTimeZone" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>Sets the time zone used by phpMyAdmin. Leave blank to use the time zone of your database server. Possible values are explained at <a class="reference external" href="https://dev.mysql.com/doc/refman/8.0/en/time-zone-support.html">https://dev.mysql.com/doc/refman/8.0/en/time-zone-support.html</a></p> <p>This is useful when your database server uses a time zone which is different from the time zone you want to use in phpMyAdmin.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_AllowRoot"> <code class="sig-name descname">$cfg['Servers'][$i]['AllowRoot']</code><a class="headerlink" href="#cfg_Servers_AllowRoot" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Whether to allow root access. This is just a shortcut for the <span class="target" id="index-129"></span><a class="reference internal" href="#cfg_Servers_AllowDeny_rules"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['AllowDeny']['rules']</span></code></a> below.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_AllowNoPassword"> <code class="sig-name descname">$cfg['Servers'][$i]['AllowNoPassword']</code><a class="headerlink" href="#cfg_Servers_AllowNoPassword" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Whether to allow logins without a password. The default value of <code class="docutils literal notranslate"><span class="pre">false</span></code> for this parameter prevents unintended access to a MySQL server with was left with an empty password for root or on which an anonymous (blank) user is defined.</p> </dd></dl> <span class="target" id="servers-allowdeny-order"></span><dl class="config option"> <dt id="cfg_Servers_AllowDeny_order"> <code class="sig-name descname">$cfg['Servers'][$i]['AllowDeny']['order']</code><a class="headerlink" href="#cfg_Servers_AllowDeny_order" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>If your rule order is empty, then <a class="reference internal" href="glossary.html#term-IP"><span class="xref std std-term">IP</span></a> authorization is disabled.</p> <p>If your rule order is set to <code class="docutils literal notranslate"><span class="pre">'deny,allow'</span></code> then the system applies all deny rules followed by allow rules. Access is allowed by default. Any client which does not match a Deny command or does match an Allow command will be allowed access to the server.</p> <p>If your rule order is set to <code class="docutils literal notranslate"><span class="pre">'allow,deny'</span></code> then the system applies all allow rules followed by deny rules. Access is denied by default. Any client which does not match an Allow directive or does match a Deny directive will be denied access to the server.</p> <p>If your rule order is set to <code class="docutils literal notranslate"><span class="pre">'explicit'</span></code>, authorization is performed in a similar fashion to rule order ‘deny,allow’, with the added restriction that your host/username combination <strong>must</strong> be listed in the <em>allow</em> rules, and not listed in the <em>deny</em> rules. This is the <strong>most</strong> secure means of using Allow/Deny rules, and was available in Apache by specifying allow and deny rules without setting any order.</p> <p>Please also see <span class="target" id="index-130"></span><a class="reference internal" href="#cfg_TrustedProxies"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['TrustedProxies']</span></code></a> for detecting IP address behind proxies.</p> </dd></dl> <span class="target" id="servers-allowdeny-rules"></span><dl class="config option"> <dt id="cfg_Servers_AllowDeny_rules"> <code class="sig-name descname">$cfg['Servers'][$i]['AllowDeny']['rules']</code><a class="headerlink" href="#cfg_Servers_AllowDeny_rules" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array of strings</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>array()</p> </dd> </dl> <p>The general format for the rules is as such:</p> <div class="highlight-none notranslate"><div class="highlight"><pre><span></span><'allow' | 'deny'> <username> [from] <ipmask> </pre></div> </div> <p>If you wish to match all users, it is possible to use a <code class="docutils literal notranslate"><span class="pre">'%'</span></code> as a wildcard in the <em>username</em> field.</p> <p>There are a few shortcuts you can use in the <em>ipmask</em> field as well (please note that those containing SERVER_ADDRESS might not be available on all webservers):</p> <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>'all' -> 0.0.0.0/0 'localhost' -> 127.0.0.1/8 'localnetA' -> SERVER_ADDRESS/8 'localnetB' -> SERVER_ADDRESS/16 'localnetC' -> SERVER_ADDRESS/24 </pre></div> </div> <p>Having an empty rule list is equivalent to either using <code class="docutils literal notranslate"><span class="pre">'allow</span> <span class="pre">%</span> <span class="pre">from</span> <span class="pre">all'</span></code> if your rule order is set to <code class="docutils literal notranslate"><span class="pre">'deny,allow'</span></code> or <code class="docutils literal notranslate"><span class="pre">'deny</span> <span class="pre">%</span> <span class="pre">from</span> <span class="pre">all'</span></code> if your rule order is set to <code class="docutils literal notranslate"><span class="pre">'allow,deny'</span></code> or <code class="docutils literal notranslate"><span class="pre">'explicit'</span></code>.</p> <p>For the <a class="reference internal" href="glossary.html#term-IP-Address"><span class="xref std std-term">IP Address</span></a> matching system, the following work:</p> <ul class="simple"> <li><p><code class="docutils literal notranslate"><span class="pre">xxx.xxx.xxx.xxx</span></code> (an exact <a class="reference internal" href="glossary.html#term-IP-Address"><span class="xref std std-term">IP Address</span></a>)</p></li> <li><p><code class="docutils literal notranslate"><span class="pre">xxx.xxx.xxx.[yyy-zzz]</span></code> (an <a class="reference internal" href="glossary.html#term-IP-Address"><span class="xref std std-term">IP Address</span></a> range)</p></li> <li><p><code class="docutils literal notranslate"><span class="pre">xxx.xxx.xxx.xxx/nn</span></code> (CIDR, Classless Inter-Domain Routing type <a class="reference internal" href="glossary.html#term-IP"><span class="xref std std-term">IP</span></a> addresses)</p></li> </ul> <p>But the following does not work:</p> <ul class="simple"> <li><p><code class="docutils literal notranslate"><span class="pre">xxx.xxx.xxx.xx[yyy-zzz]</span></code> (partial <a class="reference internal" href="glossary.html#term-IP"><span class="xref std std-term">IP</span></a> address range)</p></li> </ul> <p>For <a class="reference internal" href="glossary.html#term-IPv6"><span class="xref std std-term">IPv6</span></a> addresses, the following work:</p> <ul class="simple"> <li><p><code class="docutils literal notranslate"><span class="pre">xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx</span></code> (an exact <a class="reference internal" href="glossary.html#term-IPv6"><span class="xref std std-term">IPv6</span></a> address)</p></li> <li><p><code class="docutils literal notranslate"><span class="pre">xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:[yyyy-zzzz]</span></code> (an <a class="reference internal" href="glossary.html#term-IPv6"><span class="xref std std-term">IPv6</span></a> address range)</p></li> <li><p><code class="docutils literal notranslate"><span class="pre">xxxx:xxxx:xxxx:xxxx/nn</span></code> (CIDR, Classless Inter-Domain Routing type <a class="reference internal" href="glossary.html#term-IPv6"><span class="xref std std-term">IPv6</span></a> addresses)</p></li> </ul> <p>But the following does not work:</p> <ul class="simple"> <li><p><code class="docutils literal notranslate"><span class="pre">xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xx[yyy-zzz]</span></code> (partial <a class="reference internal" href="glossary.html#term-IPv6"><span class="xref std std-term">IPv6</span></a> address range)</p></li> </ul> <p>Examples:</p> <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>$cfg['Servers'][$i]['AllowDeny']['order'] = 'allow,deny'; $cfg['Servers'][$i]['AllowDeny']['rules'] = ['allow bob from all']; // Allow only 'bob' to connect from any host $cfg['Servers'][$i]['AllowDeny']['order'] = 'allow,deny'; $cfg['Servers'][$i]['AllowDeny']['rules'] = ['allow mary from 192.168.100.[50-100]']; // Allow only 'mary' to connect from host 192.168.100.50 through 192.168.100.100 $cfg['Servers'][$i]['AllowDeny']['order'] = 'allow,deny'; $cfg['Servers'][$i]['AllowDeny']['rules'] = ['allow % from 192.168.[5-6].10']; // Allow any user to connect from host 192.168.5.10 or 192.168.6.10 $cfg['Servers'][$i]['AllowDeny']['order'] = 'allow,deny'; $cfg['Servers'][$i]['AllowDeny']['rules'] = ['allow root from 192.168.5.50','allow % from 192.168.6.10']; // Allow any user to connect from 192.168.6.10, and additionally allow root to connect from 192.168.5.50 </pre></div> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_DisableIS"> <code class="sig-name descname">$cfg['Servers'][$i]['DisableIS']</code><a class="headerlink" href="#cfg_Servers_DisableIS" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Disable using <code class="docutils literal notranslate"><span class="pre">INFORMATION_SCHEMA</span></code> to retrieve information (use <code class="docutils literal notranslate"><span class="pre">SHOW</span></code> commands instead), because of speed issues when many databases are present.</p> <div class="admonition note"> <p class="admonition-title">Note</p> <p>Enabling this option might give you a big performance boost on older MySQL servers.</p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_SignonScript"> <code class="sig-name descname">$cfg['Servers'][$i]['SignonScript']</code><a class="headerlink" href="#cfg_Servers_SignonScript" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 3.5.0.</span></p> </div> <p>Name of PHP script to be sourced and executed to obtain login credentials. This is alternative approach to session based single signon. The script has to provide a function called <code class="docutils literal notranslate"><span class="pre">get_login_credentials</span></code> which returns list of username and password, accepting single parameter of existing username (can be empty). See <code class="file docutils literal notranslate"><span class="pre">examples/signon-script.php</span></code> for an example:</p> <div class="highlight-php notranslate"><div class="highlight"><pre><span></span><span class="o"><?</span><span class="nx">php</span> <span class="sd">/**</span> <span class="sd"> * Single signon for phpMyAdmin</span> <span class="sd"> *</span> <span class="sd"> * This is just example how to use script based single signon with</span> <span class="sd"> * phpMyAdmin, it is not intended to be perfect code and look, only</span> <span class="sd"> * shows how you can integrate this functionality in your application.</span> <span class="sd"> */</span> <span class="k">declare</span><span class="p">(</span><span class="nx">strict_types</span><span class="o">=</span><span class="mi">1</span><span class="p">);</span> <span class="c1">// phpcs:disable Squiz.Functions.GlobalFunction</span> <span class="sd">/**</span> <span class="sd"> * This function returns username and password.</span> <span class="sd"> *</span> <span class="sd"> * It can optionally use configured username as parameter.</span> <span class="sd"> *</span> <span class="sd"> * @param string $user User name</span> <span class="sd"> *</span> <span class="sd"> * @return array</span> <span class="sd"> */</span> <span class="k">function</span> <span class="nf">get_login_credentials</span><span class="p">(</span><span class="nv">$user</span><span class="p">)</span> <span class="p">{</span> <span class="cm">/* Optionally we can use passed username */</span> <span class="k">if</span> <span class="p">(</span><span class="o">!</span> <span class="k">empty</span><span class="p">(</span><span class="nv">$user</span><span class="p">))</span> <span class="p">{</span> <span class="k">return</span> <span class="p">[</span> <span class="nv">$user</span><span class="p">,</span> <span class="s1">'password'</span><span class="p">,</span> <span class="p">];</span> <span class="p">}</span> <span class="cm">/* Here we would retrieve the credentials */</span> <span class="k">return</span> <span class="p">[</span> <span class="s1">'root'</span><span class="p">,</span> <span class="s1">''</span><span class="p">,</span> <span class="p">];</span> <span class="p">}</span> </pre></div> </div> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="setup.html#auth-signon"><span class="std std-ref">Signon authentication mode</span></a></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_SignonSession"> <code class="sig-name descname">$cfg['Servers'][$i]['SignonSession']</code><a class="headerlink" href="#cfg_Servers_SignonSession" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>Name of session which will be used for signon authentication method. You should use something different than <code class="docutils literal notranslate"><span class="pre">phpMyAdmin</span></code>, because this is session which phpMyAdmin uses internally. Takes effect only if <span class="target" id="index-131"></span><a class="reference internal" href="#cfg_Servers_SignonScript"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['SignonScript']</span></code></a> is not configured.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="setup.html#auth-signon"><span class="std std-ref">Signon authentication mode</span></a></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_SignonCookieParams"> <code class="sig-name descname">$cfg['Servers'][$i]['SignonCookieParams']</code><a class="headerlink" href="#cfg_Servers_SignonCookieParams" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">array()</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 4.7.0.</span></p> </div> <p>An associative array of session cookie parameters of other authentication system. It is not needed if the other system doesn’t use session_set_cookie_params(). Keys should include ‘lifetime’, ‘path’, ‘domain’, ‘secure’ or ‘httponly’. Valid values are mentioned in <a class="reference external" href="https://www.php.net/manual/en/function.session-get-cookie-params.php">session_get_cookie_params</a>, they should be set to same values as the other application uses. Takes effect only if <span class="target" id="index-132"></span><a class="reference internal" href="#cfg_Servers_SignonScript"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['SignonScript']</span></code></a> is not configured.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="setup.html#auth-signon"><span class="std std-ref">Signon authentication mode</span></a></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_SignonURL"> <code class="sig-name descname">$cfg['Servers'][$i]['SignonURL']</code><a class="headerlink" href="#cfg_Servers_SignonURL" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p><a class="reference internal" href="glossary.html#term-URL"><span class="xref std std-term">URL</span></a> where user will be redirected to log in for signon authentication method. Should be absolute including protocol.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="setup.html#auth-signon"><span class="std std-ref">Signon authentication mode</span></a></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_LogoutURL"> <code class="sig-name descname">$cfg['Servers'][$i]['LogoutURL']</code><a class="headerlink" href="#cfg_Servers_LogoutURL" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p><a class="reference internal" href="glossary.html#term-URL"><span class="xref std std-term">URL</span></a> where user will be redirected after logout (doesn’t affect config authentication method). Should be absolute including protocol.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_hide_connection_errors"> <code class="sig-name descname">$cfg['Servers'][$i]['hide_connection_errors']</code><a class="headerlink" href="#cfg_Servers_hide_connection_errors" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 4.9.8.</span></p> </div> <p>Whether to show or hide detailed MySQL/MariaDB connection errors on the login page.</p> <div class="admonition note"> <p class="admonition-title">Note</p> <p>This error message can contain the target database server hostname or IP address, which may reveal information about your network to an attacker.</p> </div> </dd></dl> </div> <div class="section" id="generic-settings"> <h2>Generic settings<a class="headerlink" href="#generic-settings" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_DisableShortcutKeys"> <code class="sig-name descname">$cfg['DisableShortcutKeys']</code><a class="headerlink" href="#cfg_DisableShortcutKeys" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>You can disable phpMyAdmin shortcut keys by setting <span class="target" id="index-133"></span><a class="reference internal" href="#cfg_DisableShortcutKeys"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['DisableShortcutKeys']</span></code></a> to false.</p> </dd></dl> <dl class="config option"> <dt id="cfg_ServerDefault"> <code class="sig-name descname">$cfg['ServerDefault']</code><a class="headerlink" href="#cfg_ServerDefault" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>1</p> </dd> </dl> <p>If you have more than one server configured, you can set <span class="target" id="index-134"></span><a class="reference internal" href="#cfg_ServerDefault"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['ServerDefault']</span></code></a> to any one of them to autoconnect to that server when phpMyAdmin is started, or set it to 0 to be given a list of servers without logging in.</p> <p>If you have only one server configured, <span class="target" id="index-135"></span><a class="reference internal" href="#cfg_ServerDefault"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['ServerDefault']</span></code></a> MUST be set to that server.</p> </dd></dl> <dl class="config option"> <dt id="cfg_VersionCheck"> <code class="sig-name descname">$cfg['VersionCheck']</code><a class="headerlink" href="#cfg_VersionCheck" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Enables check for latest versions using JavaScript on the main phpMyAdmin page or by directly accessing <cite>index.php?route=/version-check</cite>.</p> <div class="admonition note"> <p class="admonition-title">Note</p> <p>This setting can be adjusted by your vendor.</p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_ProxyUrl"> <code class="sig-name descname">$cfg['ProxyUrl']</code><a class="headerlink" href="#cfg_ProxyUrl" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>The url of the proxy to be used when phpmyadmin needs to access the outside internet such as when retrieving the latest version info or submitting error reports. You need this if the server where phpMyAdmin is installed does not have direct access to the internet. The format is: “hostname:portnumber”</p> </dd></dl> <dl class="config option"> <dt id="cfg_ProxyUser"> <code class="sig-name descname">$cfg['ProxyUser']</code><a class="headerlink" href="#cfg_ProxyUser" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>The username for authenticating with the proxy. By default, no authentication is performed. If a username is supplied, Basic Authentication will be performed. No other types of authentication are currently supported.</p> </dd></dl> <dl class="config option"> <dt id="cfg_ProxyPass"> <code class="sig-name descname">$cfg['ProxyPass']</code><a class="headerlink" href="#cfg_ProxyPass" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>The password for authenticating with the proxy.</p> </dd></dl> <dl class="config option"> <dt id="cfg_MaxDbList"> <code class="sig-name descname">$cfg['MaxDbList']</code><a class="headerlink" href="#cfg_MaxDbList" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>100</p> </dd> </dl> <p>The maximum number of database names to be displayed in the main panel’s database list.</p> </dd></dl> <dl class="config option"> <dt id="cfg_MaxTableList"> <code class="sig-name descname">$cfg['MaxTableList']</code><a class="headerlink" href="#cfg_MaxTableList" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>250</p> </dd> </dl> <p>The maximum number of table names to be displayed in the main panel’s list (except on the Export page).</p> </dd></dl> <dl class="config option"> <dt id="cfg_ShowHint"> <code class="sig-name descname">$cfg['ShowHint']</code><a class="headerlink" href="#cfg_ShowHint" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Whether or not to show hints (for example, hints when hovering over table headers).</p> </dd></dl> <dl class="config option"> <dt id="cfg_MaxCharactersInDisplayedSQL"> <code class="sig-name descname">$cfg['MaxCharactersInDisplayedSQL']</code><a class="headerlink" href="#cfg_MaxCharactersInDisplayedSQL" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>1000</p> </dd> </dl> <p>The maximum number of characters when a <a class="reference internal" href="glossary.html#term-SQL"><span class="xref std std-term">SQL</span></a> query is displayed. The default limit of 1000 should be correct to avoid the display of tons of hexadecimal codes that represent BLOBs, but some users have real <a class="reference internal" href="glossary.html#term-SQL"><span class="xref std std-term">SQL</span></a> queries that are longer than 1000 characters. Also, if a query’s length exceeds this limit, this query is not saved in the history.</p> </dd></dl> <dl class="config option"> <dt id="cfg_PersistentConnections"> <code class="sig-name descname">$cfg['PersistentConnections']</code><a class="headerlink" href="#cfg_PersistentConnections" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Whether <a class="reference external" href="https://www.php.net/manual/en/features.persistent-connections.php">persistent connections</a> should be used or not.</p> </dd></dl> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference external" href="https://www.php.net/manual/en/mysqli.persistconns.php">mysqli documentation for persistent connections</a></p> </div> <dl class="config option"> <dt id="cfg_ForceSSL"> <code class="sig-name descname">$cfg['ForceSSL']</code><a class="headerlink" href="#cfg_ForceSSL" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <div class="deprecated"> <p><span class="versionmodified deprecated">Deprecated since version 4.6.0: </span>This setting is no longer available since phpMyAdmin 4.6.0. Please adjust your webserver instead.</p> </div> <p>Whether to force using https while accessing phpMyAdmin. In a reverse proxy setup, setting this to <code class="docutils literal notranslate"><span class="pre">true</span></code> is not supported.</p> <div class="admonition note"> <p class="admonition-title">Note</p> <p>In some setups (like separate SSL proxy or load balancer) you might have to set <span class="target" id="index-136"></span><a class="reference internal" href="#cfg_PmaAbsoluteUri"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['PmaAbsoluteUri']</span></code></a> for correct redirection.</p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_MysqlSslWarningSafeHosts"> <code class="sig-name descname">$cfg['MysqlSslWarningSafeHosts']</code><a class="headerlink" href="#cfg_MysqlSslWarningSafeHosts" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">['127.0.0.1',</span> <span class="pre">'localhost']</span></code></p> </dd> </dl> <p>This search is case-sensitive and will match the exact string only. If your setup does not use SSL but is safe because you are using a local connection or private network, you can add your hostname or <a class="reference internal" href="glossary.html#term-IP"><span class="xref std std-term">IP</span></a> to the list. You can also remove the default entries to only include yours.</p> <p>This check uses the value of <span class="target" id="index-137"></span><a class="reference internal" href="#cfg_Servers_host"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['host']</span></code></a>.</p> <div class="versionadded"> <p><span class="versionmodified added">New in version 5.1.0.</span></p> </div> <p>Example configuration</p> <div class="highlight-php notranslate"><div class="highlight"><pre><span></span><span class="nv">$cfg</span><span class="p">[</span><span class="s1">'MysqlSslWarningSafeHosts'</span><span class="p">]</span> <span class="o">=</span> <span class="p">[</span><span class="s1">'127.0.0.1'</span><span class="p">,</span> <span class="s1">'localhost'</span><span class="p">,</span> <span class="s1">'mariadb.local'</span><span class="p">];</span> </pre></div> </div> </dd></dl> <dl class="config option"> <dt id="cfg_ExecTimeLimit"> <code class="sig-name descname">$cfg['ExecTimeLimit']</code><a class="headerlink" href="#cfg_ExecTimeLimit" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer [number of seconds]</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>300</p> </dd> </dl> <p>Set the number of seconds a script is allowed to run. If seconds is set to zero, no time limit is imposed. This setting is used while importing/exporting dump files but has no effect when PHP is running in safe mode.</p> </dd></dl> <dl class="config option"> <dt id="cfg_SessionSavePath"> <code class="sig-name descname">$cfg['SessionSavePath']</code><a class="headerlink" href="#cfg_SessionSavePath" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>Path for storing session data (<a class="reference external" href="https://www.php.net/session_save_path">session_save_path PHP parameter</a>).</p> <div class="admonition warning"> <p class="admonition-title">Warning</p> <p>This folder should not be publicly accessible through the webserver, otherwise you risk leaking private data from your session.</p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_MemoryLimit"> <code class="sig-name descname">$cfg['MemoryLimit']</code><a class="headerlink" href="#cfg_MemoryLimit" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string [number of bytes]</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'-1'</span></code></p> </dd> </dl> <p>Set the number of bytes a script is allowed to allocate. If set to <code class="docutils literal notranslate"><span class="pre">'-1'</span></code>, no limit is imposed. If set to <code class="docutils literal notranslate"><span class="pre">'0'</span></code>, no change of the memory limit is attempted and the <code class="file docutils literal notranslate"><span class="pre">php.ini</span></code> <code class="docutils literal notranslate"><span class="pre">memory_limit</span></code> is used.</p> <p>This setting is used while importing/exporting dump files so you definitely don’t want to put here a too low value. It has no effect when PHP is running in safe mode.</p> <p>You can also use any string as in <code class="file docutils literal notranslate"><span class="pre">php.ini</span></code>, eg. ‘16M’. Ensure you don’t omit the suffix (16 means 16 bytes!)</p> </dd></dl> <dl class="config option"> <dt id="cfg_SkipLockedTables"> <code class="sig-name descname">$cfg['SkipLockedTables']</code><a class="headerlink" href="#cfg_SkipLockedTables" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Mark used tables and make it possible to show databases with locked tables (since MySQL 3.23.30).</p> </dd></dl> <dl class="config option"> <dt id="cfg_ShowSQL"> <code class="sig-name descname">$cfg['ShowSQL']</code><a class="headerlink" href="#cfg_ShowSQL" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Defines whether <a class="reference internal" href="glossary.html#term-SQL"><span class="xref std std-term">SQL</span></a> queries generated by phpMyAdmin should be displayed or not.</p> </dd></dl> <dl class="config option"> <dt id="cfg_RetainQueryBox"> <code class="sig-name descname">$cfg['RetainQueryBox']</code><a class="headerlink" href="#cfg_RetainQueryBox" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Defines whether the <a class="reference internal" href="glossary.html#term-SQL"><span class="xref std std-term">SQL</span></a> query box should be kept displayed after its submission.</p> </dd></dl> <dl class="config option"> <dt id="cfg_CodemirrorEnable"> <code class="sig-name descname">$cfg['CodemirrorEnable']</code><a class="headerlink" href="#cfg_CodemirrorEnable" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Defines whether to use a Javascript code editor for SQL query boxes. CodeMirror provides syntax highlighting and line numbers. However, middle-clicking for pasting the clipboard contents in some Linux distributions (such as Ubuntu) is not supported by all browsers.</p> </dd></dl> <dl class="config option"> <dt id="cfg_DefaultForeignKeyChecks"> <code class="sig-name descname">$cfg['DefaultForeignKeyChecks']</code><a class="headerlink" href="#cfg_DefaultForeignKeyChecks" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'default'</span></code></p> </dd> </dl> <p>Default value of the checkbox for foreign key checks, to disable/enable foreign key checks for certain queries. The possible values are <code class="docutils literal notranslate"><span class="pre">'default'</span></code>, <code class="docutils literal notranslate"><span class="pre">'enable'</span></code> or <code class="docutils literal notranslate"><span class="pre">'disable'</span></code>. If set to <code class="docutils literal notranslate"><span class="pre">'default'</span></code>, the value of the MySQL variable <code class="docutils literal notranslate"><span class="pre">FOREIGN_KEY_CHECKS</span></code> is used.</p> </dd></dl> <dl class="config option"> <dt id="cfg_AllowUserDropDatabase"> <code class="sig-name descname">$cfg['AllowUserDropDatabase']</code><a class="headerlink" href="#cfg_AllowUserDropDatabase" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <div class="admonition warning"> <p class="admonition-title">Warning</p> <p>This is not a security measure as there will be always ways to circumvent this. If you want to prohibit users from dropping databases, revoke their corresponding DROP privilege.</p> </div> <p>Defines whether normal users (non-administrator) are allowed to delete their own database or not. If set as false, the link <span class="guilabel">Drop Database</span> will not be shown, and even a <code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">DATABASE</span> <span class="pre">mydatabase</span></code> will be rejected. Quite practical for <a class="reference internal" href="glossary.html#term-ISP"><span class="xref std std-term">ISP</span></a> ‘s with many customers.</p> <p>This limitation of <a class="reference internal" href="glossary.html#term-SQL"><span class="xref std std-term">SQL</span></a> queries is not as strict as when using MySQL privileges. This is due to nature of <a class="reference internal" href="glossary.html#term-SQL"><span class="xref std std-term">SQL</span></a> queries which might be quite complicated. So this choice should be viewed as help to avoid accidental dropping rather than strict privilege limitation.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Confirm"> <code class="sig-name descname">$cfg['Confirm']</code><a class="headerlink" href="#cfg_Confirm" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Whether a warning (“Are your really sure…”) should be displayed when you’re about to lose data.</p> </dd></dl> <dl class="config option"> <dt id="cfg_UseDbSearch"> <code class="sig-name descname">$cfg['UseDbSearch']</code><a class="headerlink" href="#cfg_UseDbSearch" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Define whether the “search string inside database” is enabled or not.</p> </dd></dl> <dl class="config option"> <dt id="cfg_IgnoreMultiSubmitErrors"> <code class="sig-name descname">$cfg['IgnoreMultiSubmitErrors']</code><a class="headerlink" href="#cfg_IgnoreMultiSubmitErrors" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Define whether phpMyAdmin will continue executing a multi-query statement if one of the queries fails. Default is to abort execution.</p> </dd></dl> <dl class="config option"> <dt id="cfg_enable_drag_drop_import"> <code class="sig-name descname">$cfg['enable_drag_drop_import']</code><a class="headerlink" href="#cfg_enable_drag_drop_import" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Whether or not the drag and drop import feature is enabled. When enabled, a user can drag a file in to their browser and phpMyAdmin will attempt to import the file.</p> </dd></dl> <dl class="config option"> <dt id="cfg_URLQueryEncryption"> <code class="sig-name descname">$cfg['URLQueryEncryption']</code><a class="headerlink" href="#cfg_URLQueryEncryption" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 4.9.8.</span></p> </div> <p>Define whether phpMyAdmin will encrypt sensitive data (like database name and table name) from the URL query string. Default is to not encrypt the URL query string.</p> </dd></dl> <dl class="config option"> <dt id="cfg_URLQueryEncryptionSecretKey"> <code class="sig-name descname">$cfg['URLQueryEncryptionSecretKey']</code><a class="headerlink" href="#cfg_URLQueryEncryptionSecretKey" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 4.9.8.</span></p> </div> <p>A secret key used to encrypt/decrypt the URL query string. Should be 32 bytes long.</p> </dd></dl> </div> <div class="section" id="cookie-authentication-options"> <h2>Cookie authentication options<a class="headerlink" href="#cookie-authentication-options" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_blowfish_secret"> <code class="sig-name descname">$cfg['blowfish_secret']</code><a class="headerlink" href="#cfg_blowfish_secret" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>The “cookie” auth_type uses AES algorithm to encrypt the password. If you are using the “cookie” auth_type, enter here a random passphrase of your choice. It will be used internally by the AES algorithm: you won’t be prompted for this passphrase.</p> <p>The secret should be 32 characters long. Using shorter will lead to weaker security of encrypted cookies, using longer will cause no harm.</p> <div class="admonition note"> <p class="admonition-title">Note</p> <p>The configuration is called blowfish_secret for historical reasons as Blowfish algorithm was originally used to do the encryption.</p> </div> <div class="versionchanged"> <p><span class="versionmodified changed">Changed in version 3.1.0: </span>Since version 3.1.0 phpMyAdmin can generate this on the fly, but it makes a bit weaker security as this generated secret is stored in session and furthermore it makes impossible to recall user name from cookie.</p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_CookieSameSite"> <code class="sig-name descname">$cfg['CookieSameSite']</code><a class="headerlink" href="#cfg_CookieSameSite" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'Strict'</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 5.1.0.</span></p> </div> <p>It sets SameSite attribute of the Set-Cookie <a class="reference internal" href="glossary.html#term-HTTP"><span class="xref std std-term">HTTP</span></a> response header. Valid values are:</p> <ul class="simple"> <li><p><code class="docutils literal notranslate"><span class="pre">Lax</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">Strict</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">None</span></code></p></li> </ul> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference external" href="https://tools.ietf.org/id/draft-ietf-httpbis-rfc6265bis-03.html#rfc.section.5.3.7">rfc6265 bis</a></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_LoginCookieRecall"> <code class="sig-name descname">$cfg['LoginCookieRecall']</code><a class="headerlink" href="#cfg_LoginCookieRecall" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Define whether the previous login should be recalled or not in cookie authentication mode.</p> <p>This is automatically disabled if you do not have configured <span class="target" id="index-138"></span><a class="reference internal" href="#cfg_blowfish_secret"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['blowfish_secret']</span></code></a>.</p> </dd></dl> <dl class="config option"> <dt id="cfg_LoginCookieValidity"> <code class="sig-name descname">$cfg['LoginCookieValidity']</code><a class="headerlink" href="#cfg_LoginCookieValidity" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer [number of seconds]</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>1440</p> </dd> </dl> <p>Define how long a login cookie is valid. Please note that php configuration option <a class="reference external" href="https://www.php.net/manual/en/session.configuration.php#ini.session.gc-maxlifetime">session.gc_maxlifetime</a> might limit session validity and if the session is lost, the login cookie is also invalidated. So it is a good idea to set <code class="docutils literal notranslate"><span class="pre">session.gc_maxlifetime</span></code> at least to the same value of <span class="target" id="index-139"></span><a class="reference internal" href="#cfg_LoginCookieValidity"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['LoginCookieValidity']</span></code></a>.</p> </dd></dl> <dl class="config option"> <dt id="cfg_LoginCookieStore"> <code class="sig-name descname">$cfg['LoginCookieStore']</code><a class="headerlink" href="#cfg_LoginCookieStore" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer [number of seconds]</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>0</p> </dd> </dl> <p>Define how long login cookie should be stored in browser. Default 0 means that it will be kept for existing session. This is recommended for not trusted environments.</p> </dd></dl> <dl class="config option"> <dt id="cfg_LoginCookieDeleteAll"> <code class="sig-name descname">$cfg['LoginCookieDeleteAll']</code><a class="headerlink" href="#cfg_LoginCookieDeleteAll" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>If enabled (default), logout deletes cookies for all servers, otherwise only for current one. Setting this to false makes it easy to forget to log out from other server, when you are using more of them.</p> </dd></dl> <span class="target" id="allowarbitraryserver"></span><dl class="config option"> <dt id="cfg_AllowArbitraryServer"> <code class="sig-name descname">$cfg['AllowArbitraryServer']</code><a class="headerlink" href="#cfg_AllowArbitraryServer" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>If enabled, allows you to log in to arbitrary servers using cookie authentication.</p> <div class="admonition note"> <p class="admonition-title">Note</p> <p>Please use this carefully, as this may allow users access to MySQL servers behind the firewall where your <a class="reference internal" href="glossary.html#term-HTTP"><span class="xref std std-term">HTTP</span></a> server is placed. See also <span class="target" id="index-140"></span><a class="reference internal" href="#cfg_ArbitraryServerRegexp"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['ArbitraryServerRegexp']</span></code></a>.</p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_ArbitraryServerRegexp"> <code class="sig-name descname">$cfg['ArbitraryServerRegexp']</code><a class="headerlink" href="#cfg_ArbitraryServerRegexp" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>Restricts the MySQL servers to which the user can log in when <span class="target" id="index-141"></span><a class="reference internal" href="#cfg_AllowArbitraryServer"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['AllowArbitraryServer']</span></code></a> is enabled by matching the <a class="reference internal" href="glossary.html#term-IP"><span class="xref std std-term">IP</span></a> or the hostname of the MySQL server to the given regular expression. The regular expression must be enclosed with a delimiter character.</p> <p>It is recommended to include start and end symbols in the regular expression, so that you can avoid partial matches on the string.</p> <p><strong>Examples:</strong></p> <div class="highlight-php notranslate"><div class="highlight"><pre><span></span><span class="c1">// Allow connection to three listed servers:</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'ArbitraryServerRegexp'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'/^(server|another|yetdifferent)$/'</span><span class="p">;</span> <span class="c1">// Allow connection to range of IP addresses:</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'ArbitraryServerRegexp'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'@^192\.168\.0\.[0-9]{1,}$@'</span><span class="p">;</span> <span class="c1">// Allow connection to server name ending with -mysql:</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'ArbitraryServerRegexp'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'@^[^:]\-mysql$@'</span><span class="p">;</span> </pre></div> </div> <div class="admonition note"> <p class="admonition-title">Note</p> <p>The whole server name is matched, it can include port as well. Due to way MySQL is permissive in connection parameters, it is possible to use connection strings as <code class="docutils literal notranslate"><span class="pre">`server:3306-mysql`</span></code>. This can be used to bypass regular expression by the suffix, while connecting to another server.</p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_CaptchaMethod"> <code class="sig-name descname">$cfg['CaptchaMethod']</code><a class="headerlink" href="#cfg_CaptchaMethod" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'invisible'</span></code></p> </dd> </dl> <p>Valid values are:</p> <ul class="simple"> <li><p><code class="docutils literal notranslate"><span class="pre">'invisible'</span></code> Use an invisible captcha checking method;</p></li> <li><p><code class="docutils literal notranslate"><span class="pre">'checkbox'</span></code> Use a checkbox to confirm the user is not a robot.</p></li> </ul> <div class="versionadded"> <p><span class="versionmodified added">New in version 5.0.3.</span></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_CaptchaApi"> <code class="sig-name descname">$cfg['CaptchaApi']</code><a class="headerlink" href="#cfg_CaptchaApi" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'https://www.google.com/recaptcha/api.js'</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 5.1.0.</span></p> </div> <p>The URL for the reCaptcha v2 service’s API, either Google’s or a compatible one.</p> </dd></dl> <dl class="config option"> <dt id="cfg_CaptchaCsp"> <code class="sig-name descname">$cfg['CaptchaCsp']</code><a class="headerlink" href="#cfg_CaptchaCsp" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'https://apis.google.com</span> <span class="pre">https://www.google.com/recaptcha/</span> <span class="pre">https://www.gstatic.com/recaptcha/</span> <span class="pre">https://ssl.gstatic.com/'</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 5.1.0.</span></p> </div> <p>The Content-Security-Policy snippet (URLs from which to allow embedded content) for the reCaptcha v2 service, either Google’s or a compatible one.</p> </dd></dl> <dl class="config option"> <dt id="cfg_CaptchaRequestParam"> <code class="sig-name descname">$cfg['CaptchaRequestParam']</code><a class="headerlink" href="#cfg_CaptchaRequestParam" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'g-recaptcha'</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 5.1.0.</span></p> </div> <p>The request parameter used for the reCaptcha v2 service.</p> </dd></dl> <dl class="config option"> <dt id="cfg_CaptchaResponseParam"> <code class="sig-name descname">$cfg['CaptchaResponseParam']</code><a class="headerlink" href="#cfg_CaptchaResponseParam" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'g-recaptcha-response'</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 5.1.0.</span></p> </div> <p>The response parameter used for the reCaptcha v2 service.</p> </dd></dl> <dl class="config option"> <dt id="cfg_CaptchaLoginPublicKey"> <code class="sig-name descname">$cfg['CaptchaLoginPublicKey']</code><a class="headerlink" href="#cfg_CaptchaLoginPublicKey" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>The public key for the reCaptcha service that can be obtained from the “Admin Console” on <a class="reference external" href="https://www.google.com/recaptcha/about/">https://www.google.com/recaptcha/about/</a>.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><<a class="reference external" href="https://developers.google.com/recaptcha/docs/v3">https://developers.google.com/recaptcha/docs/v3</a>></p> </div> <p>reCaptcha will be then used in <a class="reference internal" href="setup.html#cookie"><span class="std std-ref">Cookie authentication mode</span></a>.</p> <div class="versionadded"> <p><span class="versionmodified added">New in version 4.1.0.</span></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_CaptchaLoginPrivateKey"> <code class="sig-name descname">$cfg['CaptchaLoginPrivateKey']</code><a class="headerlink" href="#cfg_CaptchaLoginPrivateKey" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>The private key for the reCaptcha service that can be obtained from the “Admin Console” on <a class="reference external" href="https://www.google.com/recaptcha/about/">https://www.google.com/recaptcha/about/</a>.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><<a class="reference external" href="https://developers.google.com/recaptcha/docs/v3">https://developers.google.com/recaptcha/docs/v3</a>></p> </div> <p>reCaptcha will be then used in <a class="reference internal" href="setup.html#cookie"><span class="std std-ref">Cookie authentication mode</span></a>.</p> <div class="versionadded"> <p><span class="versionmodified added">New in version 4.1.0.</span></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_CaptchaSiteVerifyURL"> <code class="sig-name descname">$cfg['CaptchaSiteVerifyURL']</code><a class="headerlink" href="#cfg_CaptchaSiteVerifyURL" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>The URL for the reCaptcha service to do siteverify action.</p> <p>reCaptcha will be then used in <a class="reference internal" href="setup.html#cookie"><span class="std std-ref">Cookie authentication mode</span></a>.</p> <div class="versionadded"> <p><span class="versionmodified added">New in version 5.1.0.</span></p> </div> </dd></dl> </div> <div class="section" id="navigation-panel-setup"> <h2>Navigation panel setup<a class="headerlink" href="#navigation-panel-setup" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_ShowDatabasesNavigationAsTree"> <code class="sig-name descname">$cfg['ShowDatabasesNavigationAsTree']</code><a class="headerlink" href="#cfg_ShowDatabasesNavigationAsTree" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>In the navigation panel, replaces the database tree with a selector</p> </dd></dl> <dl class="config option"> <dt id="cfg_FirstLevelNavigationItems"> <code class="sig-name descname">$cfg['FirstLevelNavigationItems']</code><a class="headerlink" href="#cfg_FirstLevelNavigationItems" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>100</p> </dd> </dl> <p>The number of first level databases that can be displayed on each page of navigation tree.</p> </dd></dl> <dl class="config option"> <dt id="cfg_MaxNavigationItems"> <code class="sig-name descname">$cfg['MaxNavigationItems']</code><a class="headerlink" href="#cfg_MaxNavigationItems" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>50</p> </dd> </dl> <p>The number of items (tables, columns, indexes) that can be displayed on each page of the navigation tree.</p> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationTreeEnableGrouping"> <code class="sig-name descname">$cfg['NavigationTreeEnableGrouping']</code><a class="headerlink" href="#cfg_NavigationTreeEnableGrouping" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Defines whether to group the databases based on a common prefix in their name <span class="target" id="index-142"></span><a class="reference internal" href="#cfg_NavigationTreeDbSeparator"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['NavigationTreeDbSeparator']</span></code></a>.</p> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationTreeDbSeparator"> <code class="sig-name descname">$cfg['NavigationTreeDbSeparator']</code><a class="headerlink" href="#cfg_NavigationTreeDbSeparator" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'_'</span></code></p> </dd> </dl> <p>The string used to separate the parts of the database name when showing them in a tree.</p> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationTreeTableSeparator"> <code class="sig-name descname">$cfg['NavigationTreeTableSeparator']</code><a class="headerlink" href="#cfg_NavigationTreeTableSeparator" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'__'</span></code></p> </dd> </dl> <p>Defines a string to be used to nest table spaces. This means if you have tables like <code class="docutils literal notranslate"><span class="pre">first__second__third</span></code> this will be shown as a three-level hierarchy like: first > second > third. If set to false or empty, the feature is disabled. NOTE: You should not use this separator at the beginning or end of a table name or multiple times after another without any other characters in between.</p> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationTreeTableLevel"> <code class="sig-name descname">$cfg['NavigationTreeTableLevel']</code><a class="headerlink" href="#cfg_NavigationTreeTableLevel" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>1</p> </dd> </dl> <p>Defines how many sublevels should be displayed when splitting up tables by the above separator.</p> </dd></dl> <dl class="config option"> <dt id="cfg_NumRecentTables"> <code class="sig-name descname">$cfg['NumRecentTables']</code><a class="headerlink" href="#cfg_NumRecentTables" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>10</p> </dd> </dl> <p>The maximum number of recently used tables shown in the navigation panel. Set this to 0 (zero) to disable the listing of recent tables.</p> </dd></dl> <dl class="config option"> <dt id="cfg_NumFavoriteTables"> <code class="sig-name descname">$cfg['NumFavoriteTables']</code><a class="headerlink" href="#cfg_NumFavoriteTables" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>10</p> </dd> </dl> <p>The maximum number of favorite tables shown in the navigation panel. Set this to 0 (zero) to disable the listing of favorite tables.</p> </dd></dl> <dl class="config option"> <dt id="cfg_ZeroConf"> <code class="sig-name descname">$cfg['ZeroConf']</code><a class="headerlink" href="#cfg_ZeroConf" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Enables Zero Configuration mode in which the user will be offered a choice to create phpMyAdmin configuration storage in the current database or use the existing one, if already present.</p> <p>This setting has no effect if the phpMyAdmin configuration storage database is properly created and the related configuration directives (such as <span class="target" id="index-143"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and so on) are configured.</p> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationLinkWithMainPanel"> <code class="sig-name descname">$cfg['NavigationLinkWithMainPanel']</code><a class="headerlink" href="#cfg_NavigationLinkWithMainPanel" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Defines whether or not to link with main panel by highlighting the current database or table.</p> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationDisplayLogo"> <code class="sig-name descname">$cfg['NavigationDisplayLogo']</code><a class="headerlink" href="#cfg_NavigationDisplayLogo" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Defines whether or not to display the phpMyAdmin logo at the top of the navigation panel.</p> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationLogoLink"> <code class="sig-name descname">$cfg['NavigationLogoLink']</code><a class="headerlink" href="#cfg_NavigationLogoLink" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'index.php'</span></code></p> </dd> </dl> <p>Enter the <a class="reference internal" href="glossary.html#term-URL"><span class="xref std std-term">URL</span></a> where the logo in the navigation panel will point to. For use especially with self made theme which changes this. For relative/internal URLs, you need to have leading `` ./ `` or trailing characters `` ? `` such as <code class="docutils literal notranslate"><span class="pre">'./index.php?route=/server/sql?'</span></code>. For external URLs, you should include URL protocol schemes (<code class="docutils literal notranslate"><span class="pre">http</span></code> or <code class="docutils literal notranslate"><span class="pre">https</span></code>) with absolute URLs.</p> <p>You may want to make the link open in a new browser tab, for that you need to use <span class="target" id="index-144"></span><a class="reference internal" href="#cfg_NavigationLogoLinkWindow"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['NavigationLogoLinkWindow']</span></code></a></p> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationLogoLinkWindow"> <code class="sig-name descname">$cfg['NavigationLogoLinkWindow']</code><a class="headerlink" href="#cfg_NavigationLogoLinkWindow" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'main'</span></code></p> </dd> </dl> <p>Whether to open the linked page in the main window (<code class="docutils literal notranslate"><span class="pre">main</span></code>) or in a new one (<code class="docutils literal notranslate"><span class="pre">new</span></code>). Note: use <code class="docutils literal notranslate"><span class="pre">new</span></code> if you are linking to <code class="docutils literal notranslate"><span class="pre">phpmyadmin.net</span></code>.</p> <p>To open the link in the main window you will need to add the value of <span class="target" id="index-145"></span><a class="reference internal" href="#cfg_NavigationLogoLink"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['NavigationLogoLink']</span></code></a> to <span class="target" id="index-146"></span><a class="reference internal" href="#cfg_CSPAllow"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['CSPAllow']</span></code></a> because of the <a class="reference internal" href="glossary.html#term-Content-Security-Policy"><span class="xref std std-term">Content Security Policy</span></a> header.</p> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationTreeDisplayItemFilterMinimum"> <code class="sig-name descname">$cfg['NavigationTreeDisplayItemFilterMinimum']</code><a class="headerlink" href="#cfg_NavigationTreeDisplayItemFilterMinimum" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>30</p> </dd> </dl> <p>Defines the minimum number of items (tables, views, routines and events) to display a JavaScript filter box above the list of items in the navigation tree.</p> <p>To disable the filter completely some high number can be used (e.g. 9999)</p> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationTreeDisplayDbFilterMinimum"> <code class="sig-name descname">$cfg['NavigationTreeDisplayDbFilterMinimum']</code><a class="headerlink" href="#cfg_NavigationTreeDisplayDbFilterMinimum" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>30</p> </dd> </dl> <p>Defines the minimum number of databases to display a JavaScript filter box above the list of databases in the navigation tree.</p> <p>To disable the filter completely some high number can be used (e.g. 9999)</p> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationDisplayServers"> <code class="sig-name descname">$cfg['NavigationDisplayServers']</code><a class="headerlink" href="#cfg_NavigationDisplayServers" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Defines whether or not to display a server choice at the top of the navigation panel.</p> </dd></dl> <dl class="config option"> <dt id="cfg_DisplayServersList"> <code class="sig-name descname">$cfg['DisplayServersList']</code><a class="headerlink" href="#cfg_DisplayServersList" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Defines whether to display this server choice as links instead of in a drop-down.</p> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationTreeDefaultTabTable"> <code class="sig-name descname">$cfg['NavigationTreeDefaultTabTable']</code><a class="headerlink" href="#cfg_NavigationTreeDefaultTabTable" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'structure'</span></code></p> </dd> </dl> <p>Defines the tab displayed by default when clicking the small icon next to each table name in the navigation panel. The possible values are the localized equivalent of:</p> <ul class="simple"> <li><p><code class="docutils literal notranslate"><span class="pre">structure</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">sql</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">search</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">insert</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">browse</span></code></p></li> </ul> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationTreeDefaultTabTable2"> <code class="sig-name descname">$cfg['NavigationTreeDefaultTabTable2']</code><a class="headerlink" href="#cfg_NavigationTreeDefaultTabTable2" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>null</p> </dd> </dl> <p>Defines the tab displayed by default when clicking the second small icon next to each table name in the navigation panel. The possible values are the localized equivalent of:</p> <ul class="simple"> <li><p><code class="docutils literal notranslate"><span class="pre">(empty)</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">structure</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">sql</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">search</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">insert</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">browse</span></code></p></li> </ul> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationTreeEnableExpansion"> <code class="sig-name descname">$cfg['NavigationTreeEnableExpansion']</code><a class="headerlink" href="#cfg_NavigationTreeEnableExpansion" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Whether to offer the possibility of tree expansion in the navigation panel.</p> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationTreeShowTables"> <code class="sig-name descname">$cfg['NavigationTreeShowTables']</code><a class="headerlink" href="#cfg_NavigationTreeShowTables" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Whether to show tables under database in the navigation panel.</p> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationTreeShowViews"> <code class="sig-name descname">$cfg['NavigationTreeShowViews']</code><a class="headerlink" href="#cfg_NavigationTreeShowViews" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Whether to show views under database in the navigation panel.</p> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationTreeShowFunctions"> <code class="sig-name descname">$cfg['NavigationTreeShowFunctions']</code><a class="headerlink" href="#cfg_NavigationTreeShowFunctions" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Whether to show functions under database in the navigation panel.</p> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationTreeShowProcedures"> <code class="sig-name descname">$cfg['NavigationTreeShowProcedures']</code><a class="headerlink" href="#cfg_NavigationTreeShowProcedures" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Whether to show procedures under database in the navigation panel.</p> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationTreeShowEvents"> <code class="sig-name descname">$cfg['NavigationTreeShowEvents']</code><a class="headerlink" href="#cfg_NavigationTreeShowEvents" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Whether to show events under database in the navigation panel.</p> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationWidth"> <code class="sig-name descname">$cfg['NavigationWidth']</code><a class="headerlink" href="#cfg_NavigationWidth" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>240</p> </dd> </dl> <p>Navigation panel width, set to 0 to collapse it by default.</p> </dd></dl> </div> <div class="section" id="main-panel"> <h2>Main panel<a class="headerlink" href="#main-panel" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_ShowStats"> <code class="sig-name descname">$cfg['ShowStats']</code><a class="headerlink" href="#cfg_ShowStats" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Defines whether or not to display space usage and statistics about databases and tables. Note that statistics requires at least MySQL 3.23.3 and that, at this date, MySQL doesn’t return such information for Berkeley DB tables.</p> </dd></dl> <dl class="config option"> <dt id="cfg_ShowServerInfo"> <code class="sig-name descname">$cfg['ShowServerInfo']</code><a class="headerlink" href="#cfg_ShowServerInfo" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Defines whether to display detailed server information on main page. You can additionally hide more information by using <span class="target" id="index-147"></span><a class="reference internal" href="#cfg_Servers_verbose"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['verbose']</span></code></a>.</p> </dd></dl> <dl class="config option"> <dt id="cfg_ShowPhpInfo"> <code class="sig-name descname">$cfg['ShowPhpInfo']</code><a class="headerlink" href="#cfg_ShowPhpInfo" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Defines whether to display the <span class="guilabel">PHP information</span> or not at the starting main (right) frame.</p> <p>Please note that to block the usage of <code class="docutils literal notranslate"><span class="pre">phpinfo()</span></code> in scripts, you have to put this in your <code class="file docutils literal notranslate"><span class="pre">php.ini</span></code>:</p> <div class="highlight-ini notranslate"><div class="highlight"><pre><span></span><span class="na">disable_functions</span> <span class="o">=</span> <span class="s">phpinfo()</span> </pre></div> </div> <div class="admonition warning"> <p class="admonition-title">Warning</p> <p>Enabling phpinfo page will leak quite a lot of information about server setup. Is it not recommended to enable this on shared installations.</p> <p>This might also make easier some remote attacks on your installations, so enable this only when needed.</p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_ShowChgPassword"> <code class="sig-name descname">$cfg['ShowChgPassword']</code><a class="headerlink" href="#cfg_ShowChgPassword" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Defines whether to display the <span class="guilabel">Change password</span> link or not at the starting main (right) frame. This setting does not check MySQL commands entered directly.</p> <p>Please note that enabling the <span class="guilabel">Change password</span> link has no effect with config authentication mode: because of the hard coded password value in the configuration file, end users can’t be allowed to change their passwords.</p> </dd></dl> <dl class="config option"> <dt id="cfg_ShowCreateDb"> <code class="sig-name descname">$cfg['ShowCreateDb']</code><a class="headerlink" href="#cfg_ShowCreateDb" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Defines whether to display the form for creating database or not at the starting main (right) frame. This setting does not check MySQL commands entered directly.</p> </dd></dl> <dl class="config option"> <dt id="cfg_ShowGitRevision"> <code class="sig-name descname">$cfg['ShowGitRevision']</code><a class="headerlink" href="#cfg_ShowGitRevision" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Defines whether to display information about the current Git revision (if applicable) on the main panel.</p> </dd></dl> <dl class="config option"> <dt id="cfg_MysqlMinVersion"> <code class="sig-name descname">$cfg['MysqlMinVersion']</code><a class="headerlink" href="#cfg_MysqlMinVersion" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> </dl> <p>Defines the minimum supported MySQL version. The default is chosen by the phpMyAdmin team; however this directive was asked by a developer of the Plesk control panel to ease integration with older MySQL servers (where most of the phpMyAdmin features work).</p> </dd></dl> </div> <div class="section" id="database-structure"> <h2>Database structure<a class="headerlink" href="#database-structure" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_ShowDbStructureCreation"> <code class="sig-name descname">$cfg['ShowDbStructureCreation']</code><a class="headerlink" href="#cfg_ShowDbStructureCreation" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Defines whether the database structure page (tables list) has a “Creation” column that displays when each table was created.</p> </dd></dl> <dl class="config option"> <dt id="cfg_ShowDbStructureLastUpdate"> <code class="sig-name descname">$cfg['ShowDbStructureLastUpdate']</code><a class="headerlink" href="#cfg_ShowDbStructureLastUpdate" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Defines whether the database structure page (tables list) has a “Last update” column that displays when each table was last updated.</p> </dd></dl> <dl class="config option"> <dt id="cfg_ShowDbStructureLastCheck"> <code class="sig-name descname">$cfg['ShowDbStructureLastCheck']</code><a class="headerlink" href="#cfg_ShowDbStructureLastCheck" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Defines whether the database structure page (tables list) has a “Last check” column that displays when each table was last checked.</p> </dd></dl> <dl class="config option"> <dt id="cfg_HideStructureActions"> <code class="sig-name descname">$cfg['HideStructureActions']</code><a class="headerlink" href="#cfg_HideStructureActions" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Defines whether the table structure actions are hidden under a “<span class="guilabel">More</span>” drop-down.</p> </dd></dl> <dl class="config option"> <dt id="cfg_ShowColumnComments"> <code class="sig-name descname">$cfg['ShowColumnComments']</code><a class="headerlink" href="#cfg_ShowColumnComments" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Defines whether to show column comments as a column in the table structure view.</p> </dd></dl> </div> <div class="section" id="browse-mode"> <h2>Browse mode<a class="headerlink" href="#browse-mode" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_TableNavigationLinksMode"> <code class="sig-name descname">$cfg['TableNavigationLinksMode']</code><a class="headerlink" href="#cfg_TableNavigationLinksMode" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'icons'</span></code></p> </dd> </dl> <p>Defines whether the table navigation links contain <code class="docutils literal notranslate"><span class="pre">'icons'</span></code>, <code class="docutils literal notranslate"><span class="pre">'text'</span></code> or <code class="docutils literal notranslate"><span class="pre">'both'</span></code>.</p> </dd></dl> <dl class="config option"> <dt id="cfg_ActionLinksMode"> <code class="sig-name descname">$cfg['ActionLinksMode']</code><a class="headerlink" href="#cfg_ActionLinksMode" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'both'</span></code></p> </dd> </dl> <p>If set to <code class="docutils literal notranslate"><span class="pre">icons</span></code>, will display icons instead of text for db and table properties links (like <span class="guilabel">Browse</span>, <span class="guilabel">Select</span>, <span class="guilabel">Insert</span>, …). Can be set to <code class="docutils literal notranslate"><span class="pre">'both'</span></code> if you want icons AND text. When set to <code class="docutils literal notranslate"><span class="pre">text</span></code>, will only show text.</p> </dd></dl> <dl class="config option"> <dt id="cfg_RowActionType"> <code class="sig-name descname">$cfg['RowActionType']</code><a class="headerlink" href="#cfg_RowActionType" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'both'</span></code></p> </dd> </dl> <p>Whether to display icons or text or both icons and text in table row action segment. Value can be either of <code class="docutils literal notranslate"><span class="pre">'icons'</span></code>, <code class="docutils literal notranslate"><span class="pre">'text'</span></code> or <code class="docutils literal notranslate"><span class="pre">'both'</span></code>.</p> </dd></dl> <dl class="config option"> <dt id="cfg_ShowAll"> <code class="sig-name descname">$cfg['ShowAll']</code><a class="headerlink" href="#cfg_ShowAll" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Defines whether a user should be displayed a “<span class="guilabel">Show all</span>” button in browse mode or not in all cases. By default it is shown only on small tables (less than 500 rows) to avoid performance issues while getting too many rows.</p> </dd></dl> <dl class="config option"> <dt id="cfg_MaxRows"> <code class="sig-name descname">$cfg['MaxRows']</code><a class="headerlink" href="#cfg_MaxRows" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>25</p> </dd> </dl> <p>Number of rows displayed when browsing a result set and no LIMIT clause is used. If the result set contains more rows, “<span class="guilabel">Previous</span>” and “<span class="guilabel">Next</span>” links will be shown. Possible values: 25,50,100,250,500.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Order"> <code class="sig-name descname">$cfg['Order']</code><a class="headerlink" href="#cfg_Order" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'SMART'</span></code></p> </dd> </dl> <p>Defines whether columns are displayed in ascending (<code class="docutils literal notranslate"><span class="pre">ASC</span></code>) order, in descending (<code class="docutils literal notranslate"><span class="pre">DESC</span></code>) order or in a “smart” (<code class="docutils literal notranslate"><span class="pre">SMART</span></code>) order - I.E. descending order for columns of type TIME, DATE, DATETIME and TIMESTAMP, ascending order else- by default.</p> <div class="versionchanged"> <p><span class="versionmodified changed">Changed in version 3.4.0: </span>Since phpMyAdmin 3.4.0 the default value is <code class="docutils literal notranslate"><span class="pre">'SMART'</span></code>.</p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_GridEditing"> <code class="sig-name descname">$cfg['GridEditing']</code><a class="headerlink" href="#cfg_GridEditing" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'double-click'</span></code></p> </dd> </dl> <p>Defines which action (<code class="docutils literal notranslate"><span class="pre">double-click</span></code> or <code class="docutils literal notranslate"><span class="pre">click</span></code>) triggers grid editing. Can be deactivated with the <code class="docutils literal notranslate"><span class="pre">disabled</span></code> value.</p> </dd></dl> <dl class="config option"> <dt id="cfg_RelationalDisplay"> <code class="sig-name descname">$cfg['RelationalDisplay']</code><a class="headerlink" href="#cfg_RelationalDisplay" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'K'</span></code></p> </dd> </dl> <p>Defines the initial behavior for Options > Relational. <code class="docutils literal notranslate"><span class="pre">K</span></code>, which is the default, displays the key while <code class="docutils literal notranslate"><span class="pre">D</span></code> shows the display column.</p> </dd></dl> <dl class="config option"> <dt id="cfg_SaveCellsAtOnce"> <code class="sig-name descname">$cfg['SaveCellsAtOnce']</code><a class="headerlink" href="#cfg_SaveCellsAtOnce" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Defines whether or not to save all edited cells at once for grid editing.</p> </dd></dl> </div> <div class="section" id="editing-mode"> <h2>Editing mode<a class="headerlink" href="#editing-mode" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_ProtectBinary"> <code class="sig-name descname">$cfg['ProtectBinary']</code><a class="headerlink" href="#cfg_ProtectBinary" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean or string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'blob'</span></code></p> </dd> </dl> <p>Defines whether <code class="docutils literal notranslate"><span class="pre">BLOB</span></code> or <code class="docutils literal notranslate"><span class="pre">BINARY</span></code> columns are protected from editing when browsing a table’s content. Valid values are:</p> <ul class="simple"> <li><p><code class="docutils literal notranslate"><span class="pre">false</span></code> to allow editing of all columns;</p></li> <li><p><code class="docutils literal notranslate"><span class="pre">'blob'</span></code> to allow editing of all columns except <code class="docutils literal notranslate"><span class="pre">BLOBS</span></code>;</p></li> <li><p><code class="docutils literal notranslate"><span class="pre">'noblob'</span></code> to disallow editing of all columns except <code class="docutils literal notranslate"><span class="pre">BLOBS</span></code> (the opposite of <code class="docutils literal notranslate"><span class="pre">'blob'</span></code>);</p></li> <li><p><code class="docutils literal notranslate"><span class="pre">'all'</span></code> to disallow editing of all <code class="docutils literal notranslate"><span class="pre">BINARY</span></code> or <code class="docutils literal notranslate"><span class="pre">BLOB</span></code> columns.</p></li> </ul> </dd></dl> <dl class="config option"> <dt id="cfg_ShowFunctionFields"> <code class="sig-name descname">$cfg['ShowFunctionFields']</code><a class="headerlink" href="#cfg_ShowFunctionFields" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Defines whether or not MySQL functions fields should be initially displayed in edit/insert mode. Since version 2.10, the user can toggle this setting from the interface.</p> </dd></dl> <dl class="config option"> <dt id="cfg_ShowFieldTypesInDataEditView"> <code class="sig-name descname">$cfg['ShowFieldTypesInDataEditView']</code><a class="headerlink" href="#cfg_ShowFieldTypesInDataEditView" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Defines whether or not type fields should be initially displayed in edit/insert mode. The user can toggle this setting from the interface.</p> </dd></dl> <dl class="config option"> <dt id="cfg_InsertRows"> <code class="sig-name descname">$cfg['InsertRows']</code><a class="headerlink" href="#cfg_InsertRows" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>2</p> </dd> </dl> <p>Defines the default number of rows to be entered from the Insert page. Users can manually change this from the bottom of that page to add or remove blank rows.</p> </dd></dl> <dl class="config option"> <dt id="cfg_ForeignKeyMaxLimit"> <code class="sig-name descname">$cfg['ForeignKeyMaxLimit']</code><a class="headerlink" href="#cfg_ForeignKeyMaxLimit" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>100</p> </dd> </dl> <p>If there are fewer items than this in the set of foreign keys, then a drop-down box of foreign keys is presented, in the style described by the <span class="target" id="index-148"></span><a class="reference internal" href="#cfg_ForeignKeyDropdownOrder"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['ForeignKeyDropdownOrder']</span></code></a> setting.</p> </dd></dl> <dl class="config option"> <dt id="cfg_ForeignKeyDropdownOrder"> <code class="sig-name descname">$cfg['ForeignKeyDropdownOrder']</code><a class="headerlink" href="#cfg_ForeignKeyDropdownOrder" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>array(‘content-id’, ‘id-content’)</p> </dd> </dl> <p>For the foreign key drop-down fields, there are several methods of display, offering both the key and value data. The contents of the array should be one or both of the following strings: <code class="docutils literal notranslate"><span class="pre">content-id</span></code>, <code class="docutils literal notranslate"><span class="pre">id-content</span></code>.</p> </dd></dl> </div> <div class="section" id="export-and-import-settings"> <h2>Export and import settings<a class="headerlink" href="#export-and-import-settings" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_ZipDump"> <code class="sig-name descname">$cfg['ZipDump']</code><a class="headerlink" href="#cfg_ZipDump" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_GZipDump"> <code class="sig-name descname">$cfg['GZipDump']</code><a class="headerlink" href="#cfg_GZipDump" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_BZipDump"> <code class="sig-name descname">$cfg['BZipDump']</code><a class="headerlink" href="#cfg_BZipDump" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Defines whether to allow the use of zip/GZip/BZip2 compression when creating a dump file</p> </dd></dl> <dl class="config option"> <dt id="cfg_CompressOnFly"> <code class="sig-name descname">$cfg['CompressOnFly']</code><a class="headerlink" href="#cfg_CompressOnFly" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Defines whether to allow on the fly compression for GZip/BZip2 compressed exports. This doesn’t affect smaller dumps and allows users to create larger dumps that won’t otherwise fit in memory due to php memory limit. Produced files contain more GZip/BZip2 headers, but all normal programs handle this correctly.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Export"> <code class="sig-name descname">$cfg['Export']</code><a class="headerlink" href="#cfg_Export" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>array(…)</p> </dd> </dl> <p>In this array are defined default parameters for export, names of items are similar to texts seen on export page, so you can easily identify what they mean.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Export_format"> <code class="sig-name descname">$cfg['Export']['format']</code><a class="headerlink" href="#cfg_Export_format" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'sql'</span></code></p> </dd> </dl> <p>Default export format.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Export_method"> <code class="sig-name descname">$cfg['Export']['method']</code><a class="headerlink" href="#cfg_Export_method" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'quick'</span></code></p> </dd> </dl> <p>Defines how the export form is displayed when it loads. Valid values are:</p> <ul class="simple"> <li><p><code class="docutils literal notranslate"><span class="pre">quick</span></code> to display the minimum number of options to configure</p></li> <li><p><code class="docutils literal notranslate"><span class="pre">custom</span></code> to display every available option to configure</p></li> <li><p><code class="docutils literal notranslate"><span class="pre">custom-no-form</span></code> same as <code class="docutils literal notranslate"><span class="pre">custom</span></code> but does not display the option of using quick export</p></li> </ul> </dd></dl> <dl class="config option"> <dt id="cfg_Export_charset"> <code class="sig-name descname">$cfg['Export']['charset']</code><a class="headerlink" href="#cfg_Export_charset" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>Defines charset for generated export. By default no charset conversion is done assuming UTF-8.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Export_file_template_table"> <code class="sig-name descname">$cfg['Export']['file_template_table']</code><a class="headerlink" href="#cfg_Export_file_template_table" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'@TABLE@'</span></code></p> </dd> </dl> <p>Default filename template for table exports.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="faq.html#faq6-27"><span class="std std-ref">6.27 What format strings can I use?</span></a></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Export_file_template_database"> <code class="sig-name descname">$cfg['Export']['file_template_database']</code><a class="headerlink" href="#cfg_Export_file_template_database" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'@DATABASE@'</span></code></p> </dd> </dl> <p>Default filename template for database exports.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="faq.html#faq6-27"><span class="std std-ref">6.27 What format strings can I use?</span></a></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Export_file_template_server"> <code class="sig-name descname">$cfg['Export']['file_template_server']</code><a class="headerlink" href="#cfg_Export_file_template_server" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'@SERVER@'</span></code></p> </dd> </dl> <p>Default filename template for server exports.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="faq.html#faq6-27"><span class="std std-ref">6.27 What format strings can I use?</span></a></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Export_remove_definer_from_definitions"> <code class="sig-name descname">$cfg['Export']['remove_definer_from_definitions']</code><a class="headerlink" href="#cfg_Export_remove_definer_from_definitions" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Remove DEFINER clause from the event, view and routine definitions.</p> <div class="versionadded"> <p><span class="versionmodified added">New in version 5.2.0.</span></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Import"> <code class="sig-name descname">$cfg['Import']</code><a class="headerlink" href="#cfg_Import" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>array(…)</p> </dd> </dl> <p>In this array are defined default parameters for import, names of items are similar to texts seen on import page, so you can easily identify what they mean.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Import_charset"> <code class="sig-name descname">$cfg['Import']['charset']</code><a class="headerlink" href="#cfg_Import_charset" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>Defines charset for import. By default no charset conversion is done assuming UTF-8.</p> </dd></dl> </div> <div class="section" id="tabs-display-settings"> <h2>Tabs display settings<a class="headerlink" href="#tabs-display-settings" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_TabsMode"> <code class="sig-name descname">$cfg['TabsMode']</code><a class="headerlink" href="#cfg_TabsMode" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'both'</span></code></p> </dd> </dl> <p>Defines whether the menu tabs contain <code class="docutils literal notranslate"><span class="pre">'icons'</span></code>, <code class="docutils literal notranslate"><span class="pre">'text'</span></code> or <code class="docutils literal notranslate"><span class="pre">'both'</span></code>.</p> </dd></dl> <dl class="config option"> <dt id="cfg_PropertiesNumColumns"> <code class="sig-name descname">$cfg['PropertiesNumColumns']</code><a class="headerlink" href="#cfg_PropertiesNumColumns" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>1</p> </dd> </dl> <p>How many columns will be utilized to display the tables on the database property view? When setting this to a value larger than 1, the type of the database will be omitted for more display space.</p> </dd></dl> <dl class="config option"> <dt id="cfg_DefaultTabServer"> <code class="sig-name descname">$cfg['DefaultTabServer']</code><a class="headerlink" href="#cfg_DefaultTabServer" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'welcome'</span></code></p> </dd> </dl> <p>Defines the tab displayed by default on server view. The possible values are the localized equivalent of:</p> <ul class="simple"> <li><p><code class="docutils literal notranslate"><span class="pre">welcome</span></code> (recommended for multi-user setups)</p></li> <li><p><code class="docutils literal notranslate"><span class="pre">databases</span></code>,</p></li> <li><p><code class="docutils literal notranslate"><span class="pre">status</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">variables</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">privileges</span></code></p></li> </ul> </dd></dl> <dl class="config option"> <dt id="cfg_DefaultTabDatabase"> <code class="sig-name descname">$cfg['DefaultTabDatabase']</code><a class="headerlink" href="#cfg_DefaultTabDatabase" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'structure'</span></code></p> </dd> </dl> <p>Defines the tab displayed by default on database view. The possible values are the localized equivalent of:</p> <ul class="simple"> <li><p><code class="docutils literal notranslate"><span class="pre">structure</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">sql</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">search</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">operations</span></code></p></li> </ul> </dd></dl> <dl class="config option"> <dt id="cfg_DefaultTabTable"> <code class="sig-name descname">$cfg['DefaultTabTable']</code><a class="headerlink" href="#cfg_DefaultTabTable" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'browse'</span></code></p> </dd> </dl> <p>Defines the tab displayed by default on table view. The possible values are the localized equivalent of:</p> <ul class="simple"> <li><p><code class="docutils literal notranslate"><span class="pre">structure</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">sql</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">search</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">insert</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">browse</span></code></p></li> </ul> </dd></dl> </div> <div class="section" id="pdf-options"> <h2>PDF Options<a class="headerlink" href="#pdf-options" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_PDFPageSizes"> <code class="sig-name descname">$cfg['PDFPageSizes']</code><a class="headerlink" href="#cfg_PDFPageSizes" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">array('A3',</span> <span class="pre">'A4',</span> <span class="pre">'A5',</span> <span class="pre">'letter',</span> <span class="pre">'legal')</span></code></p> </dd> </dl> <p>Array of possible paper sizes for creating PDF pages.</p> <p>You should never need to change this.</p> </dd></dl> <dl class="config option"> <dt id="cfg_PDFDefaultPageSize"> <code class="sig-name descname">$cfg['PDFDefaultPageSize']</code><a class="headerlink" href="#cfg_PDFDefaultPageSize" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'A4'</span></code></p> </dd> </dl> <p>Default page size to use when creating PDF pages. Valid values are any listed in <span class="target" id="index-149"></span><a class="reference internal" href="#cfg_PDFPageSizes"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['PDFPageSizes']</span></code></a>.</p> </dd></dl> </div> <div class="section" id="languages"> <h2>Languages<a class="headerlink" href="#languages" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_DefaultLang"> <code class="sig-name descname">$cfg['DefaultLang']</code><a class="headerlink" href="#cfg_DefaultLang" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'en'</span></code></p> </dd> </dl> <p>Defines the default language to use, if not browser-defined or user- defined. The corresponding language file needs to be in locale/<em>code</em>/LC_MESSAGES/phpmyadmin.mo.</p> </dd></dl> <dl class="config option"> <dt id="cfg_DefaultConnectionCollation"> <code class="sig-name descname">$cfg['DefaultConnectionCollation']</code><a class="headerlink" href="#cfg_DefaultConnectionCollation" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'utf8mb4_general_ci'</span></code></p> </dd> </dl> <p>Defines the default connection collation to use, if not user-defined. See the <a class="reference external" href="https://dev.mysql.com/doc/refman/5.7/en/charset-charsets.html">MySQL documentation for charsets</a> for list of possible values.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Lang"> <code class="sig-name descname">$cfg['Lang']</code><a class="headerlink" href="#cfg_Lang" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>not set</p> </dd> </dl> <p>Force language to use. The corresponding language file needs to be in locale/<em>code</em>/LC_MESSAGES/phpmyadmin.mo.</p> </dd></dl> <dl class="config option"> <dt id="cfg_FilterLanguages"> <code class="sig-name descname">$cfg['FilterLanguages']</code><a class="headerlink" href="#cfg_FilterLanguages" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>Limit list of available languages to those matching the given regular expression. For example if you want only Czech and English, you should set filter to <code class="docutils literal notranslate"><span class="pre">'^(cs|en)'</span></code>.</p> </dd></dl> <dl class="config option"> <dt id="cfg_RecodingEngine"> <code class="sig-name descname">$cfg['RecodingEngine']</code><a class="headerlink" href="#cfg_RecodingEngine" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'auto'</span></code></p> </dd> </dl> <p>You can select here which functions will be used for character set conversion. Possible values are:</p> <ul class="simple"> <li><p>auto - automatically use available one (first is tested iconv, then recode)</p></li> <li><p>iconv - use iconv or libiconv functions</p></li> <li><p>recode - use recode_string function</p></li> <li><p>mb - use <a class="reference internal" href="glossary.html#term-mbstring"><span class="xref std std-term">mbstring</span></a> extension</p></li> <li><p>none - disable encoding conversion</p></li> </ul> <p>Enabled charset conversion activates a pull-down menu in the Export and Import pages, to choose the character set when exporting a file. The default value in this menu comes from <span class="target" id="index-150"></span><a class="reference internal" href="#cfg_Export_charset"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Export']['charset']</span></code></a> and <span class="target" id="index-151"></span><a class="reference internal" href="#cfg_Import_charset"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Import']['charset']</span></code></a>.</p> </dd></dl> <dl class="config option"> <dt id="cfg_IconvExtraParams"> <code class="sig-name descname">$cfg['IconvExtraParams']</code><a class="headerlink" href="#cfg_IconvExtraParams" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'//TRANSLIT'</span></code></p> </dd> </dl> <p>Specify some parameters for iconv used in charset conversion. See <a class="reference external" href="https://www.gnu.org/savannah-checkouts/gnu/libiconv/documentation/libiconv-1.15/iconv_open.3.html">iconv documentation</a> for details. By default <code class="docutils literal notranslate"><span class="pre">//TRANSLIT</span></code> is used, so that invalid characters will be transliterated.</p> </dd></dl> <dl class="config option"> <dt id="cfg_AvailableCharsets"> <code class="sig-name descname">$cfg['AvailableCharsets']</code><a class="headerlink" href="#cfg_AvailableCharsets" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>array(…)</p> </dd> </dl> <p>Available character sets for MySQL conversion. You can add your own (any of supported by recode/iconv) or remove these which you don’t use. Character sets will be shown in same order as here listed, so if you frequently use some of these move them to the top.</p> </dd></dl> </div> <div class="section" id="web-server-settings"> <h2>Web server settings<a class="headerlink" href="#web-server-settings" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_OBGzip"> <code class="sig-name descname">$cfg['OBGzip']</code><a class="headerlink" href="#cfg_OBGzip" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string/boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'auto'</span></code></p> </dd> </dl> <p>Defines whether to use GZip output buffering for increased speed in <a class="reference internal" href="glossary.html#term-HTTP"><span class="xref std std-term">HTTP</span></a> transfers. Set to true/false for enabling/disabling. When set to ‘auto’ (string), phpMyAdmin tries to enable output buffering and will automatically disable it if your browser has some problems with buffering. IE6 with a certain patch is known to cause data corruption when having enabled buffering.</p> </dd></dl> <dl class="config option"> <dt id="cfg_TrustedProxies"> <code class="sig-name descname">$cfg['TrustedProxies']</code><a class="headerlink" href="#cfg_TrustedProxies" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>array()</p> </dd> </dl> <p>Lists proxies and HTTP headers which are trusted for <span class="target" id="index-152"></span><a class="reference internal" href="#cfg_Servers_AllowDeny_order"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['AllowDeny']['order']</span></code></a>. This list is by default empty, you need to fill in some trusted proxy servers if you want to use rules for IP addresses behind proxy.</p> <p>The following example specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (<code class="docutils literal notranslate"><span class="pre">X-Forwarded-For</span></code>) header coming from the proxy 1.2.3.4:</p> <div class="highlight-php notranslate"><div class="highlight"><pre><span></span><span class="nv">$cfg</span><span class="p">[</span><span class="s1">'TrustedProxies'</span><span class="p">]</span> <span class="o">=</span> <span class="p">[</span><span class="s1">'1.2.3.4'</span> <span class="o">=></span> <span class="s1">'HTTP_X_FORWARDED_FOR'</span><span class="p">];</span> </pre></div> </div> <p>The <span class="target" id="index-153"></span><a class="reference internal" href="#cfg_Servers_AllowDeny_rules"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['AllowDeny']['rules']</span></code></a> directive uses the client’s IP address as usual.</p> </dd></dl> <dl class="config option"> <dt id="cfg_GD2Available"> <code class="sig-name descname">$cfg['GD2Available']</code><a class="headerlink" href="#cfg_GD2Available" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'auto'</span></code></p> </dd> </dl> <p>Specifies whether GD >= 2 is available. If yes it can be used for MIME transformations. Possible values are:</p> <ul class="simple"> <li><p>auto - automatically detect</p></li> <li><p>yes - GD 2 functions can be used</p></li> <li><p>no - GD 2 function cannot be used</p></li> </ul> </dd></dl> <dl class="config option"> <dt id="cfg_CheckConfigurationPermissions"> <code class="sig-name descname">$cfg['CheckConfigurationPermissions']</code><a class="headerlink" href="#cfg_CheckConfigurationPermissions" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>We normally check the permissions on the configuration file to ensure it’s not world writable. However, phpMyAdmin could be installed on a NTFS filesystem mounted on a non-Windows server, in which case the permissions seems wrong but in fact cannot be detected. In this case a sysadmin would set this parameter to <code class="docutils literal notranslate"><span class="pre">false</span></code>.</p> </dd></dl> <dl class="config option"> <dt id="cfg_LinkLengthLimit"> <code class="sig-name descname">$cfg['LinkLengthLimit']</code><a class="headerlink" href="#cfg_LinkLengthLimit" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>1000</p> </dd> </dl> <p>Limit for length of <a class="reference internal" href="glossary.html#term-URL"><span class="xref std std-term">URL</span></a> in links. When length would be above this limit, it is replaced by form with button. This is required as some web servers (<a class="reference internal" href="glossary.html#term-IIS"><span class="xref std std-term">IIS</span></a>) have problems with long <a class="reference internal" href="glossary.html#term-URL"><span class="xref std std-term">URL</span></a> .</p> </dd></dl> <dl class="config option"> <dt id="cfg_CSPAllow"> <code class="sig-name descname">$cfg['CSPAllow']</code><a class="headerlink" href="#cfg_CSPAllow" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>Additional string to include in allowed script and image sources in Content Security Policy header.</p> <p>This can be useful when you want to include some external JavaScript files in <code class="file docutils literal notranslate"><span class="pre">config.footer.inc.php</span></code> or <code class="file docutils literal notranslate"><span class="pre">config.header.inc.php</span></code>, which would be normally not allowed by <a class="reference internal" href="glossary.html#term-Content-Security-Policy"><span class="xref std std-term">Content Security Policy</span></a>.</p> <p>To allow some sites, just list them within the string:</p> <div class="highlight-php notranslate"><div class="highlight"><pre><span></span><span class="nv">$cfg</span><span class="p">[</span><span class="s1">'CSPAllow'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'example.com example.net'</span><span class="p">;</span> </pre></div> </div> <div class="versionadded"> <p><span class="versionmodified added">New in version 4.0.4.</span></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_DisableMultiTableMaintenance"> <code class="sig-name descname">$cfg['DisableMultiTableMaintenance']</code><a class="headerlink" href="#cfg_DisableMultiTableMaintenance" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>In the database Structure page, it’s possible to mark some tables then choose an operation like optimizing for many tables. This can slow down a server; therefore, setting this to <code class="docutils literal notranslate"><span class="pre">true</span></code> prevents this kind of multiple maintenance operation.</p> </dd></dl> </div> <div class="section" id="theme-settings"> <h2>Theme settings<a class="headerlink" href="#theme-settings" title="Permalink to this headline">¶</a></h2> <blockquote> <div><p>Please directly modify <code class="file docutils literal notranslate"><span class="pre">themes/themename/scss/_variables.scss</span></code>, although your changes will be overwritten with the next update.</p> </div></blockquote> </div> <div class="section" id="design-customization"> <h2>Design customization<a class="headerlink" href="#design-customization" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_NavigationTreePointerEnable"> <code class="sig-name descname">$cfg['NavigationTreePointerEnable']</code><a class="headerlink" href="#cfg_NavigationTreePointerEnable" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>When set to true, hovering over an item in the navigation panel causes that item to be marked (the background is highlighted).</p> </dd></dl> <dl class="config option"> <dt id="cfg_BrowsePointerEnable"> <code class="sig-name descname">$cfg['BrowsePointerEnable']</code><a class="headerlink" href="#cfg_BrowsePointerEnable" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>When set to true, hovering over a row in the Browse page causes that row to be marked (the background is highlighted).</p> </dd></dl> <dl class="config option"> <dt id="cfg_BrowseMarkerEnable"> <code class="sig-name descname">$cfg['BrowseMarkerEnable']</code><a class="headerlink" href="#cfg_BrowseMarkerEnable" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>When set to true, a data row is marked (the background is highlighted) when the row is selected with the checkbox.</p> </dd></dl> <dl class="config option"> <dt id="cfg_LimitChars"> <code class="sig-name descname">$cfg['LimitChars']</code><a class="headerlink" href="#cfg_LimitChars" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>50</p> </dd> </dl> <p>Maximum number of characters shown in any non-numeric field on browse view. Can be turned off by a toggle button on the browse page.</p> </dd></dl> <dl class="config option"> <dt id="cfg_RowActionLinks"> <code class="sig-name descname">$cfg['RowActionLinks']</code><a class="headerlink" href="#cfg_RowActionLinks" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'left'</span></code></p> </dd> </dl> <p>Defines the place where table row links (Edit, Copy, Delete) would be put when tables contents are displayed (you may have them displayed at the left side, right side, both sides or nowhere).</p> </dd></dl> <dl class="config option"> <dt id="cfg_RowActionLinksWithoutUnique"> <code class="sig-name descname">$cfg['RowActionLinksWithoutUnique']</code><a class="headerlink" href="#cfg_RowActionLinksWithoutUnique" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Defines whether to show row links (Edit, Copy, Delete) and checkboxes for multiple row operations even when the selection does not have a <a class="reference internal" href="glossary.html#term-unique-key"><span class="xref std std-term">unique key</span></a>. Using row actions in the absence of a unique key may result in different/more rows being affected since there is no guaranteed way to select the exact row(s).</p> </dd></dl> <dl class="config option"> <dt id="cfg_RememberSorting"> <code class="sig-name descname">$cfg['RememberSorting']</code><a class="headerlink" href="#cfg_RememberSorting" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>If enabled, remember the sorting of each table when browsing them.</p> </dd></dl> <dl class="config option"> <dt id="cfg_TablePrimaryKeyOrder"> <code class="sig-name descname">$cfg['TablePrimaryKeyOrder']</code><a class="headerlink" href="#cfg_TablePrimaryKeyOrder" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'NONE'</span></code></p> </dd> </dl> <p>This defines the default sort order for the tables, having a <a class="reference internal" href="glossary.html#term-primary-key"><span class="xref std std-term">primary key</span></a>, when there is no sort order defines externally. Acceptable values : [‘NONE’, ‘ASC’, ‘DESC’]</p> </dd></dl> <dl class="config option"> <dt id="cfg_ShowBrowseComments"> <code class="sig-name descname">$cfg['ShowBrowseComments']</code><a class="headerlink" href="#cfg_ShowBrowseComments" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_ShowPropertyComments"> <code class="sig-name descname">$cfg['ShowPropertyComments']</code><a class="headerlink" href="#cfg_ShowPropertyComments" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>By setting the corresponding variable to <code class="docutils literal notranslate"><span class="pre">true</span></code> you can enable the display of column comments in Browse or Property display. In browse mode, the comments are shown inside the header. In property mode, comments are displayed using a CSS-formatted dashed-line below the name of the column. The comment is shown as a tool-tip for that column.</p> </dd></dl> <dl class="config option"> <dt id="cfg_FirstDayOfCalendar"> <code class="sig-name descname">$cfg['FirstDayOfCalendar']</code><a class="headerlink" href="#cfg_FirstDayOfCalendar" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>0</p> </dd> </dl> <p>This will define the first day of week in the calendar. The number can be set from 0 to 6, which represents the seven days of the week, Sunday to Saturday respectively. This value can also be configured by the user in <span class="guilabel">Settings</span> -> <span class="guilabel">Features</span> -> <span class="guilabel">General</span> -> <span class="guilabel">First day of calendar</span> field.</p> </dd></dl> </div> <div class="section" id="text-fields"> <h2>Text fields<a class="headerlink" href="#text-fields" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_CharEditing"> <code class="sig-name descname">$cfg['CharEditing']</code><a class="headerlink" href="#cfg_CharEditing" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'input'</span></code></p> </dd> </dl> <p>Defines which type of editing controls should be used for CHAR and VARCHAR columns. Applies to data editing and also to the default values in structure editing. Possible values are:</p> <ul class="simple"> <li><p>input - this allows to limit size of text to size of columns in MySQL, but has problems with newlines in columns</p></li> <li><p>textarea - no problems with newlines in columns, but also no length limitations</p></li> </ul> </dd></dl> <dl class="config option"> <dt id="cfg_MinSizeForInputField"> <code class="sig-name descname">$cfg['MinSizeForInputField']</code><a class="headerlink" href="#cfg_MinSizeForInputField" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>4</p> </dd> </dl> <p>Defines the minimum size for input fields generated for CHAR and VARCHAR columns.</p> </dd></dl> <dl class="config option"> <dt id="cfg_MaxSizeForInputField"> <code class="sig-name descname">$cfg['MaxSizeForInputField']</code><a class="headerlink" href="#cfg_MaxSizeForInputField" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>60</p> </dd> </dl> <p>Defines the maximum size for input fields generated for CHAR and VARCHAR columns.</p> </dd></dl> <dl class="config option"> <dt id="cfg_TextareaCols"> <code class="sig-name descname">$cfg['TextareaCols']</code><a class="headerlink" href="#cfg_TextareaCols" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>40</p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_TextareaRows"> <code class="sig-name descname">$cfg['TextareaRows']</code><a class="headerlink" href="#cfg_TextareaRows" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>15</p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_CharTextareaCols"> <code class="sig-name descname">$cfg['CharTextareaCols']</code><a class="headerlink" href="#cfg_CharTextareaCols" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>40</p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_CharTextareaRows"> <code class="sig-name descname">$cfg['CharTextareaRows']</code><a class="headerlink" href="#cfg_CharTextareaRows" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>7</p> </dd> </dl> <p>Number of columns and rows for the textareas. This value will be emphasized (*2) for <a class="reference internal" href="glossary.html#term-SQL"><span class="xref std std-term">SQL</span></a> query textareas and (*1.25) for <a class="reference internal" href="glossary.html#term-SQL"><span class="xref std std-term">SQL</span></a> textareas inside the query window.</p> <p>The Char* values are used for CHAR and VARCHAR editing (if configured via <span class="target" id="index-154"></span><a class="reference internal" href="#cfg_CharEditing"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['CharEditing']</span></code></a>).</p> <div class="versionchanged"> <p><span class="versionmodified changed">Changed in version 5.0.0: </span>The default value was changed from 2 to 7.</p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_LongtextDoubleTextarea"> <code class="sig-name descname">$cfg['LongtextDoubleTextarea']</code><a class="headerlink" href="#cfg_LongtextDoubleTextarea" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Defines whether textarea for LONGTEXT columns should have double size.</p> </dd></dl> <dl class="config option"> <dt id="cfg_TextareaAutoSelect"> <code class="sig-name descname">$cfg['TextareaAutoSelect']</code><a class="headerlink" href="#cfg_TextareaAutoSelect" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Defines if the whole textarea of the query box will be selected on click.</p> </dd></dl> <dl class="config option"> <dt id="cfg_EnableAutocompleteForTablesAndColumns"> <code class="sig-name descname">$cfg['EnableAutocompleteForTablesAndColumns']</code><a class="headerlink" href="#cfg_EnableAutocompleteForTablesAndColumns" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Whether to enable autocomplete for table and column names in any SQL query box.</p> </dd></dl> </div> <div class="section" id="sql-query-box-settings"> <h2>SQL query box settings<a class="headerlink" href="#sql-query-box-settings" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_SQLQuery_Edit"> <code class="sig-name descname">$cfg['SQLQuery']['Edit']</code><a class="headerlink" href="#cfg_SQLQuery_Edit" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Whether to display an edit link to change a query in any SQL Query box.</p> </dd></dl> <dl class="config option"> <dt id="cfg_SQLQuery_Explain"> <code class="sig-name descname">$cfg['SQLQuery']['Explain']</code><a class="headerlink" href="#cfg_SQLQuery_Explain" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Whether to display a link to explain a SELECT query in any SQL Query box.</p> </dd></dl> <dl class="config option"> <dt id="cfg_SQLQuery_ShowAsPHP"> <code class="sig-name descname">$cfg['SQLQuery']['ShowAsPHP']</code><a class="headerlink" href="#cfg_SQLQuery_ShowAsPHP" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Whether to display a link to wrap a query in PHP code in any SQL Query box.</p> </dd></dl> <dl class="config option"> <dt id="cfg_SQLQuery_Refresh"> <code class="sig-name descname">$cfg['SQLQuery']['Refresh']</code><a class="headerlink" href="#cfg_SQLQuery_Refresh" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Whether to display a link to refresh a query in any SQL Query box.</p> </dd></dl> </div> <div class="section" id="web-server-upload-save-import-directories"> <span id="web-dirs"></span><h2>Web server upload/save/import directories<a class="headerlink" href="#web-server-upload-save-import-directories" title="Permalink to this headline">¶</a></h2> <p>If PHP is running in safe mode, all directories must be owned by the same user as the owner of the phpMyAdmin scripts.</p> <p>If the directory where phpMyAdmin is installed is subject to an <code class="docutils literal notranslate"><span class="pre">open_basedir</span></code> restriction, you need to create a temporary directory in some directory accessible by the PHP interpreter.</p> <p>For security reasons, all directories should be outside the tree published by webserver. If you cannot avoid having this directory published by webserver, limit access to it either by web server configuration (for example using .htaccess or web.config files) or place at least an empty <code class="file docutils literal notranslate"><span class="pre">index.html</span></code> file there, so that directory listing is not possible. However as long as the directory is accessible by web server, an attacker can guess filenames to download the files.</p> <dl class="config option"> <dt id="cfg_UploadDir"> <code class="sig-name descname">$cfg['UploadDir']</code><a class="headerlink" href="#cfg_UploadDir" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>The name of the directory where <a class="reference internal" href="glossary.html#term-SQL"><span class="xref std std-term">SQL</span></a> files have been uploaded by other means than phpMyAdmin (for example, FTP). Those files are available under a drop-down box when you click the database or table name, then the Import tab.</p> <p>If you want different directory for each user, %u will be replaced with username.</p> <p>Please note that the file names must have the suffix “.sql” (or “.sql.bz2” or “.sql.gz” if support for compressed formats is enabled).</p> <p>This feature is useful when your file is too big to be uploaded via <a class="reference internal" href="glossary.html#term-HTTP"><span class="xref std std-term">HTTP</span></a>, or when file uploads are disabled in PHP.</p> <div class="admonition warning"> <p class="admonition-title">Warning</p> <p>Please see top of this chapter (<a class="reference internal" href="#web-dirs"><span class="std std-ref">Web server upload/save/import directories</span></a>) for instructions how to setup this directory and how to make its usage secure.</p> </div> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p>See <a class="reference internal" href="faq.html#faq1-16"><span class="std std-ref">1.16 I cannot upload big dump files (memory, HTTP or timeout problems).</span></a> for alternatives.</p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_SaveDir"> <code class="sig-name descname">$cfg['SaveDir']</code><a class="headerlink" href="#cfg_SaveDir" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>The name of the webserver directory where exported files can be saved.</p> <p>If you want a different directory for each user, %u will be replaced with the username.</p> <p>Please note that the directory must exist and has to be writable for the user running webserver.</p> <div class="admonition warning"> <p class="admonition-title">Warning</p> <p>Please see top of this chapter (<a class="reference internal" href="#web-dirs"><span class="std std-ref">Web server upload/save/import directories</span></a>) for instructions how to setup this directory and how to make its usage secure.</p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_TempDir"> <code class="sig-name descname">$cfg['TempDir']</code><a class="headerlink" href="#cfg_TempDir" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'./tmp/'</span></code></p> </dd> </dl> <p>The name of the directory where temporary files can be stored. It is used for several purposes, currently:</p> <ul class="simple"> <li><p>The templates cache which speeds up page loading.</p></li> <li><p>ESRI Shapefiles import, see <a class="reference internal" href="faq.html#faq6-30"><span class="std std-ref">6.30 Import: How can I import ESRI Shapefiles?</span></a>.</p></li> <li><p>To work around limitations of <code class="docutils literal notranslate"><span class="pre">open_basedir</span></code> for uploaded files, see <a class="reference internal" href="faq.html#faq1-11"><span class="std std-ref">1.11 I get an ‘open_basedir restriction’ while uploading a file from the import tab.</span></a>.</p></li> </ul> <p>This directory should have as strict permissions as possible as the only user required to access this directory is the one who runs the webserver. If you have root privileges, simply make this user owner of this directory and make it accessible only by it:</p> <div class="highlight-sh notranslate"><div class="highlight"><pre><span></span>chown www-data:www-data tmp chmod <span class="m">700</span> tmp </pre></div> </div> <p>If you cannot change owner of the directory, you can achieve a similar setup using <a class="reference internal" href="glossary.html#term-ACL"><span class="xref std std-term">ACL</span></a>:</p> <div class="highlight-sh notranslate"><div class="highlight"><pre><span></span>chmod <span class="m">700</span> tmp setfacl -m <span class="s2">"g:www-data:rwx"</span> tmp setfacl -d -m <span class="s2">"g:www-data:rwx"</span> tmp </pre></div> </div> <p>If neither of above works for you, you can still make the directory <strong class="command">chmod 777</strong>, but it might impose risk of other users on system reading and writing data in this directory.</p> <div class="admonition warning"> <p class="admonition-title">Warning</p> <p>Please see top of this chapter (<a class="reference internal" href="#web-dirs"><span class="std std-ref">Web server upload/save/import directories</span></a>) for instructions how to setup this directory and how to make its usage secure.</p> </div> </dd></dl> </div> <div class="section" id="various-display-setting"> <h2>Various display setting<a class="headerlink" href="#various-display-setting" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_RepeatCells"> <code class="sig-name descname">$cfg['RepeatCells']</code><a class="headerlink" href="#cfg_RepeatCells" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>100</p> </dd> </dl> <p>Repeat the headers every X cells, or 0 to deactivate.</p> </dd></dl> <dl class="config option"> <dt id="cfg_QueryHistoryDB"> <code class="sig-name descname">$cfg['QueryHistoryDB']</code><a class="headerlink" href="#cfg_QueryHistoryDB" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_QueryHistoryMax"> <code class="sig-name descname">$cfg['QueryHistoryMax']</code><a class="headerlink" href="#cfg_QueryHistoryMax" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>25</p> </dd> </dl> <p>If <span class="target" id="index-155"></span><a class="reference internal" href="#cfg_QueryHistoryDB"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['QueryHistoryDB']</span></code></a> is set to <code class="docutils literal notranslate"><span class="pre">true</span></code>, all your Queries are logged to a table, which has to be created by you (see <span class="target" id="index-156"></span><a class="reference internal" href="#cfg_Servers_history"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['history']</span></code></a>). If set to false, all your queries will be appended to the form, but only as long as your window is opened they remain saved.</p> <p>When using the JavaScript based query window, it will always get updated when you click on a new table/db to browse and will focus if you click on <span class="guilabel">Edit SQL</span> after using a query. You can suppress updating the query window by checking the box <span class="guilabel">Do not overwrite this query from outside the window</span> below the query textarea. Then you can browse tables/databases in the background without losing the contents of the textarea, so this is especially useful when composing a query with tables you first have to look in. The checkbox will get automatically checked whenever you change the contents of the textarea. Please uncheck the button whenever you definitely want the query window to get updated even though you have made alterations.</p> <p>If <span class="target" id="index-157"></span><a class="reference internal" href="#cfg_QueryHistoryDB"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['QueryHistoryDB']</span></code></a> is set to <code class="docutils literal notranslate"><span class="pre">true</span></code> you can specify the amount of saved history items using <span class="target" id="index-158"></span><a class="reference internal" href="#cfg_QueryHistoryMax"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['QueryHistoryMax']</span></code></a>.</p> </dd></dl> <dl class="config option"> <dt id="cfg_BrowseMIME"> <code class="sig-name descname">$cfg['BrowseMIME']</code><a class="headerlink" href="#cfg_BrowseMIME" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Enable <a class="reference internal" href="transformations.html#transformations"><span class="std std-ref">Transformations</span></a>.</p> </dd></dl> <dl class="config option"> <dt id="cfg_MaxExactCount"> <code class="sig-name descname">$cfg['MaxExactCount']</code><a class="headerlink" href="#cfg_MaxExactCount" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>50000</p> </dd> </dl> <p>For InnoDB tables, determines for how large tables phpMyAdmin should get the exact row count using <code class="docutils literal notranslate"><span class="pre">SELECT</span> <span class="pre">COUNT</span></code>. If the approximate row count as returned by <code class="docutils literal notranslate"><span class="pre">SHOW</span> <span class="pre">TABLE</span> <span class="pre">STATUS</span></code> is smaller than this value, <code class="docutils literal notranslate"><span class="pre">SELECT</span> <span class="pre">COUNT</span></code> will be used, otherwise the approximate count will be used.</p> <div class="versionchanged"> <p><span class="versionmodified changed">Changed in version 4.8.0: </span>The default value was lowered to 50000 for performance reasons.</p> </div> <div class="versionchanged"> <p><span class="versionmodified changed">Changed in version 4.2.6: </span>The default value was changed to 500000.</p> </div> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="faq.html#faq3-11"><span class="std std-ref">3.11 The number of rows for InnoDB tables is not correct.</span></a></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_MaxExactCountViews"> <code class="sig-name descname">$cfg['MaxExactCountViews']</code><a class="headerlink" href="#cfg_MaxExactCountViews" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>0</p> </dd> </dl> <p>For VIEWs, since obtaining the exact count could have an impact on performance, this value is the maximum to be displayed, using a <code class="docutils literal notranslate"><span class="pre">SELECT</span> <span class="pre">COUNT</span> <span class="pre">...</span> <span class="pre">LIMIT</span></code>. Setting this to 0 bypasses any row counting.</p> </dd></dl> <dl class="config option"> <dt id="cfg_NaturalOrder"> <code class="sig-name descname">$cfg['NaturalOrder']</code><a class="headerlink" href="#cfg_NaturalOrder" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Sorts database and table names according to natural order (for example, t1, t2, t10). Currently implemented in the navigation panel and in Database view, for the table list.</p> </dd></dl> <dl class="config option"> <dt id="cfg_InitialSlidersState"> <code class="sig-name descname">$cfg['InitialSlidersState']</code><a class="headerlink" href="#cfg_InitialSlidersState" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'closed'</span></code></p> </dd> </dl> <p>If set to <code class="docutils literal notranslate"><span class="pre">'closed'</span></code>, the visual sliders are initially in a closed state. A value of <code class="docutils literal notranslate"><span class="pre">'open'</span></code> does the reverse. To completely disable all visual sliders, use <code class="docutils literal notranslate"><span class="pre">'disabled'</span></code>.</p> </dd></dl> <dl class="config option"> <dt id="cfg_UserprefsDisallow"> <code class="sig-name descname">$cfg['UserprefsDisallow']</code><a class="headerlink" href="#cfg_UserprefsDisallow" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>array()</p> </dd> </dl> <p>Contains names of configuration options (keys in <code class="docutils literal notranslate"><span class="pre">$cfg</span></code> array) that users can’t set through user preferences. For possible values, refer to classes under <code class="file docutils literal notranslate"><span class="pre">libraries/classes/Config/Forms/User/</span></code>.</p> </dd></dl> <dl class="config option"> <dt id="cfg_UserprefsDeveloperTab"> <code class="sig-name descname">$cfg['UserprefsDeveloperTab']</code><a class="headerlink" href="#cfg_UserprefsDeveloperTab" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 3.4.0.</span></p> </div> <p>Activates in the user preferences a tab containing options for developers of phpMyAdmin.</p> </dd></dl> </div> <div class="section" id="page-titles"> <h2>Page titles<a class="headerlink" href="#page-titles" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_TitleTable"> <code class="sig-name descname">$cfg['TitleTable']</code><a class="headerlink" href="#cfg_TitleTable" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'@HTTP_HOST@</span> <span class="pre">/</span> <span class="pre">@VSERVER@</span> <span class="pre">/</span> <span class="pre">@DATABASE@</span> <span class="pre">/</span> <span class="pre">@TABLE@</span> <span class="pre">|</span> <span class="pre">@PHPMYADMIN@'</span></code></p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_TitleDatabase"> <code class="sig-name descname">$cfg['TitleDatabase']</code><a class="headerlink" href="#cfg_TitleDatabase" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'@HTTP_HOST@</span> <span class="pre">/</span> <span class="pre">@VSERVER@</span> <span class="pre">/</span> <span class="pre">@DATABASE@</span> <span class="pre">|</span> <span class="pre">@PHPMYADMIN@'</span></code></p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_TitleServer"> <code class="sig-name descname">$cfg['TitleServer']</code><a class="headerlink" href="#cfg_TitleServer" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'@HTTP_HOST@</span> <span class="pre">/</span> <span class="pre">@VSERVER@</span> <span class="pre">|</span> <span class="pre">@PHPMYADMIN@'</span></code></p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_TitleDefault"> <code class="sig-name descname">$cfg['TitleDefault']</code><a class="headerlink" href="#cfg_TitleDefault" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'@HTTP_HOST@</span> <span class="pre">|</span> <span class="pre">@PHPMYADMIN@'</span></code></p> </dd> </dl> <p>Allows you to specify window’s title bar. You can use <a class="reference internal" href="faq.html#faq6-27"><span class="std std-ref">6.27 What format strings can I use?</span></a>.</p> </dd></dl> </div> <div class="section" id="theme-manager-settings"> <h2>Theme manager settings<a class="headerlink" href="#theme-manager-settings" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_ThemeManager"> <code class="sig-name descname">$cfg['ThemeManager']</code><a class="headerlink" href="#cfg_ThemeManager" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Enables user-selectable themes. See <a class="reference internal" href="faq.html#faqthemes"><span class="std std-ref">2.7 Using and creating themes</span></a>.</p> </dd></dl> <dl class="config option"> <dt id="cfg_ThemeDefault"> <code class="sig-name descname">$cfg['ThemeDefault']</code><a class="headerlink" href="#cfg_ThemeDefault" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'pmahomme'</span></code></p> </dd> </dl> <p>The default theme (a subdirectory under <code class="file docutils literal notranslate"><span class="pre">./themes/</span></code>).</p> </dd></dl> <dl class="config option"> <dt id="cfg_ThemePerServer"> <code class="sig-name descname">$cfg['ThemePerServer']</code><a class="headerlink" href="#cfg_ThemePerServer" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Whether to allow different theme for each server.</p> </dd></dl> <dl class="config option"> <dt id="cfg_FontSize"> <code class="sig-name descname">$cfg['FontSize']</code><a class="headerlink" href="#cfg_FontSize" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>‘82%’</p> </dd> </dl> <div class="deprecated"> <p><span class="versionmodified deprecated">Deprecated since version 5.0.0: </span>This setting was removed as the browser is more efficient, thus no need of this option.</p> </div> <p>Font size to use, is applied in CSS.</p> </dd></dl> </div> <div class="section" id="default-queries"> <h2>Default queries<a class="headerlink" href="#default-queries" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_DefaultQueryTable"> <code class="sig-name descname">$cfg['DefaultQueryTable']</code><a class="headerlink" href="#cfg_DefaultQueryTable" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'SELECT</span> <span class="pre">*</span> <span class="pre">FROM</span> <span class="pre">@TABLE@</span> <span class="pre">WHERE</span> <span class="pre">1'</span></code></p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_DefaultQueryDatabase"> <code class="sig-name descname">$cfg['DefaultQueryDatabase']</code><a class="headerlink" href="#cfg_DefaultQueryDatabase" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>Default queries that will be displayed in query boxes when user didn’t specify any. You can use standard <a class="reference internal" href="faq.html#faq6-27"><span class="std std-ref">6.27 What format strings can I use?</span></a>.</p> </dd></dl> </div> <div class="section" id="mysql-settings"> <h2>MySQL settings<a class="headerlink" href="#mysql-settings" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_DefaultFunctions"> <code class="sig-name descname">$cfg['DefaultFunctions']</code><a class="headerlink" href="#cfg_DefaultFunctions" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">array('FUNC_CHAR'</span> <span class="pre">=></span> <span class="pre">'',</span> <span class="pre">'FUNC_DATE'</span> <span class="pre">=></span> <span class="pre">'',</span> <span class="pre">'FUNC_NUMBER'</span> <span class="pre">=></span> <span class="pre">'',</span> <span class="pre">'FUNC_SPATIAL'</span> <span class="pre">=></span> <span class="pre">'GeomFromText',</span> <span class="pre">'FUNC_UUID'</span> <span class="pre">=></span> <span class="pre">'UUID',</span> <span class="pre">'first_timestamp'</span> <span class="pre">=></span> <span class="pre">'NOW')</span></code></p> </dd> </dl> <p>Functions selected by default when inserting/changing row, Functions are defined for meta types as (<code class="docutils literal notranslate"><span class="pre">FUNC_NUMBER</span></code>, <code class="docutils literal notranslate"><span class="pre">FUNC_DATE</span></code>, <code class="docutils literal notranslate"><span class="pre">FUNC_CHAR</span></code>, <code class="docutils literal notranslate"><span class="pre">FUNC_SPATIAL</span></code>, <code class="docutils literal notranslate"><span class="pre">FUNC_UUID</span></code>) and for <code class="docutils literal notranslate"><span class="pre">first_timestamp</span></code>, which is used for first timestamp column in table.</p> <p>Example configuration</p> <div class="highlight-php notranslate"><div class="highlight"><pre><span></span><span class="nv">$cfg</span><span class="p">[</span><span class="s1">'DefaultFunctions'</span><span class="p">]</span> <span class="o">=</span> <span class="p">[</span> <span class="s1">'FUNC_CHAR'</span> <span class="o">=></span> <span class="s1">''</span><span class="p">,</span> <span class="s1">'FUNC_DATE'</span> <span class="o">=></span> <span class="s1">''</span><span class="p">,</span> <span class="s1">'FUNC_NUMBER'</span> <span class="o">=></span> <span class="s1">''</span><span class="p">,</span> <span class="s1">'FUNC_SPATIAL'</span> <span class="o">=></span> <span class="s1">'ST_GeomFromText'</span><span class="p">,</span> <span class="s1">'FUNC_UUID'</span> <span class="o">=></span> <span class="s1">'UUID'</span><span class="p">,</span> <span class="s1">'first_timestamp'</span> <span class="o">=></span> <span class="s1">'UTC_TIMESTAMP'</span><span class="p">,</span> <span class="p">];</span> </pre></div> </div> </dd></dl> </div> <div class="section" id="default-options-for-transformations"> <h2>Default options for Transformations<a class="headerlink" href="#default-options-for-transformations" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_DefaultTransformations"> <code class="sig-name descname">$cfg['DefaultTransformations']</code><a class="headerlink" href="#cfg_DefaultTransformations" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>An array with below listed key-values</p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_DefaultTransformations_Substring"> <code class="sig-name descname">$cfg['DefaultTransformations']['Substring']</code><a class="headerlink" href="#cfg_DefaultTransformations_Substring" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>array(0, ‘all’, ‘…’)</p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_DefaultTransformations_Bool2Text"> <code class="sig-name descname">$cfg['DefaultTransformations']['Bool2Text']</code><a class="headerlink" href="#cfg_DefaultTransformations_Bool2Text" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>array(‘T’, ‘F’)</p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_DefaultTransformations_External"> <code class="sig-name descname">$cfg['DefaultTransformations']['External']</code><a class="headerlink" href="#cfg_DefaultTransformations_External" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>array(0, ‘-f /dev/null -i -wrap -q’, 1, 1)</p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_DefaultTransformations_PreApPend"> <code class="sig-name descname">$cfg['DefaultTransformations']['PreApPend']</code><a class="headerlink" href="#cfg_DefaultTransformations_PreApPend" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>array(‘’, ‘’)</p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_DefaultTransformations_Hex"> <code class="sig-name descname">$cfg['DefaultTransformations']['Hex']</code><a class="headerlink" href="#cfg_DefaultTransformations_Hex" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>array(‘2’)</p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_DefaultTransformations_DateFormat"> <code class="sig-name descname">$cfg['DefaultTransformations']['DateFormat']</code><a class="headerlink" href="#cfg_DefaultTransformations_DateFormat" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>array(0, ‘’, ‘local’)</p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_DefaultTransformations_Inline"> <code class="sig-name descname">$cfg['DefaultTransformations']['Inline']</code><a class="headerlink" href="#cfg_DefaultTransformations_Inline" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>array(‘100’, 100)</p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_DefaultTransformations_TextImageLink"> <code class="sig-name descname">$cfg['DefaultTransformations']['TextImageLink']</code><a class="headerlink" href="#cfg_DefaultTransformations_TextImageLink" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>array(‘’, 100, 50)</p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_DefaultTransformations_TextLink"> <code class="sig-name descname">$cfg['DefaultTransformations']['TextLink']</code><a class="headerlink" href="#cfg_DefaultTransformations_TextLink" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>array(‘’, ‘’, ‘’)</p> </dd> </dl> </dd></dl> </div> <div class="section" id="console-settings"> <h2>Console settings<a class="headerlink" href="#console-settings" title="Permalink to this headline">¶</a></h2> <div class="admonition note"> <p class="admonition-title">Note</p> <p>These settings are mostly meant to be changed by user.</p> </div> <dl class="config option"> <dt id="cfg_Console_StartHistory"> <code class="sig-name descname">$cfg['Console']['StartHistory']</code><a class="headerlink" href="#cfg_Console_StartHistory" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Show query history at start</p> </dd></dl> <dl class="config option"> <dt id="cfg_Console_AlwaysExpand"> <code class="sig-name descname">$cfg['Console']['AlwaysExpand']</code><a class="headerlink" href="#cfg_Console_AlwaysExpand" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Always expand query messages</p> </dd></dl> <dl class="config option"> <dt id="cfg_Console_CurrentQuery"> <code class="sig-name descname">$cfg['Console']['CurrentQuery']</code><a class="headerlink" href="#cfg_Console_CurrentQuery" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Show current browsing query</p> </dd></dl> <dl class="config option"> <dt id="cfg_Console_EnterExecutes"> <code class="sig-name descname">$cfg['Console']['EnterExecutes']</code><a class="headerlink" href="#cfg_Console_EnterExecutes" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Execute queries on Enter and insert new line with Shift+Enter</p> </dd></dl> <dl class="config option"> <dt id="cfg_Console_DarkTheme"> <code class="sig-name descname">$cfg['Console']['DarkTheme']</code><a class="headerlink" href="#cfg_Console_DarkTheme" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Switch to dark theme</p> </dd></dl> <dl class="config option"> <dt id="cfg_Console_Mode"> <code class="sig-name descname">$cfg['Console']['Mode']</code><a class="headerlink" href="#cfg_Console_Mode" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>‘info’</p> </dd> </dl> <p>Console mode</p> </dd></dl> <dl class="config option"> <dt id="cfg_Console_Height"> <code class="sig-name descname">$cfg['Console']['Height']</code><a class="headerlink" href="#cfg_Console_Height" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>92</p> </dd> </dl> <p>Console height</p> </dd></dl> </div> <div class="section" id="developer"> <h2>Developer<a class="headerlink" href="#developer" title="Permalink to this headline">¶</a></h2> <div class="admonition warning"> <p class="admonition-title">Warning</p> <p>These settings might have huge effect on performance or security.</p> </div> <dl class="config option"> <dt id="cfg_environment"> <code class="sig-name descname">$cfg['environment']</code><a class="headerlink" href="#cfg_environment" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'production'</span></code></p> </dd> </dl> <p>Sets the working environment.</p> <p>This only needs to be changed when you are developing phpMyAdmin itself. The <code class="docutils literal notranslate"><span class="pre">development</span></code> mode may display debug information in some places.</p> <p>Possible values are <code class="docutils literal notranslate"><span class="pre">'production'</span></code> or <code class="docutils literal notranslate"><span class="pre">'development'</span></code>.</p> </dd></dl> <dl class="config option"> <dt id="cfg_DBG"> <code class="sig-name descname">$cfg['DBG']</code><a class="headerlink" href="#cfg_DBG" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>[]</p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_DBG_sql"> <code class="sig-name descname">$cfg['DBG']['sql']</code><a class="headerlink" href="#cfg_DBG_sql" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Enable logging queries and execution times to be displayed in the console’s Debug SQL tab.</p> </dd></dl> <dl class="config option"> <dt id="cfg_DBG_sqllog"> <code class="sig-name descname">$cfg['DBG']['sqllog']</code><a class="headerlink" href="#cfg_DBG_sqllog" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Enable logging of queries and execution times to the syslog. Requires <span class="target" id="index-159"></span><a class="reference internal" href="#cfg_DBG_sql"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['DBG']['sql']</span></code></a> to be enabled.</p> </dd></dl> <dl class="config option"> <dt id="cfg_DBG_demo"> <code class="sig-name descname">$cfg['DBG']['demo']</code><a class="headerlink" href="#cfg_DBG_demo" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Enable to let server present itself as demo server. This is used for <a class="reference external" href="https://www.phpmyadmin.net/try/">phpMyAdmin demo server</a>.</p> <p>It currently changes following behavior:</p> <ul class="simple"> <li><p>There is welcome message on the main page.</p></li> <li><p>There is footer information about demo server and used Git revision.</p></li> <li><p>The setup script is enabled even with existing configuration.</p></li> <li><p>The setup does not try to connect to the MySQL server.</p></li> </ul> </dd></dl> <dl class="config option"> <dt id="cfg_DBG_simple2fa"> <code class="sig-name descname">$cfg['DBG']['simple2fa']</code><a class="headerlink" href="#cfg_DBG_simple2fa" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Can be used for testing two-factor authentication using <a class="reference internal" href="two_factor.html#simple2fa"><span class="std std-ref">Simple two-factor authentication</span></a>.</p> </dd></dl> </div> <div class="section" id="examples"> <span id="config-examples"></span><h2>Examples<a class="headerlink" href="#examples" title="Permalink to this headline">¶</a></h2> <p>See following configuration snippets for typical setups of phpMyAdmin.</p> <div class="section" id="basic-example"> <h3>Basic example<a class="headerlink" href="#basic-example" title="Permalink to this headline">¶</a></h3> <p>Example configuration file, which can be copied to <code class="file docutils literal notranslate"><span class="pre">config.inc.php</span></code> to get some core configuration layout; it is distributed with phpMyAdmin as <code class="file docutils literal notranslate"><span class="pre">config.sample.inc.php</span></code>. Please note that it does not contain all configuration options, only the most frequently used ones.</p> <div class="highlight-php notranslate"><div class="highlight"><pre><span></span><span class="o"><?</span><span class="nx">php</span> <span class="sd">/**</span> <span class="sd"> * phpMyAdmin sample configuration, you can use it as base for</span> <span class="sd"> * manual configuration. For easier setup you can use setup/</span> <span class="sd"> *</span> <span class="sd"> * All directives are explained in documentation in the doc/ folder</span> <span class="sd"> * or at <https://docs.phpmyadmin.net/>.</span> <span class="sd"> */</span> <span class="k">declare</span><span class="p">(</span><span class="nx">strict_types</span><span class="o">=</span><span class="mi">1</span><span class="p">);</span> <span class="sd">/**</span> <span class="sd"> * This is needed for cookie based authentication to encrypt password in</span> <span class="sd"> * cookie. Needs to be 32 chars long.</span> <span class="sd"> */</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'blowfish_secret'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">''</span><span class="p">;</span> <span class="cm">/* YOU MUST FILL IN THIS FOR COOKIE AUTH! */</span> <span class="sd">/**</span> <span class="sd"> * Servers configuration</span> <span class="sd"> */</span> <span class="nv">$i</span> <span class="o">=</span> <span class="mi">0</span><span class="p">;</span> <span class="sd">/**</span> <span class="sd"> * First server</span> <span class="sd"> */</span> <span class="nv">$i</span><span class="o">++</span><span class="p">;</span> <span class="cm">/* Authentication type */</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'auth_type'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'cookie'</span><span class="p">;</span> <span class="cm">/* Server parameters */</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'host'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'localhost'</span><span class="p">;</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'compress'</span><span class="p">]</span> <span class="o">=</span> <span class="k">false</span><span class="p">;</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'AllowNoPassword'</span><span class="p">]</span> <span class="o">=</span> <span class="k">false</span><span class="p">;</span> <span class="sd">/**</span> <span class="sd"> * phpMyAdmin configuration storage settings.</span> <span class="sd"> */</span> <span class="cm">/* User used to manipulate with storage */</span> <span class="c1">// $cfg['Servers'][$i]['controlhost'] = '';</span> <span class="c1">// $cfg['Servers'][$i]['controlport'] = '';</span> <span class="c1">// $cfg['Servers'][$i]['controluser'] = 'pma';</span> <span class="c1">// $cfg['Servers'][$i]['controlpass'] = 'pmapass';</span> <span class="cm">/* Storage database and tables */</span> <span class="c1">// $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';</span> <span class="c1">// $cfg['Servers'][$i]['bookmarktable'] = 'pma__bookmark';</span> <span class="c1">// $cfg['Servers'][$i]['relation'] = 'pma__relation';</span> <span class="c1">// $cfg['Servers'][$i]['table_info'] = 'pma__table_info';</span> <span class="c1">// $cfg['Servers'][$i]['table_coords'] = 'pma__table_coords';</span> <span class="c1">// $cfg['Servers'][$i]['pdf_pages'] = 'pma__pdf_pages';</span> <span class="c1">// $cfg['Servers'][$i]['column_info'] = 'pma__column_info';</span> <span class="c1">// $cfg['Servers'][$i]['history'] = 'pma__history';</span> <span class="c1">// $cfg['Servers'][$i]['table_uiprefs'] = 'pma__table_uiprefs';</span> <span class="c1">// $cfg['Servers'][$i]['tracking'] = 'pma__tracking';</span> <span class="c1">// $cfg['Servers'][$i]['userconfig'] = 'pma__userconfig';</span> <span class="c1">// $cfg['Servers'][$i]['recent'] = 'pma__recent';</span> <span class="c1">// $cfg['Servers'][$i]['favorite'] = 'pma__favorite';</span> <span class="c1">// $cfg['Servers'][$i]['users'] = 'pma__users';</span> <span class="c1">// $cfg['Servers'][$i]['usergroups'] = 'pma__usergroups';</span> <span class="c1">// $cfg['Servers'][$i]['navigationhiding'] = 'pma__navigationhiding';</span> <span class="c1">// $cfg['Servers'][$i]['savedsearches'] = 'pma__savedsearches';</span> <span class="c1">// $cfg['Servers'][$i]['central_columns'] = 'pma__central_columns';</span> <span class="c1">// $cfg['Servers'][$i]['designer_settings'] = 'pma__designer_settings';</span> <span class="c1">// $cfg['Servers'][$i]['export_templates'] = 'pma__export_templates';</span> <span class="sd">/**</span> <span class="sd"> * End of servers configuration</span> <span class="sd"> */</span> <span class="sd">/**</span> <span class="sd"> * Directories for saving/loading files from server</span> <span class="sd"> */</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'UploadDir'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">''</span><span class="p">;</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'SaveDir'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">''</span><span class="p">;</span> <span class="sd">/**</span> <span class="sd"> * Whether to display icons or text or both icons and text in table row</span> <span class="sd"> * action segment. Value can be either of 'icons', 'text' or 'both'.</span> <span class="sd"> * default = 'both'</span> <span class="sd"> */</span> <span class="c1">//$cfg['RowActionType'] = 'icons';</span> <span class="sd">/**</span> <span class="sd"> * Defines whether a user should be displayed a "show all (records)"</span> <span class="sd"> * button in browse mode or not.</span> <span class="sd"> * default = false</span> <span class="sd"> */</span> <span class="c1">//$cfg['ShowAll'] = true;</span> <span class="sd">/**</span> <span class="sd"> * Number of rows displayed when browsing a result set. If the result</span> <span class="sd"> * set contains more rows, "Previous" and "Next".</span> <span class="sd"> * Possible values: 25, 50, 100, 250, 500</span> <span class="sd"> * default = 25</span> <span class="sd"> */</span> <span class="c1">//$cfg['MaxRows'] = 50;</span> <span class="sd">/**</span> <span class="sd"> * Disallow editing of binary fields</span> <span class="sd"> * valid values are:</span> <span class="sd"> * false allow editing</span> <span class="sd"> * 'blob' allow editing except for BLOB fields</span> <span class="sd"> * 'noblob' disallow editing except for BLOB fields</span> <span class="sd"> * 'all' disallow editing</span> <span class="sd"> * default = 'blob'</span> <span class="sd"> */</span> <span class="c1">//$cfg['ProtectBinary'] = false;</span> <span class="sd">/**</span> <span class="sd"> * Default language to use, if not browser-defined or user-defined</span> <span class="sd"> * (you find all languages in the locale folder)</span> <span class="sd"> * uncomment the desired line:</span> <span class="sd"> * default = 'en'</span> <span class="sd"> */</span> <span class="c1">//$cfg['DefaultLang'] = 'en';</span> <span class="c1">//$cfg['DefaultLang'] = 'de';</span> <span class="sd">/**</span> <span class="sd"> * How many columns should be used for table display of a database?</span> <span class="sd"> * (a value larger than 1 results in some information being hidden)</span> <span class="sd"> * default = 1</span> <span class="sd"> */</span> <span class="c1">//$cfg['PropertiesNumColumns'] = 2;</span> <span class="sd">/**</span> <span class="sd"> * Set to true if you want DB-based query history.If false, this utilizes</span> <span class="sd"> * JS-routines to display query history (lost by window close)</span> <span class="sd"> *</span> <span class="sd"> * This requires configuration storage enabled, see above.</span> <span class="sd"> * default = false</span> <span class="sd"> */</span> <span class="c1">//$cfg['QueryHistoryDB'] = true;</span> <span class="sd">/**</span> <span class="sd"> * When using DB-based query history, how many entries should be kept?</span> <span class="sd"> * default = 25</span> <span class="sd"> */</span> <span class="c1">//$cfg['QueryHistoryMax'] = 100;</span> <span class="sd">/**</span> <span class="sd"> * Whether or not to query the user before sending the error report to</span> <span class="sd"> * the phpMyAdmin team when a JavaScript error occurs</span> <span class="sd"> *</span> <span class="sd"> * Available options</span> <span class="sd"> * ('ask' | 'always' | 'never')</span> <span class="sd"> * default = 'ask'</span> <span class="sd"> */</span> <span class="c1">//$cfg['SendErrorReports'] = 'always';</span> <span class="sd">/**</span> <span class="sd"> * 'URLQueryEncryption' defines whether phpMyAdmin will encrypt sensitive data from the URL query string.</span> <span class="sd"> * 'URLQueryEncryptionSecretKey' is a 32 bytes long secret key used to encrypt/decrypt the URL query string.</span> <span class="sd"> */</span> <span class="c1">//$cfg['URLQueryEncryption'] = true;</span> <span class="c1">//$cfg['URLQueryEncryptionSecretKey'] = '';</span> <span class="sd">/**</span> <span class="sd"> * You can find more configuration options in the documentation</span> <span class="sd"> * in the doc/ folder or at <https://docs.phpmyadmin.net/>.</span> <span class="sd"> */</span> </pre></div> </div> <div class="admonition warning"> <p class="admonition-title">Warning</p> <p>Don’t use the controluser ‘pma’ if it does not yet exist and don’t use ‘pmapass’ as password.</p> </div> </div> <div class="section" id="example-for-signon-authentication"> <span id="example-signon"></span><h3>Example for signon authentication<a class="headerlink" href="#example-for-signon-authentication" title="Permalink to this headline">¶</a></h3> <p>This example uses <code class="file docutils literal notranslate"><span class="pre">examples/signon.php</span></code> to demonstrate usage of <a class="reference internal" href="setup.html#auth-signon"><span class="std std-ref">Signon authentication mode</span></a>:</p> <div class="highlight-php notranslate"><div class="highlight"><pre><span></span><span class="o"><?</span><span class="nx">php</span> <span class="nv">$i</span> <span class="o">=</span> <span class="mi">0</span><span class="p">;</span> <span class="nv">$i</span><span class="o">++</span><span class="p">;</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'auth_type'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'signon'</span><span class="p">;</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'SignonSession'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'SignonSession'</span><span class="p">;</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'SignonURL'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'examples/signon.php'</span><span class="p">;</span> </pre></div> </div> </div> <div class="section" id="example-for-ip-address-limited-autologin"> <h3>Example for IP address limited autologin<a class="headerlink" href="#example-for-ip-address-limited-autologin" title="Permalink to this headline">¶</a></h3> <p>If you want to automatically login when accessing phpMyAdmin locally while asking for a password when accessing remotely, you can achieve it using following snippet:</p> <div class="highlight-php notranslate"><div class="highlight"><pre><span></span><span class="k">if</span> <span class="p">(</span><span class="nv">$_SERVER</span><span class="p">[</span><span class="s1">'REMOTE_ADDR'</span><span class="p">]</span> <span class="o">===</span> <span class="s1">'127.0.0.1'</span><span class="p">)</span> <span class="p">{</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'auth_type'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'config'</span><span class="p">;</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'user'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'root'</span><span class="p">;</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'password'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'yourpassword'</span><span class="p">;</span> <span class="p">}</span> <span class="k">else</span> <span class="p">{</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'auth_type'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'cookie'</span><span class="p">;</span> <span class="p">}</span> </pre></div> </div> <div class="admonition note"> <p class="admonition-title">Note</p> <p>Filtering based on IP addresses isn’t reliable over the internet, use it only for local address.</p> </div> </div> <div class="section" id="example-for-using-multiple-mysql-servers"> <h3>Example for using multiple MySQL servers<a class="headerlink" href="#example-for-using-multiple-mysql-servers" title="Permalink to this headline">¶</a></h3> <p>You can configure any number of servers using <span class="target" id="index-160"></span><a class="reference internal" href="#cfg_Servers"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers']</span></code></a>, following example shows two of them:</p> <div class="highlight-php notranslate"><div class="highlight"><pre><span></span><span class="o"><?</span><span class="nx">php</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'blowfish_secret'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'multiServerExample70518'</span><span class="p">;</span> <span class="c1">// any string of your choice</span> <span class="nv">$i</span> <span class="o">=</span> <span class="mi">0</span><span class="p">;</span> <span class="nv">$i</span><span class="o">++</span><span class="p">;</span> <span class="c1">// server 1 :</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'auth_type'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'cookie'</span><span class="p">;</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'verbose'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'no1'</span><span class="p">;</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'host'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'localhost'</span><span class="p">;</span> <span class="c1">// more options for #1 ...</span> <span class="nv">$i</span><span class="o">++</span><span class="p">;</span> <span class="c1">// server 2 :</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'auth_type'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'cookie'</span><span class="p">;</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'verbose'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'no2'</span><span class="p">;</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'host'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'remote.host.addr'</span><span class="p">;</span><span class="c1">//or ip:'10.9.8.1'</span> <span class="c1">// this server must allow remote clients, e.g., host 10.9.8.%</span> <span class="c1">// not only in mysql.host but also in the startup configuration</span> <span class="c1">// more options for #2 ...</span> <span class="c1">// end of server sections</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'ServerDefault'</span><span class="p">]</span> <span class="o">=</span> <span class="mi">0</span><span class="p">;</span> <span class="c1">// to choose the server on startup</span> <span class="c1">// further general options ...</span> </pre></div> </div> </div> <div class="section" id="google-cloud-sql-with-ssl"> <span id="example-google-ssl"></span><h3>Google Cloud SQL with SSL<a class="headerlink" href="#google-cloud-sql-with-ssl" title="Permalink to this headline">¶</a></h3> <p>To connect to Google Could SQL, you currently need to disable certificate verification. This is caused by the certificate being issued for CN matching your instance name, but you connect to an IP address and PHP tries to match these two. With verification you end up with error message like:</p> <div class="highlight-text notranslate"><div class="highlight"><pre><span></span>Peer certificate CN=`api-project-851612429544:pmatest' did not match expected CN=`8.8.8.8' </pre></div> </div> <div class="admonition warning"> <p class="admonition-title">Warning</p> <p>With disabled verification your traffic is encrypted, but you’re open to man in the middle attacks.</p> </div> <p>To connect phpMyAdmin to Google Cloud SQL using SSL download the client and server certificates and tell phpMyAdmin to use them:</p> <div class="highlight-php notranslate"><div class="highlight"><pre><span></span><span class="c1">// IP address of your instance</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'host'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'8.8.8.8'</span><span class="p">;</span> <span class="c1">// Use SSL for connection</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'ssl'</span><span class="p">]</span> <span class="o">=</span> <span class="k">true</span><span class="p">;</span> <span class="c1">// Client secret key</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'ssl_key'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'../client-key.pem'</span><span class="p">;</span> <span class="c1">// Client certificate</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'ssl_cert'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'../client-cert.pem'</span><span class="p">;</span> <span class="c1">// Server certification authority</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'ssl_ca'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'../server-ca.pem'</span><span class="p">;</span> <span class="c1">// Disable SSL verification (see above note)</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'ssl_verify'</span><span class="p">]</span> <span class="o">=</span> <span class="k">false</span><span class="p">;</span> </pre></div> </div> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="setup.html#ssl"><span class="std std-ref">Using SSL for connection to database server</span></a>, <span class="target" id="index-161"></span><a class="reference internal" href="#cfg_Servers_ssl"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl']</span></code></a>, <span class="target" id="index-162"></span><a class="reference internal" href="#cfg_Servers_ssl_key"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_key']</span></code></a>, <span class="target" id="index-163"></span><a class="reference internal" href="#cfg_Servers_ssl_cert"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_cert']</span></code></a>, <span class="target" id="index-164"></span><a class="reference internal" href="#cfg_Servers_ssl_ca"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ca']</span></code></a>, <span class="target" id="index-165"></span><a class="reference internal" href="#cfg_Servers_ssl_verify"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_verify']</span></code></a>, <<a class="reference external" href="https://bugs.php.net/bug.php?id=72048">https://bugs.php.net/bug.php?id=72048</a>></p> </div> </div> <div class="section" id="amazon-rds-aurora-with-ssl"> <span id="example-aws-ssl"></span><h3>Amazon RDS Aurora with SSL<a class="headerlink" href="#amazon-rds-aurora-with-ssl" title="Permalink to this headline">¶</a></h3> <p>To connect phpMyAdmin to an Amazon RDS Aurora MySQL database instance using SSL, download the CA server certificate and tell phpMyAdmin to use it:</p> <div class="highlight-php notranslate"><div class="highlight"><pre><span></span><span class="c1">// Address of your instance</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'host'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'replace-me-custer-name.cluster-replace-me-id.replace-me-region.rds.amazonaws.com'</span><span class="p">;</span> <span class="c1">// Use SSL for connection</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'ssl'</span><span class="p">]</span> <span class="o">=</span> <span class="k">true</span><span class="p">;</span> <span class="c1">// You need to have the region CA file and the authority CA file (2019 edition CA for example) in the PEM bundle for it to work</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'ssl_ca'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'../rds-combined-ca-bundle.pem'</span><span class="p">;</span> <span class="c1">// Enable SSL verification</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'ssl_verify'</span><span class="p">]</span> <span class="o">=</span> <span class="k">true</span><span class="p">;</span> </pre></div> </div> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="setup.html#ssl"><span class="std std-ref">Using SSL for connection to database server</span></a>, <span class="target" id="index-166"></span><a class="reference internal" href="#cfg_Servers_ssl"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl']</span></code></a>, <span class="target" id="index-167"></span><a class="reference internal" href="#cfg_Servers_ssl_ca"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ca']</span></code></a>, <span class="target" id="index-168"></span><a class="reference internal" href="#cfg_Servers_ssl_verify"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_verify']</span></code></a></p> </div> <div class="admonition seealso"> <p class="admonition-title">See also</p> <ul class="simple"> <li><p>Current RDS CA bundle for all regions <a class="reference external" href="https://s3.amazonaws.com/rds-downloads/rds-combined-ca-bundle.pem">https://s3.amazonaws.com/rds-downloads/rds-combined-ca-bundle.pem</a></p></li> <li><p>The RDS CA (2019 edition) for the region <cite>eu-west-3</cite> without the parent CA <a class="reference external" href="https://s3.amazonaws.com/rds-downloads/rds-ca-2019-eu-west-3.pem">https://s3.amazonaws.com/rds-downloads/rds-ca-2019-eu-west-3.pem</a></p></li> <li><p><a class="reference external" href="https://s3.amazonaws.com/rds-downloads/">List of available Amazon RDS CA files</a></p></li> <li><p><a class="reference external" href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Security.html">Amazon MySQL Aurora security guide</a></p></li> <li><p><a class="reference external" href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html">Amazon certificates bundles per region</a></p></li> </ul> </div> </div> <div class="section" id="recaptcha-using-hcaptcha"> <h3>reCaptcha using hCaptcha<a class="headerlink" href="#recaptcha-using-hcaptcha" title="Permalink to this headline">¶</a></h3> <div class="highlight-php notranslate"><div class="highlight"><pre><span></span><span class="nv">$cfg</span><span class="p">[</span><span class="s1">'CaptchaApi'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'https://www.hcaptcha.com/1/api.js'</span><span class="p">;</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'CaptchaCsp'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'https://hcaptcha.com https://*.hcaptcha.com'</span><span class="p">;</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'CaptchaRequestParam'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'h-captcha'</span><span class="p">;</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'CaptchaResponseParam'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'h-captcha-response'</span><span class="p">;</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'CaptchaSiteVerifyURL'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'https://hcaptcha.com/siteverify'</span><span class="p">;</span> <span class="c1">// This is the secret key from hCaptcha dashboard</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'CaptchaLoginPrivateKey'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'0xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'</span><span class="p">;</span> <span class="c1">// This is the site key from hCaptcha dashboard</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'CaptchaLoginPublicKey'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'xxx-xxx-xxx-xxx-xxxx'</span><span class="p">;</span> </pre></div> </div> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference external" href="https://www.hcaptcha.com/">hCaptcha website</a></p> </div> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference external" href="https://docs.hcaptcha.com/">hCaptcha Developer Guide</a></p> </div> </div> </div> </div> <div class="clearer"></div> </div> </div> </div> <div class="sphinxsidebar" role="navigation" aria-label="main navigation"> <div class="sphinxsidebarwrapper"> <h3><a href="index.html">Table of Contents</a></h3> <ul> <li><a class="reference internal" href="#">Configuration</a><ul> <li><a class="reference internal" href="#basic-settings">Basic settings</a></li> <li><a class="reference internal" href="#server-connection-settings">Server connection settings</a></li> <li><a class="reference internal" href="#generic-settings">Generic settings</a></li> <li><a class="reference internal" href="#cookie-authentication-options">Cookie authentication options</a></li> <li><a class="reference internal" href="#navigation-panel-setup">Navigation panel setup</a></li> <li><a class="reference internal" href="#main-panel">Main panel</a></li> <li><a class="reference internal" href="#database-structure">Database structure</a></li> <li><a class="reference internal" href="#browse-mode">Browse mode</a></li> <li><a class="reference internal" href="#editing-mode">Editing mode</a></li> <li><a class="reference internal" href="#export-and-import-settings">Export and import settings</a></li> <li><a class="reference internal" href="#tabs-display-settings">Tabs display settings</a></li> <li><a class="reference internal" href="#pdf-options">PDF Options</a></li> <li><a class="reference internal" href="#languages">Languages</a></li> <li><a class="reference internal" href="#web-server-settings">Web server settings</a></li> <li><a class="reference internal" href="#theme-settings">Theme settings</a></li> <li><a class="reference internal" href="#design-customization">Design customization</a></li> <li><a class="reference internal" href="#text-fields">Text fields</a></li> <li><a class="reference internal" href="#sql-query-box-settings">SQL query box settings</a></li> <li><a class="reference internal" href="#web-server-upload-save-import-directories">Web server upload/save/import directories</a></li> <li><a class="reference internal" href="#various-display-setting">Various display setting</a></li> <li><a class="reference internal" href="#page-titles">Page titles</a></li> <li><a class="reference internal" href="#theme-manager-settings">Theme manager settings</a></li> <li><a class="reference internal" href="#default-queries">Default queries</a></li> <li><a class="reference internal" href="#mysql-settings">MySQL settings</a></li> <li><a class="reference internal" href="#default-options-for-transformations">Default options for Transformations</a></li> <li><a class="reference internal" href="#console-settings">Console settings</a></li> <li><a class="reference internal" href="#developer">Developer</a></li> <li><a class="reference internal" href="#examples">Examples</a><ul> <li><a class="reference internal" href="#basic-example">Basic example</a></li> <li><a class="reference internal" href="#example-for-signon-authentication">Example for signon authentication</a></li> <li><a class="reference internal" href="#example-for-ip-address-limited-autologin">Example for IP address limited autologin</a></li> <li><a class="reference internal" href="#example-for-using-multiple-mysql-servers">Example for using multiple MySQL servers</a></li> <li><a class="reference internal" href="#google-cloud-sql-with-ssl">Google Cloud SQL with SSL</a></li> <li><a class="reference internal" href="#amazon-rds-aurora-with-ssl">Amazon RDS Aurora with SSL</a></li> <li><a class="reference internal" href="#recaptcha-using-hcaptcha">reCaptcha using hCaptcha</a></li> </ul> </li> </ul> </li> </ul> <h4>Previous topic</h4> <p class="topless"><a href="setup.html" title="previous chapter">Installation</a></p> <h4>Next topic</h4> <p class="topless"><a href="user.html" title="next chapter">User Guide</a></p> <div role="note" aria-label="source link"> <h3>This Page</h3> <ul class="this-page-menu"> <li><a href="_sources/config.rst.txt" rel="nofollow">Show Source</a></li> </ul> </div> <div id="searchbox" style="display: none" role="search"> <h3 id="searchlabel">Quick search</h3> <div class="searchformwrapper"> <form class="search" action="search.html" method="get"> <input type="text" name="q" aria-labelledby="searchlabel" /> <input type="submit" value="Go" /> </form> </div> </div> <script>$('#searchbox').show(0);</script> </div> </div> <div class="clearer"></div> </div> <div class="related" role="navigation" aria-label="related navigation"> <h3>Navigation</h3> <ul> <li class="right" style="margin-right: 10px"> <a href="genindex.html" title="General Index" >index</a></li> <li class="right" > <a href="user.html" title="User Guide" >next</a> |</li> <li class="right" > <a href="setup.html" title="Installation" >previous</a> |</li> <li class="nav-item nav-item-0"><a href="index.html">phpMyAdmin 5.2.0 documentation</a> »</li> <li class="nav-item nav-item-this"><a href="">Configuration</a></li> </ul> </div> <div class="footer" role="contentinfo"> © <a href="copyright.html">Copyright</a> 2012 - 2021, The phpMyAdmin devel team. Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 3.4.3. </div> </body> </html>Evidence PHP errorSolution Disable debugging messages before pushing to production.
-
Private IP Disclosure (1)
GET http://localhost/phpmyadmin/doc/html/config.html
Alert tags Alert description A private IP (such as 10.x.x.x, 172.x.x.x, 192.168.x.x) or an Amazon EC2 private hostname (for example, ip-10-0-56-78) has been found in the HTTP response body. This information might be helpful for further attacks targeting internal systems.
Other info 192.168.10.1
192.168.100.50
192.168.100.100
192.168.5.10
192.168.6.10
192.168.5.50
192.168.6.10
192.168.6.10
192.168.5.50
10.9.8.1
Request Request line and header section (355 bytes)
GET http://localhost/phpmyadmin/doc/html/config.html HTTP/1.1 host: localhost user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 pragma: no-cache cache-control: no-cache referer: http://localhost/phpmyadmin/ Cookie: pma_lang=en; phpMyAdmin=610f86c60f00a8f4dc92fe660c217e62Request body (0 bytes)
Response Status line and header section (287 bytes)
HTTP/1.1 200 OK Date: Sat, 19 Apr 2025 15:17:46 GMT Server: Apache/2.4.54 (Unix) OpenSSL/1.1.1s PHP/7.4.33 mod_perl/2.0.12 Perl/v5.34.1 Last-Modified: Wed, 11 May 2022 04:39:14 GMT ETag: "56378-5deb505f5e080" Accept-Ranges: bytes Content-Length: 353144 Content-Type: text/htmlResponse body (353144 bytes)
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Configuration — phpMyAdmin 5.2.0 documentation</title> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> <link rel="stylesheet" href="_static/classic.css" type="text/css" /> <script id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script> <script src="_static/jquery.js"></script> <script src="_static/underscore.js"></script> <script src="_static/doctools.js"></script> <link rel="index" title="Index" href="genindex.html" /> <link rel="search" title="Search" href="search.html" /> <link rel="copyright" title="Copyright" href="copyright.html" /> <link rel="next" title="User Guide" href="user.html" /> <link rel="prev" title="Installation" href="setup.html" /> </head><body> <div class="related" role="navigation" aria-label="related navigation"> <h3>Navigation</h3> <ul> <li class="right" style="margin-right: 10px"> <a href="genindex.html" title="General Index" accesskey="I">index</a></li> <li class="right" > <a href="user.html" title="User Guide" accesskey="N">next</a> |</li> <li class="right" > <a href="setup.html" title="Installation" accesskey="P">previous</a> |</li> <li class="nav-item nav-item-0"><a href="index.html">phpMyAdmin 5.2.0 documentation</a> »</li> <li class="nav-item nav-item-this"><a href="">Configuration</a></li> </ul> </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body" role="main"> <div class="section" id="configuration"> <span id="config"></span><span id="index-0"></span><h1>Configuration<a class="headerlink" href="#configuration" title="Permalink to this headline">¶</a></h1> <p>All configurable data is placed in <code class="file docutils literal notranslate"><span class="pre">config.inc.php</span></code> in phpMyAdmin’s toplevel directory. If this file does not exist, please refer to the <a class="reference internal" href="setup.html#setup"><span class="std std-ref">Installation</span></a> section to create one. This file only needs to contain the parameters you want to change from their corresponding default value in <code class="file docutils literal notranslate"><span class="pre">libraries/config.default.php</span></code> (this file is not intended for changes).</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="#config-examples"><span class="std std-ref">Examples</span></a> for examples of configurations</p> </div> <p>If a directive is missing from your file, you can just add another line with the file. This file is for over-writing the defaults; if you wish to use the default value there’s no need to add a line here.</p> <p>The parameters which relate to design (like colors) are placed in <code class="file docutils literal notranslate"><span class="pre">themes/themename/scss/_variables.scss</span></code>. You might also want to create <code class="file docutils literal notranslate"><span class="pre">config.footer.inc.php</span></code> and <code class="file docutils literal notranslate"><span class="pre">config.header.inc.php</span></code> files to add your site specific code to be included on start and end of each page.</p> <div class="admonition note"> <p class="admonition-title">Note</p> <p>Some distributions (eg. Debian or Ubuntu) store <code class="file docutils literal notranslate"><span class="pre">config.inc.php</span></code> in <code class="docutils literal notranslate"><span class="pre">/etc/phpmyadmin</span></code> instead of within phpMyAdmin sources.</p> </div> <div class="section" id="basic-settings"> <h2>Basic settings<a class="headerlink" href="#basic-settings" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_PmaAbsoluteUri"> <code class="sig-name descname">$cfg['PmaAbsoluteUri']</code><a class="headerlink" href="#cfg_PmaAbsoluteUri" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionchanged"> <p><span class="versionmodified changed">Changed in version 4.6.5: </span>This setting was not available in phpMyAdmin 4.6.0 - 4.6.4.</p> </div> <p>Sets here the complete <a class="reference internal" href="glossary.html#term-URL"><span class="xref std std-term">URL</span></a> (with full path) to your phpMyAdmin installation’s directory. E.g. <code class="docutils literal notranslate"><span class="pre">https://www.example.net/path_to_your_phpMyAdmin_directory/</span></code>. Note also that the <a class="reference internal" href="glossary.html#term-URL"><span class="xref std std-term">URL</span></a> on most of web servers are case sensitive (even on Windows). Don’t forget the trailing slash at the end.</p> <p>Starting with version 2.3.0, it is advisable to try leaving this blank. In most cases phpMyAdmin automatically detects the proper setting. Users of port forwarding or complex reverse proxy setup might need to set this.</p> <p>A good test is to browse a table, edit a row and save it. There should be an error message if phpMyAdmin is having trouble auto–detecting the correct value. If you get an error that this must be set or if the autodetect code fails to detect your path, please post a bug report on our bug tracker so we can improve the code.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="faq.html#faq1-40"><span class="std std-ref">1.40 When accessing phpMyAdmin via an Apache reverse proxy, cookie login does not work.</span></a>, <a class="reference internal" href="faq.html#faq2-5"><span class="std std-ref">2.5 Each time I want to insert or change a row or drop a database or a table, an error 404 (page not found) is displayed or, with HTTP or cookie authentication, I’m asked to log in again. What’s wrong?</span></a>, <a class="reference internal" href="faq.html#faq4-7"><span class="std std-ref">4.7 Authentication window is displayed more than once, why?</span></a>, <a class="reference internal" href="faq.html#faq5-16"><span class="std std-ref">5.16 With Internet Explorer, I get “Access is denied” Javascript errors. Or I cannot make phpMyAdmin work under Windows.</span></a></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_PmaNoRelation_DisableWarning"> <code class="sig-name descname">$cfg['PmaNoRelation_DisableWarning']</code><a class="headerlink" href="#cfg_PmaNoRelation_DisableWarning" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Starting with version 2.3.0 phpMyAdmin offers a lot of features to work with master / foreign – tables (see <span class="target" id="index-1"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a>).</p> <p>If you tried to set this up and it does not work for you, have a look on the <span class="guilabel">Structure</span> page of one database where you would like to use it. You will find a link that will analyze why those features have been disabled.</p> <p>If you do not want to use those features set this variable to <code class="docutils literal notranslate"><span class="pre">true</span></code> to stop this message from appearing.</p> </dd></dl> <dl class="config option"> <dt id="cfg_AuthLog"> <code class="sig-name descname">$cfg['AuthLog']</code><a class="headerlink" href="#cfg_AuthLog" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'auto'</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 4.8.0: </span>This is supported since phpMyAdmin 4.8.0.</p> </div> <p>Configure authentication logging destination. Failed (or all, depending on <span class="target" id="index-2"></span><a class="reference internal" href="#cfg_AuthLogSuccess"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['AuthLogSuccess']</span></code></a>) authentication attempts will be logged according to this directive:</p> <dl class="simple"> <dt><code class="docutils literal notranslate"><span class="pre">auto</span></code></dt><dd><p>Let phpMyAdmin automatically choose between <code class="docutils literal notranslate"><span class="pre">syslog</span></code> and <code class="docutils literal notranslate"><span class="pre">php</span></code>.</p> </dd> <dt><code class="docutils literal notranslate"><span class="pre">syslog</span></code></dt><dd><p>Log using syslog, using AUTH facility, on most systems this ends up in <code class="file docutils literal notranslate"><span class="pre">/var/log/auth.log</span></code>.</p> </dd> <dt><code class="docutils literal notranslate"><span class="pre">php</span></code></dt><dd><p>Log into PHP error log.</p> </dd> <dt><code class="docutils literal notranslate"><span class="pre">sapi</span></code></dt><dd><p>Log into PHP SAPI logging.</p> </dd> <dt><code class="docutils literal notranslate"><span class="pre">/path/to/file</span></code></dt><dd><p>Any other value is treated as a filename and log entries are written there.</p> </dd> </dl> <div class="admonition note"> <p class="admonition-title">Note</p> <p>When logging to a file, make sure its permissions are correctly set for a web server user, the setup should closely match instructions described in <span class="target" id="index-3"></span><a class="reference internal" href="#cfg_TempDir"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['TempDir']</span></code></a>:</p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_AuthLogSuccess"> <code class="sig-name descname">$cfg['AuthLogSuccess']</code><a class="headerlink" href="#cfg_AuthLogSuccess" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 4.8.0: </span>This is supported since phpMyAdmin 4.8.0.</p> </div> <p>Whether to log successful authentication attempts into <span class="target" id="index-4"></span><a class="reference internal" href="#cfg_AuthLog"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['AuthLog']</span></code></a>.</p> </dd></dl> <dl class="config option"> <dt id="cfg_SuhosinDisableWarning"> <code class="sig-name descname">$cfg['SuhosinDisableWarning']</code><a class="headerlink" href="#cfg_SuhosinDisableWarning" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>A warning is displayed on the main page if Suhosin is detected.</p> <p>You can set this parameter to <code class="docutils literal notranslate"><span class="pre">true</span></code> to stop this message from appearing.</p> </dd></dl> <dl class="config option"> <dt id="cfg_LoginCookieValidityDisableWarning"> <code class="sig-name descname">$cfg['LoginCookieValidityDisableWarning']</code><a class="headerlink" href="#cfg_LoginCookieValidityDisableWarning" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>A warning is displayed on the main page if the PHP parameter session.gc_maxlifetime is lower than cookie validity configured in phpMyAdmin.</p> <p>You can set this parameter to <code class="docutils literal notranslate"><span class="pre">true</span></code> to stop this message from appearing.</p> </dd></dl> <dl class="config option"> <dt id="cfg_ServerLibraryDifference_DisableWarning"> <code class="sig-name descname">$cfg['ServerLibraryDifference_DisableWarning']</code><a class="headerlink" href="#cfg_ServerLibraryDifference_DisableWarning" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <div class="deprecated"> <p><span class="versionmodified deprecated">Deprecated since version 4.7.0: </span>This setting was removed as the warning has been removed as well.</p> </div> <p>A warning is displayed on the main page if there is a difference between the MySQL library and server version.</p> <p>You can set this parameter to <code class="docutils literal notranslate"><span class="pre">true</span></code> to stop this message from appearing.</p> </dd></dl> <dl class="config option"> <dt id="cfg_ReservedWordDisableWarning"> <code class="sig-name descname">$cfg['ReservedWordDisableWarning']</code><a class="headerlink" href="#cfg_ReservedWordDisableWarning" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>This warning is displayed on the Structure page of a table if one or more column names match with words which are MySQL reserved.</p> <p>If you want to turn off this warning, you can set it to <code class="docutils literal notranslate"><span class="pre">true</span></code> and warning will no longer be displayed.</p> </dd></dl> <dl class="config option"> <dt id="cfg_TranslationWarningThreshold"> <code class="sig-name descname">$cfg['TranslationWarningThreshold']</code><a class="headerlink" href="#cfg_TranslationWarningThreshold" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>80</p> </dd> </dl> <p>Show warning about incomplete translations on certain threshold.</p> </dd></dl> <dl class="config option"> <dt id="cfg_SendErrorReports"> <code class="sig-name descname">$cfg['SendErrorReports']</code><a class="headerlink" href="#cfg_SendErrorReports" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'ask'</span></code></p> </dd> </dl> <p>Valid values are:</p> <ul class="simple"> <li><p><code class="docutils literal notranslate"><span class="pre">ask</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">always</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">never</span></code></p></li> </ul> <p>Sets the default behavior for JavaScript error reporting.</p> <p>Whenever an error is detected in the JavaScript execution, an error report may be sent to the phpMyAdmin team if the user agrees.</p> <p>The default setting of <code class="docutils literal notranslate"><span class="pre">'ask'</span></code> will ask the user everytime there is a new error report. However you can set this parameter to <code class="docutils literal notranslate"><span class="pre">'always'</span></code> to send error reports without asking for confirmation or you can set it to <code class="docutils literal notranslate"><span class="pre">'never'</span></code> to never send error reports.</p> <p>This directive is available both in the configuration file and in users preferences. If the person in charge of a multi-user installation prefers to disable this feature for all users, a value of <code class="docutils literal notranslate"><span class="pre">'never'</span></code> should be set, and the <span class="target" id="index-5"></span><a class="reference internal" href="#cfg_UserprefsDisallow"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['UserprefsDisallow']</span></code></a> directive should contain <code class="docutils literal notranslate"><span class="pre">'SendErrorReports'</span></code> in one of its array values.</p> </dd></dl> <dl class="config option"> <dt id="cfg_ConsoleEnterExecutes"> <code class="sig-name descname">$cfg['ConsoleEnterExecutes']</code><a class="headerlink" href="#cfg_ConsoleEnterExecutes" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Setting this to <code class="docutils literal notranslate"><span class="pre">true</span></code> allows the user to execute queries by pressing Enter instead of Ctrl+Enter. A new line can be inserted by pressing Shift+Enter.</p> <p>The behaviour of the console can be temporarily changed using console’s settings interface.</p> </dd></dl> <dl class="config option"> <dt id="cfg_AllowThirdPartyFraming"> <code class="sig-name descname">$cfg['AllowThirdPartyFraming']</code><a class="headerlink" href="#cfg_AllowThirdPartyFraming" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean|string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Setting this to <code class="docutils literal notranslate"><span class="pre">true</span></code> allows phpMyAdmin to be included inside a frame, and is a potential security hole allowing cross-frame scripting attacks or clickjacking. Setting this to ‘sameorigin’ prevents phpMyAdmin to be included from another document in a frame, unless that document belongs to the same domain.</p> </dd></dl> </div> <div class="section" id="server-connection-settings"> <h2>Server connection settings<a class="headerlink" href="#server-connection-settings" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_Servers"> <code class="sig-name descname">$cfg['Servers']</code><a class="headerlink" href="#cfg_Servers" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>one server array with settings listed below</p> </dd> </dl> <p>Since version 1.4.2, phpMyAdmin supports the administration of multiple MySQL servers. Therefore, a <span class="target" id="index-6"></span><a class="reference internal" href="#cfg_Servers"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers']</span></code></a>-array has been added which contains the login information for the different servers. The first <span class="target" id="index-7"></span><a class="reference internal" href="#cfg_Servers_host"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['host']</span></code></a> contains the hostname of the first server, the second <span class="target" id="index-8"></span><a class="reference internal" href="#cfg_Servers_host"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['host']</span></code></a> the hostname of the second server, etc. In <code class="file docutils literal notranslate"><span class="pre">libraries/config.default.php</span></code>, there is only one section for server definition, however you can put as many as you need in <code class="file docutils literal notranslate"><span class="pre">config.inc.php</span></code>, copy that block or needed parts (you don’t have to define all settings, just those you need to change).</p> <div class="admonition note"> <p class="admonition-title">Note</p> <p>The <span class="target" id="index-9"></span><a class="reference internal" href="#cfg_Servers"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers']</span></code></a> array starts with $cfg[‘Servers’][1]. Do not use $cfg[‘Servers’][0]. If you want more than one server, just copy following section (including $i increment) several times. There is no need to define full server array, just define values you need to change.</p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_host"> <code class="sig-name descname">$cfg['Servers'][$i]['host']</code><a class="headerlink" href="#cfg_Servers_host" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'localhost'</span></code></p> </dd> </dl> <p>The hostname or <a class="reference internal" href="glossary.html#term-IP"><span class="xref std std-term">IP</span></a> address of your $i-th MySQL-server. E.g. <code class="docutils literal notranslate"><span class="pre">localhost</span></code>.</p> <p>Possible values are:</p> <ul class="simple"> <li><p>hostname, e.g., <code class="docutils literal notranslate"><span class="pre">'localhost'</span></code> or <code class="docutils literal notranslate"><span class="pre">'mydb.example.org'</span></code></p></li> <li><p>IP address, e.g., <code class="docutils literal notranslate"><span class="pre">'127.0.0.1'</span></code> or <code class="docutils literal notranslate"><span class="pre">'192.168.10.1'</span></code></p></li> <li><p>IPv6 address, e.g. <code class="docutils literal notranslate"><span class="pre">2001:cdba:0000:0000:0000:0000:3257:9652</span></code></p></li> <li><p>dot - <code class="docutils literal notranslate"><span class="pre">'.'</span></code>, i.e., use named pipes on windows systems</p></li> <li><p>empty - <code class="docutils literal notranslate"><span class="pre">''</span></code>, disables this server</p></li> </ul> <div class="admonition note"> <p class="admonition-title">Note</p> <p>The hostname <code class="docutils literal notranslate"><span class="pre">localhost</span></code> is handled specially by MySQL and it uses the socket based connection protocol. To use TCP/IP networking, use an IP address or hostname such as <code class="docutils literal notranslate"><span class="pre">127.0.0.1</span></code> or <code class="docutils literal notranslate"><span class="pre">db.example.com</span></code>. You can configure the path to the socket with <span class="target" id="index-10"></span><a class="reference internal" href="#cfg_Servers_socket"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['socket']</span></code></a>.</p> </div> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><span class="target" id="index-11"></span><a class="reference internal" href="#cfg_Servers_port"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['port']</span></code></a>, <<a class="reference external" href="https://dev.mysql.com/doc/refman/8.0/en/connecting.html">https://dev.mysql.com/doc/refman/8.0/en/connecting.html</a>></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_port"> <code class="sig-name descname">$cfg['Servers'][$i]['port']</code><a class="headerlink" href="#cfg_Servers_port" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>The port-number of your $i-th MySQL-server. Default is 3306 (leave blank).</p> <div class="admonition note"> <p class="admonition-title">Note</p> <p>If you use <code class="docutils literal notranslate"><span class="pre">localhost</span></code> as the hostname, MySQL ignores this port number and connects with the socket, so if you want to connect to a port different from the default port, use <code class="docutils literal notranslate"><span class="pre">127.0.0.1</span></code> or the real hostname in <span class="target" id="index-12"></span><a class="reference internal" href="#cfg_Servers_host"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['host']</span></code></a>.</p> </div> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><span class="target" id="index-13"></span><a class="reference internal" href="#cfg_Servers_host"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['host']</span></code></a>, <<a class="reference external" href="https://dev.mysql.com/doc/refman/8.0/en/connecting.html">https://dev.mysql.com/doc/refman/8.0/en/connecting.html</a>></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_socket"> <code class="sig-name descname">$cfg['Servers'][$i]['socket']</code><a class="headerlink" href="#cfg_Servers_socket" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>The path to the socket to use. Leave blank for default. To determine the correct socket, check your MySQL configuration or, using the <strong class="command">mysql</strong> command–line client, issue the <code class="docutils literal notranslate"><span class="pre">status</span></code> command. Among the resulting information displayed will be the socket used.</p> <div class="admonition note"> <p class="admonition-title">Note</p> <p>This takes effect only if <span class="target" id="index-14"></span><a class="reference internal" href="#cfg_Servers_host"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['host']</span></code></a> is set to <code class="docutils literal notranslate"><span class="pre">localhost</span></code>.</p> </div> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><span class="target" id="index-15"></span><a class="reference internal" href="#cfg_Servers_host"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['host']</span></code></a>, <<a class="reference external" href="https://dev.mysql.com/doc/refman/8.0/en/connecting.html">https://dev.mysql.com/doc/refman/8.0/en/connecting.html</a>></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_ssl"> <code class="sig-name descname">$cfg['Servers'][$i]['ssl']</code><a class="headerlink" href="#cfg_Servers_ssl" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Whether to enable SSL for the connection between phpMyAdmin and the MySQL server to secure the connection.</p> <p>When using the <code class="docutils literal notranslate"><span class="pre">'mysql'</span></code> extension, none of the remaining <code class="docutils literal notranslate"><span class="pre">'ssl...'</span></code> configuration options apply.</p> <p>We strongly recommend the <code class="docutils literal notranslate"><span class="pre">'mysqli'</span></code> extension when using this option.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="setup.html#ssl"><span class="std std-ref">Using SSL for connection to database server</span></a>, <a class="reference internal" href="#example-google-ssl"><span class="std std-ref">Google Cloud SQL with SSL</span></a>, <a class="reference internal" href="#example-aws-ssl"><span class="std std-ref">Amazon RDS Aurora with SSL</span></a>, <span class="target" id="index-16"></span><a class="reference internal" href="#cfg_Servers_ssl_key"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_key']</span></code></a>, <span class="target" id="index-17"></span><a class="reference internal" href="#cfg_Servers_ssl_cert"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_cert']</span></code></a>, <span class="target" id="index-18"></span><a class="reference internal" href="#cfg_Servers_ssl_ca"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ca']</span></code></a>, <span class="target" id="index-19"></span><a class="reference internal" href="#cfg_Servers_ssl_ca_path"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ca_path']</span></code></a>, <span class="target" id="index-20"></span><a class="reference internal" href="#cfg_Servers_ssl_ciphers"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ciphers']</span></code></a>, <span class="target" id="index-21"></span><a class="reference internal" href="#cfg_Servers_ssl_verify"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_verify']</span></code></a></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_ssl_key"> <code class="sig-name descname">$cfg['Servers'][$i]['ssl_key']</code><a class="headerlink" href="#cfg_Servers_ssl_key" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>NULL</p> </dd> </dl> <p>Path to the client key file when using SSL for connecting to the MySQL server. This is used to authenticate the client to the server.</p> <p>For example:</p> <div class="highlight-php notranslate"><div class="highlight"><pre><span></span><span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'ssl_key'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'/etc/mysql/server-key.pem'</span><span class="p">;</span> </pre></div> </div> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="setup.html#ssl"><span class="std std-ref">Using SSL for connection to database server</span></a>, <a class="reference internal" href="#example-google-ssl"><span class="std std-ref">Google Cloud SQL with SSL</span></a>, <a class="reference internal" href="#example-aws-ssl"><span class="std std-ref">Amazon RDS Aurora with SSL</span></a>, <span class="target" id="index-22"></span><a class="reference internal" href="#cfg_Servers_ssl"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl']</span></code></a>, <span class="target" id="index-23"></span><a class="reference internal" href="#cfg_Servers_ssl_cert"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_cert']</span></code></a>, <span class="target" id="index-24"></span><a class="reference internal" href="#cfg_Servers_ssl_ca"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ca']</span></code></a>, <span class="target" id="index-25"></span><a class="reference internal" href="#cfg_Servers_ssl_ca_path"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ca_path']</span></code></a>, <span class="target" id="index-26"></span><a class="reference internal" href="#cfg_Servers_ssl_ciphers"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ciphers']</span></code></a>, <span class="target" id="index-27"></span><a class="reference internal" href="#cfg_Servers_ssl_verify"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_verify']</span></code></a></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_ssl_cert"> <code class="sig-name descname">$cfg['Servers'][$i]['ssl_cert']</code><a class="headerlink" href="#cfg_Servers_ssl_cert" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>NULL</p> </dd> </dl> <p>Path to the client certificate file when using SSL for connecting to the MySQL server. This is used to authenticate the client to the server.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="setup.html#ssl"><span class="std std-ref">Using SSL for connection to database server</span></a>, <a class="reference internal" href="#example-google-ssl"><span class="std std-ref">Google Cloud SQL with SSL</span></a>, <a class="reference internal" href="#example-aws-ssl"><span class="std std-ref">Amazon RDS Aurora with SSL</span></a>, <span class="target" id="index-28"></span><a class="reference internal" href="#cfg_Servers_ssl"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl']</span></code></a>, <span class="target" id="index-29"></span><a class="reference internal" href="#cfg_Servers_ssl_key"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_key']</span></code></a>, <span class="target" id="index-30"></span><a class="reference internal" href="#cfg_Servers_ssl_ca"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ca']</span></code></a>, <span class="target" id="index-31"></span><a class="reference internal" href="#cfg_Servers_ssl_ca_path"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ca_path']</span></code></a>, <span class="target" id="index-32"></span><a class="reference internal" href="#cfg_Servers_ssl_ciphers"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ciphers']</span></code></a>, <span class="target" id="index-33"></span><a class="reference internal" href="#cfg_Servers_ssl_verify"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_verify']</span></code></a></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_ssl_ca"> <code class="sig-name descname">$cfg['Servers'][$i]['ssl_ca']</code><a class="headerlink" href="#cfg_Servers_ssl_ca" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>NULL</p> </dd> </dl> <p>Path to the CA file when using SSL for connecting to the MySQL server.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="setup.html#ssl"><span class="std std-ref">Using SSL for connection to database server</span></a>, <a class="reference internal" href="#example-google-ssl"><span class="std std-ref">Google Cloud SQL with SSL</span></a>, <a class="reference internal" href="#example-aws-ssl"><span class="std std-ref">Amazon RDS Aurora with SSL</span></a>, <span class="target" id="index-34"></span><a class="reference internal" href="#cfg_Servers_ssl"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl']</span></code></a>, <span class="target" id="index-35"></span><a class="reference internal" href="#cfg_Servers_ssl_key"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_key']</span></code></a>, <span class="target" id="index-36"></span><a class="reference internal" href="#cfg_Servers_ssl_cert"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_cert']</span></code></a>, <span class="target" id="index-37"></span><a class="reference internal" href="#cfg_Servers_ssl_ca_path"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ca_path']</span></code></a>, <span class="target" id="index-38"></span><a class="reference internal" href="#cfg_Servers_ssl_ciphers"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ciphers']</span></code></a>, <span class="target" id="index-39"></span><a class="reference internal" href="#cfg_Servers_ssl_verify"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_verify']</span></code></a></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_ssl_ca_path"> <code class="sig-name descname">$cfg['Servers'][$i]['ssl_ca_path']</code><a class="headerlink" href="#cfg_Servers_ssl_ca_path" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>NULL</p> </dd> </dl> <p>Directory containing trusted SSL CA certificates in PEM format.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="setup.html#ssl"><span class="std std-ref">Using SSL for connection to database server</span></a>, <a class="reference internal" href="#example-google-ssl"><span class="std std-ref">Google Cloud SQL with SSL</span></a>, <a class="reference internal" href="#example-aws-ssl"><span class="std std-ref">Amazon RDS Aurora with SSL</span></a>, <span class="target" id="index-40"></span><a class="reference internal" href="#cfg_Servers_ssl"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl']</span></code></a>, <span class="target" id="index-41"></span><a class="reference internal" href="#cfg_Servers_ssl_key"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_key']</span></code></a>, <span class="target" id="index-42"></span><a class="reference internal" href="#cfg_Servers_ssl_cert"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_cert']</span></code></a>, <span class="target" id="index-43"></span><a class="reference internal" href="#cfg_Servers_ssl_ca"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ca']</span></code></a>, <span class="target" id="index-44"></span><a class="reference internal" href="#cfg_Servers_ssl_ciphers"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ciphers']</span></code></a>, <span class="target" id="index-45"></span><a class="reference internal" href="#cfg_Servers_ssl_verify"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_verify']</span></code></a></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_ssl_ciphers"> <code class="sig-name descname">$cfg['Servers'][$i]['ssl_ciphers']</code><a class="headerlink" href="#cfg_Servers_ssl_ciphers" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>NULL</p> </dd> </dl> <p>List of allowable ciphers for SSL connections to the MySQL server.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="setup.html#ssl"><span class="std std-ref">Using SSL for connection to database server</span></a>, <a class="reference internal" href="#example-google-ssl"><span class="std std-ref">Google Cloud SQL with SSL</span></a>, <a class="reference internal" href="#example-aws-ssl"><span class="std std-ref">Amazon RDS Aurora with SSL</span></a>, <span class="target" id="index-46"></span><a class="reference internal" href="#cfg_Servers_ssl"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl']</span></code></a>, <span class="target" id="index-47"></span><a class="reference internal" href="#cfg_Servers_ssl_key"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_key']</span></code></a>, <span class="target" id="index-48"></span><a class="reference internal" href="#cfg_Servers_ssl_cert"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_cert']</span></code></a>, <span class="target" id="index-49"></span><a class="reference internal" href="#cfg_Servers_ssl_ca"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ca']</span></code></a>, <span class="target" id="index-50"></span><a class="reference internal" href="#cfg_Servers_ssl_ca_path"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ca_path']</span></code></a>, <span class="target" id="index-51"></span><a class="reference internal" href="#cfg_Servers_ssl_verify"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_verify']</span></code></a></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_ssl_verify"> <code class="sig-name descname">$cfg['Servers'][$i]['ssl_verify']</code><a class="headerlink" href="#cfg_Servers_ssl_verify" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 4.6.0: </span>This is supported since phpMyAdmin 4.6.0.</p> </div> <p>If your PHP install uses the MySQL Native Driver (mysqlnd), your MySQL server is 5.6 or later, and your SSL certificate is self-signed, there is a chance your SSL connection will fail due to validation. Setting this to <code class="docutils literal notranslate"><span class="pre">false</span></code> will disable the validation check.</p> <p>Since PHP 5.6.0 it also verifies whether server name matches CN of its certificate. There is currently no way to disable just this check without disabling complete SSL verification.</p> <div class="admonition warning"> <p class="admonition-title">Warning</p> <p>Disabling the certificate verification defeats purpose of using SSL. This will make the connection vulnerable to man in the middle attacks.</p> </div> <div class="admonition note"> <p class="admonition-title">Note</p> <p>This flag only works with PHP 5.6.16 or later.</p> </div> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="setup.html#ssl"><span class="std std-ref">Using SSL for connection to database server</span></a>, <a class="reference internal" href="#example-google-ssl"><span class="std std-ref">Google Cloud SQL with SSL</span></a>, <a class="reference internal" href="#example-aws-ssl"><span class="std std-ref">Amazon RDS Aurora with SSL</span></a>, <span class="target" id="index-52"></span><a class="reference internal" href="#cfg_Servers_ssl"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl']</span></code></a>, <span class="target" id="index-53"></span><a class="reference internal" href="#cfg_Servers_ssl_key"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_key']</span></code></a>, <span class="target" id="index-54"></span><a class="reference internal" href="#cfg_Servers_ssl_cert"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_cert']</span></code></a>, <span class="target" id="index-55"></span><a class="reference internal" href="#cfg_Servers_ssl_ca"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ca']</span></code></a>, <span class="target" id="index-56"></span><a class="reference internal" href="#cfg_Servers_ssl_ca_path"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ca_path']</span></code></a>, <span class="target" id="index-57"></span><a class="reference internal" href="#cfg_Servers_ssl_ciphers"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ciphers']</span></code></a>, <span class="target" id="index-58"></span><a class="reference internal" href="#cfg_Servers_ssl_verify"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_verify']</span></code></a></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_connect_type"> <code class="sig-name descname">$cfg['Servers'][$i]['connect_type']</code><a class="headerlink" href="#cfg_Servers_connect_type" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'tcp'</span></code></p> </dd> </dl> <div class="deprecated"> <p><span class="versionmodified deprecated">Deprecated since version 4.7.0: </span>This setting is no longer used as of 4.7.0, since MySQL decides the connection type based on host, so it could lead to unexpected results. Please set <span class="target" id="index-59"></span><a class="reference internal" href="#cfg_Servers_host"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['host']</span></code></a> accordingly instead.</p> </div> <p>What type connection to use with the MySQL server. Your options are <code class="docutils literal notranslate"><span class="pre">'socket'</span></code> and <code class="docutils literal notranslate"><span class="pre">'tcp'</span></code>. It defaults to tcp as that is nearly guaranteed to be available on all MySQL servers, while sockets are not supported on some platforms. To use the socket mode, your MySQL server must be on the same machine as the Web server.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_compress"> <code class="sig-name descname">$cfg['Servers'][$i]['compress']</code><a class="headerlink" href="#cfg_Servers_compress" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Whether to use a compressed protocol for the MySQL server connection or not (experimental).</p> </dd></dl> <span class="target" id="controlhost"></span><dl class="config option"> <dt id="cfg_Servers_controlhost"> <code class="sig-name descname">$cfg['Servers'][$i]['controlhost']</code><a class="headerlink" href="#cfg_Servers_controlhost" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>Permits to use an alternate host to hold the configuration storage data.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><span class="target" id="index-60"></span><a class="reference internal" href="#cfg_Servers_control_*"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['control_*']</span></code></a></p> </div> </dd></dl> <span class="target" id="controlport"></span><dl class="config option"> <dt id="cfg_Servers_controlport"> <code class="sig-name descname">$cfg['Servers'][$i]['controlport']</code><a class="headerlink" href="#cfg_Servers_controlport" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>Permits to use an alternate port to connect to the host that holds the configuration storage.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><span class="target" id="index-61"></span><a class="reference internal" href="#cfg_Servers_control_*"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['control_*']</span></code></a></p> </div> </dd></dl> <span class="target" id="controluser"></span><dl class="config option"> <dt id="cfg_Servers_controluser"> <code class="sig-name descname">$cfg['Servers'][$i]['controluser']</code><a class="headerlink" href="#cfg_Servers_controluser" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_controlpass"> <code class="sig-name descname">$cfg['Servers'][$i]['controlpass']</code><a class="headerlink" href="#cfg_Servers_controlpass" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>This special account is used to access <a class="reference internal" href="setup.html#linked-tables"><span class="std std-ref">phpMyAdmin configuration storage</span></a>. You don’t need it in single user case, but if phpMyAdmin is shared it is recommended to give access to <a class="reference internal" href="setup.html#linked-tables"><span class="std std-ref">phpMyAdmin configuration storage</span></a> only to this user and configure phpMyAdmin to use it. All users will then be able to use the features without need to have direct access to <a class="reference internal" href="setup.html#linked-tables"><span class="std std-ref">phpMyAdmin configuration storage</span></a>.</p> <div class="versionchanged"> <p><span class="versionmodified changed">Changed in version 2.2.5: </span>those were called <code class="docutils literal notranslate"><span class="pre">stduser</span></code> and <code class="docutils literal notranslate"><span class="pre">stdpass</span></code></p> </div> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="setup.html#setup"><span class="std std-ref">Installation</span></a>, <a class="reference internal" href="setup.html#authentication-modes"><span class="std std-ref">Using authentication modes</span></a>, <a class="reference internal" href="setup.html#linked-tables"><span class="std std-ref">phpMyAdmin configuration storage</span></a>, <span class="target" id="index-62"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a>, <span class="target" id="index-63"></span><a class="reference internal" href="#cfg_Servers_controlhost"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['controlhost']</span></code></a>, <span class="target" id="index-64"></span><a class="reference internal" href="#cfg_Servers_controlport"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['controlport']</span></code></a>, <span class="target" id="index-65"></span><a class="reference internal" href="#cfg_Servers_control_*"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['control_*']</span></code></a></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_control_*"> <code class="sig-name descname">$cfg['Servers'][$i]['control_*']</code><a class="headerlink" href="#cfg_Servers_control_*" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>mixed</p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 4.7.0.</span></p> </div> <p>You can change any MySQL connection setting for control link (used to access <a class="reference internal" href="setup.html#linked-tables"><span class="std std-ref">phpMyAdmin configuration storage</span></a>) using configuration prefixed with <code class="docutils literal notranslate"><span class="pre">control_</span></code>.</p> <p>This can be used to change any aspect of the control connection, which by default uses same parameters as the user one.</p> <p>For example you can configure SSL for the control connection:</p> <div class="highlight-php notranslate"><div class="highlight"><pre><span></span><span class="c1">// Enable SSL</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'control_ssl'</span><span class="p">]</span> <span class="o">=</span> <span class="k">true</span><span class="p">;</span> <span class="c1">// Client secret key</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'control_ssl_key'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'../client-key.pem'</span><span class="p">;</span> <span class="c1">// Client certificate</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'control_ssl_cert'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'../client-cert.pem'</span><span class="p">;</span> <span class="c1">// Server certification authority</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'control_ssl_ca'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'../server-ca.pem'</span><span class="p">;</span> </pre></div> </div> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><span class="target" id="index-66"></span><a class="reference internal" href="#cfg_Servers_ssl"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl']</span></code></a>, <span class="target" id="index-67"></span><a class="reference internal" href="#cfg_Servers_ssl_key"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_key']</span></code></a>, <span class="target" id="index-68"></span><a class="reference internal" href="#cfg_Servers_ssl_cert"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_cert']</span></code></a>, <span class="target" id="index-69"></span><a class="reference internal" href="#cfg_Servers_ssl_ca"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ca']</span></code></a>, <span class="target" id="index-70"></span><a class="reference internal" href="#cfg_Servers_ssl_ca_path"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ca_path']</span></code></a>, <span class="target" id="index-71"></span><a class="reference internal" href="#cfg_Servers_ssl_ciphers"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ciphers']</span></code></a>, <span class="target" id="index-72"></span><a class="reference internal" href="#cfg_Servers_ssl_verify"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_verify']</span></code></a></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_auth_type"> <code class="sig-name descname">$cfg['Servers'][$i]['auth_type']</code><a class="headerlink" href="#cfg_Servers_auth_type" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'cookie'</span></code></p> </dd> </dl> <p>Whether config or cookie or <a class="reference internal" href="glossary.html#term-HTTP"><span class="xref std std-term">HTTP</span></a> or signon authentication should be used for this server.</p> <ul class="simple"> <li><p>‘config’ authentication (<code class="docutils literal notranslate"><span class="pre">$auth_type</span> <span class="pre">=</span> <span class="pre">'config'</span></code>) is the plain old way: username and password are stored in <code class="file docutils literal notranslate"><span class="pre">config.inc.php</span></code>.</p></li> <li><p>‘cookie’ authentication mode (<code class="docutils literal notranslate"><span class="pre">$auth_type</span> <span class="pre">=</span> <span class="pre">'cookie'</span></code>) allows you to log in as any valid MySQL user with the help of cookies.</p></li> <li><p>‘http’ authentication allows you to log in as any valid MySQL user via HTTP-Auth.</p></li> <li><p>‘signon’ authentication mode (<code class="docutils literal notranslate"><span class="pre">$auth_type</span> <span class="pre">=</span> <span class="pre">'signon'</span></code>) allows you to log in from prepared PHP session data or using supplied PHP script.</p></li> </ul> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="setup.html#authentication-modes"><span class="std std-ref">Using authentication modes</span></a></p> </div> </dd></dl> <span class="target" id="servers-auth-http-realm"></span><dl class="config option"> <dt id="cfg_Servers_auth_http_realm"> <code class="sig-name descname">$cfg['Servers'][$i]['auth_http_realm']</code><a class="headerlink" href="#cfg_Servers_auth_http_realm" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>When using auth_type = <code class="docutils literal notranslate"><span class="pre">http</span></code>, this field allows to define a custom <a class="reference internal" href="glossary.html#term-HTTP"><span class="xref std std-term">HTTP</span></a> Basic Auth Realm which will be displayed to the user. If not explicitly specified in your configuration, a string combined of “phpMyAdmin ” and either <span class="target" id="index-73"></span><a class="reference internal" href="#cfg_Servers_verbose"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['verbose']</span></code></a> or <span class="target" id="index-74"></span><a class="reference internal" href="#cfg_Servers_host"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['host']</span></code></a> will be used.</p> </dd></dl> <span class="target" id="servers-auth-swekey-config"></span><dl class="config option"> <dt id="cfg_Servers_auth_swekey_config"> <code class="sig-name descname">$cfg['Servers'][$i]['auth_swekey_config']</code><a class="headerlink" href="#cfg_Servers_auth_swekey_config" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 3.0.0.0: </span>This setting was named <cite>$cfg[‘Servers’][$i][‘auth_feebee_config’]</cite> and was renamed before the <cite>3.0.0.0</cite> release.</p> </div> <div class="deprecated"> <p><span class="versionmodified deprecated">Deprecated since version 4.6.4: </span>This setting was removed because their servers are no longer working and it was not working correctly.</p> </div> <div class="deprecated"> <p><span class="versionmodified deprecated">Deprecated since version 4.0.10.17: </span>This setting was removed in a maintenance release because their servers are no longer working and it was not working correctly.</p> </div> <p>The name of the file containing swekey ids and login names for hardware authentication. Leave empty to deactivate this feature.</p> </dd></dl> <span class="target" id="servers-user"></span><dl class="config option"> <dt id="cfg_Servers_user"> <code class="sig-name descname">$cfg['Servers'][$i]['user']</code><a class="headerlink" href="#cfg_Servers_user" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'root'</span></code></p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_password"> <code class="sig-name descname">$cfg['Servers'][$i]['password']</code><a class="headerlink" href="#cfg_Servers_password" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>When using <span class="target" id="index-75"></span><a class="reference internal" href="#cfg_Servers_auth_type"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['auth_type']</span></code></a> set to ‘config’, this is the user/password-pair which phpMyAdmin will use to connect to the MySQL server. This user/password pair is not needed when <a class="reference internal" href="glossary.html#term-HTTP"><span class="xref std std-term">HTTP</span></a> or cookie authentication is used and should be empty.</p> </dd></dl> <span class="target" id="servers-nopassword"></span><dl class="config option"> <dt id="cfg_Servers_nopassword"> <code class="sig-name descname">$cfg['Servers'][$i]['nopassword']</code><a class="headerlink" href="#cfg_Servers_nopassword" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <div class="deprecated"> <p><span class="versionmodified deprecated">Deprecated since version 4.7.0: </span>This setting was removed as it can produce unexpected results.</p> </div> <p>Allow attempt to log in without password when a login with password fails. This can be used together with http authentication, when authentication is done some other way and phpMyAdmin gets user name from auth and uses empty password for connecting to MySQL. Password login is still tried first, but as fallback, no password method is tried.</p> </dd></dl> <span class="target" id="servers-only-db"></span><dl class="config option"> <dt id="cfg_Servers_only_db"> <code class="sig-name descname">$cfg['Servers'][$i]['only_db']</code><a class="headerlink" href="#cfg_Servers_only_db" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>If set to a (an array of) database name(s), only this (these) database(s) will be shown to the user. Since phpMyAdmin 2.2.1, this/these database(s) name(s) may contain MySQL wildcards characters (“_” and “%”): if you want to use literal instances of these characters, escape them (I.E. use <code class="docutils literal notranslate"><span class="pre">'my\_db'</span></code> and not <code class="docutils literal notranslate"><span class="pre">'my_db'</span></code>).</p> <p>This setting is an efficient way to lower the server load since the latter does not need to send MySQL requests to build the available database list. But <strong>it does not replace the privileges rules of the MySQL database server</strong>. If set, it just means only these databases will be displayed but <strong>not that all other databases can’t be used.</strong></p> <p>An example of using more that one database:</p> <div class="highlight-php notranslate"><div class="highlight"><pre><span></span><span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'only_db'</span><span class="p">]</span> <span class="o">=</span> <span class="p">[</span><span class="s1">'db1'</span><span class="p">,</span> <span class="s1">'db2'</span><span class="p">];</span> </pre></div> </div> <div class="versionchanged"> <p><span class="versionmodified changed">Changed in version 4.0.0: </span>Previous versions permitted to specify the display order of the database names via this directive.</p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_hide_db"> <code class="sig-name descname">$cfg['Servers'][$i]['hide_db']</code><a class="headerlink" href="#cfg_Servers_hide_db" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>Regular expression for hiding some databases from unprivileged users. This only hides them from listing, but a user is still able to access them (using, for example, the SQL query area). To limit access, use the MySQL privilege system. For example, to hide all databases starting with the letter “a”, use</p> <div class="highlight-php notranslate"><div class="highlight"><pre><span></span><span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'hide_db'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'^a'</span><span class="p">;</span> </pre></div> </div> <p>and to hide both “db1” and “db2” use</p> <div class="highlight-php notranslate"><div class="highlight"><pre><span></span><span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'hide_db'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'^(db1|db2)$'</span><span class="p">;</span> </pre></div> </div> <p>More information on regular expressions can be found in the <a class="reference external" href="https://www.php.net/manual/en/reference.pcre.pattern.syntax.php">PCRE pattern syntax</a> portion of the PHP reference manual.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_verbose"> <code class="sig-name descname">$cfg['Servers'][$i]['verbose']</code><a class="headerlink" href="#cfg_Servers_verbose" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>Only useful when using phpMyAdmin with multiple server entries. If set, this string will be displayed instead of the hostname in the pull-down menu on the main page. This can be useful if you want to show only certain databases on your system, for example. For HTTP auth, all non-US-ASCII characters will be stripped.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_extension"> <code class="sig-name descname">$cfg['Servers'][$i]['extension']</code><a class="headerlink" href="#cfg_Servers_extension" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'mysqli'</span></code></p> </dd> </dl> <div class="deprecated"> <p><span class="versionmodified deprecated">Deprecated since version 4.2.0: </span>This setting was removed. The <code class="docutils literal notranslate"><span class="pre">mysql</span></code> extension will only be used when the <code class="docutils literal notranslate"><span class="pre">mysqli</span></code> extension is not available. As of 5.0.0, only the <code class="docutils literal notranslate"><span class="pre">mysqli</span></code> extension can be used.</p> </div> <p>The PHP MySQL extension to use (<code class="docutils literal notranslate"><span class="pre">mysql</span></code> or <code class="docutils literal notranslate"><span class="pre">mysqli</span></code>).</p> <p>It is recommended to use <code class="docutils literal notranslate"><span class="pre">mysqli</span></code> in all installations.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_pmadb"> <code class="sig-name descname">$cfg['Servers'][$i]['pmadb']</code><a class="headerlink" href="#cfg_Servers_pmadb" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>The name of the database containing the phpMyAdmin configuration storage.</p> <p>See the <a class="reference internal" href="setup.html#linked-tables"><span class="std std-ref">phpMyAdmin configuration storage</span></a> section in this document to see the benefits of this feature, and for a quick way of creating this database and the needed tables.</p> <p>If you are the only user of this phpMyAdmin installation, you can use your current database to store those special tables; in this case, just put your current database name in <span class="target" id="index-76"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a>. For a multi-user installation, set this parameter to the name of your central database containing the phpMyAdmin configuration storage.</p> </dd></dl> <span class="target" id="bookmark"></span><dl class="config option"> <dt id="cfg_Servers_bookmarktable"> <code class="sig-name descname">$cfg['Servers'][$i]['bookmarktable']</code><a class="headerlink" href="#cfg_Servers_bookmarktable" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or false</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 2.2.0.</span></p> </div> <p>Since release 2.2.0 phpMyAdmin allows users to bookmark queries. This can be useful for queries you often run. To allow the usage of this functionality:</p> <ul class="simple"> <li><p>set up <span class="target" id="index-77"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</p></li> <li><p>enter the table name in <span class="target" id="index-78"></span><a class="reference internal" href="#cfg_Servers_bookmarktable"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['bookmarktable']</span></code></a></p></li> </ul> <p>This feature can be disabled by setting the configuration to <code class="docutils literal notranslate"><span class="pre">false</span></code>.</p> </dd></dl> <span class="target" id="relation"></span><dl class="config option"> <dt id="cfg_Servers_relation"> <code class="sig-name descname">$cfg['Servers'][$i]['relation']</code><a class="headerlink" href="#cfg_Servers_relation" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or false</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 2.2.4.</span></p> </div> <p>Since release 2.2.4 you can describe, in a special ‘relation’ table, which column is a key in another table (a foreign key). phpMyAdmin currently uses this to:</p> <ul class="simple"> <li><p>make clickable, when you browse the master table, the data values that point to the foreign table;</p></li> <li><p>display in an optional tool-tip the “display column” when browsing the master table, if you move the mouse to a column containing a foreign key (use also the ‘table_info’ table); (see <a class="reference internal" href="faq.html#faqdisplay"><span class="std std-ref">6.7 How can I use the “display column” feature?</span></a>)</p></li> <li><p>in edit/insert mode, display a drop-down list of possible foreign keys (key value and “display column” are shown) (see <a class="reference internal" href="faq.html#faq6-21"><span class="std std-ref">6.21 In edit/insert mode, how can I see a list of possible values for a column, based on some foreign table?</span></a>)</p></li> <li><p>display links on the table properties page, to check referential integrity (display missing foreign keys) for each described key;</p></li> <li><p>in query-by-example, create automatic joins (see <a class="reference internal" href="faq.html#faq6-6"><span class="std std-ref">6.6 How can I use the relation table in Query-by-example?</span></a>)</p></li> <li><p>enable you to get a <a class="reference internal" href="glossary.html#term-PDF"><span class="xref std std-term">PDF</span></a> schema of your database (also uses the table_coords table).</p></li> </ul> <p>The keys can be numeric or character.</p> <p>To allow the usage of this functionality:</p> <ul class="simple"> <li><p>set up <span class="target" id="index-79"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</p></li> <li><p>put the relation table name in <span class="target" id="index-80"></span><a class="reference internal" href="#cfg_Servers_relation"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['relation']</span></code></a></p></li> <li><p>now as normal user open phpMyAdmin and for each one of your tables where you want to use this feature, click <span class="guilabel">Structure/Relation view/</span> and choose foreign columns.</p></li> </ul> <p>This feature can be disabled by setting the configuration to <code class="docutils literal notranslate"><span class="pre">false</span></code>.</p> <div class="admonition note"> <p class="admonition-title">Note</p> <p>In the current version, <code class="docutils literal notranslate"><span class="pre">master_db</span></code> must be the same as <code class="docutils literal notranslate"><span class="pre">foreign_db</span></code>. Those columns have been put in future development of the cross-db relations.</p> </div> </dd></dl> <span class="target" id="table-info"></span><dl class="config option"> <dt id="cfg_Servers_table_info"> <code class="sig-name descname">$cfg['Servers'][$i]['table_info']</code><a class="headerlink" href="#cfg_Servers_table_info" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or false</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 2.3.0.</span></p> </div> <p>Since release 2.3.0 you can describe, in a special ‘table_info’ table, which column is to be displayed as a tool-tip when moving the cursor over the corresponding key. This configuration variable will hold the name of this special table. To allow the usage of this functionality:</p> <ul class="simple"> <li><p>set up <span class="target" id="index-81"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</p></li> <li><p>put the table name in <span class="target" id="index-82"></span><a class="reference internal" href="#cfg_Servers_table_info"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['table_info']</span></code></a> (e.g. <code class="docutils literal notranslate"><span class="pre">pma__table_info</span></code>)</p></li> <li><p>then for each table where you want to use this feature, click “Structure/Relation view/Choose column to display” to choose the column.</p></li> </ul> <p>This feature can be disabled by setting the configuration to <code class="docutils literal notranslate"><span class="pre">false</span></code>.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="faq.html#faqdisplay"><span class="std std-ref">6.7 How can I use the “display column” feature?</span></a></p> </div> </dd></dl> <span class="target" id="table-coords"></span><dl class="config option"> <dt id="cfg_Servers_table_coords"> <code class="sig-name descname">$cfg['Servers'][$i]['table_coords']</code><a class="headerlink" href="#cfg_Servers_table_coords" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or false</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>The designer feature can save your page layout; by pressing the “Save page” or “Save page as” button in the expanding designer menu, you can customize the layout and have it loaded the next time you use the designer. That layout is stored in this table. Furthermore, this table is also required for using the PDF relation export feature, see <span class="target" id="index-83"></span><a class="reference internal" href="#cfg_Servers_pdf_pages"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pdf_pages']</span></code></a> for additional details.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_pdf_pages"> <code class="sig-name descname">$cfg['Servers'][$i]['pdf_pages']</code><a class="headerlink" href="#cfg_Servers_pdf_pages" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or false</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 2.3.0.</span></p> </div> <p>Since release 2.3.0 you can have phpMyAdmin create <a class="reference internal" href="glossary.html#term-PDF"><span class="xref std std-term">PDF</span></a> pages showing the relations between your tables. Further, the designer interface permits visually managing the relations. To do this it needs two tables “pdf_pages” (storing information about the available <a class="reference internal" href="glossary.html#term-PDF"><span class="xref std std-term">PDF</span></a> pages) and “table_coords” (storing coordinates where each table will be placed on a <a class="reference internal" href="glossary.html#term-PDF"><span class="xref std std-term">PDF</span></a> schema output). You must be using the “relation” feature.</p> <p>To allow the usage of this functionality:</p> <ul class="simple"> <li><p>set up <span class="target" id="index-84"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</p></li> <li><p>put the correct table names in <span class="target" id="index-85"></span><a class="reference internal" href="#cfg_Servers_table_coords"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['table_coords']</span></code></a> and <span class="target" id="index-86"></span><a class="reference internal" href="#cfg_Servers_pdf_pages"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pdf_pages']</span></code></a></p></li> </ul> <p>This feature can be disabled by setting either of the configurations to <code class="docutils literal notranslate"><span class="pre">false</span></code>.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="faq.html#faqpdf"><span class="std std-ref">6.8 How can I produce a PDF schema of my database?</span></a>.</p> </div> </dd></dl> <span class="target" id="designer-coords"></span><dl class="config option"> <dt id="cfg_Servers_designer_coords"> <code class="sig-name descname">$cfg['Servers'][$i]['designer_coords']</code><a class="headerlink" href="#cfg_Servers_designer_coords" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 2.10.0: </span>Since release 2.10.0 a Designer interface is available; it permits to visually manage the relations.</p> </div> <div class="deprecated"> <p><span class="versionmodified deprecated">Deprecated since version 4.3.0: </span>This setting was removed and the Designer table positioning data is now stored into <span class="target" id="index-87"></span><a class="reference internal" href="#cfg_Servers_table_coords"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['table_coords']</span></code></a>.</p> </div> <div class="admonition note"> <p class="admonition-title">Note</p> <p>You can now delete the table <cite>pma__designer_coords</cite> from your phpMyAdmin configuration storage database and remove <span class="target" id="index-88"></span><a class="reference internal" href="#cfg_Servers_designer_coords"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['designer_coords']</span></code></a> from your configuration file.</p> </div> </dd></dl> <span class="target" id="col-com"></span><dl class="config option"> <dt id="cfg_Servers_column_info"> <code class="sig-name descname">$cfg['Servers'][$i]['column_info']</code><a class="headerlink" href="#cfg_Servers_column_info" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or false</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 2.3.0.</span></p> </div> <p>This part requires a content update! Since release 2.3.0 you can store comments to describe each column for each table. These will then be shown on the “printview”.</p> <p>Starting with release 2.5.0, comments are consequently used on the table property pages and table browse view, showing up as tool-tips above the column name (properties page) or embedded within the header of table in browse view. They can also be shown in a table dump. Please see the relevant configuration directives later on.</p> <p>Also new in release 2.5.0 is a MIME- transformation system which is also based on the following table structure. See <a class="reference internal" href="transformations.html#transformations"><span class="std std-ref">Transformations</span></a> for further information. To use the MIME- transformation system, your column_info table has to have the three new columns ‘mimetype’, ‘transformation’, ‘transformation_options’.</p> <p>Starting with release 4.3.0, a new input-oriented transformation system has been introduced. Also, backward compatibility code used in the old transformations system was removed. As a result, an update to column_info table is necessary for previous transformations and the new input-oriented transformation system to work. phpMyAdmin will upgrade it automatically for you by analyzing your current column_info table structure. However, if something goes wrong with the auto-upgrade then you can use the SQL script found in <code class="docutils literal notranslate"><span class="pre">./sql/upgrade_column_info_4_3_0+.sql</span></code> to upgrade it manually.</p> <p>To allow the usage of this functionality:</p> <ul> <li><p>set up <span class="target" id="index-89"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</p></li> <li><p>put the table name in <span class="target" id="index-90"></span><a class="reference internal" href="#cfg_Servers_column_info"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['column_info']</span></code></a> (e.g. <code class="docutils literal notranslate"><span class="pre">pma__column_info</span></code>)</p></li> <li><p>to update your PRE-2.5.0 Column_comments table use this: and remember that the Variable in <code class="file docutils literal notranslate"><span class="pre">config.inc.php</span></code> has been renamed from <code class="samp docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['column_comments']</span></code> to <span class="target" id="index-91"></span><a class="reference internal" href="#cfg_Servers_column_info"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['column_info']</span></code></a></p> <div class="highlight-mysql notranslate"><div class="highlight"><pre><span></span><span class="k">ALTER</span> <span class="k">TABLE</span> <span class="n">`pma__column_comments`</span> <span class="k">ADD</span> <span class="n">`mimetype`</span> <span class="kt">VARCHAR</span><span class="p">(</span> <span class="mi">255</span> <span class="p">)</span> <span class="k">NOT</span> <span class="no">NULL</span><span class="p">,</span> <span class="k">ADD</span> <span class="n">`transformation`</span> <span class="kt">VARCHAR</span><span class="p">(</span> <span class="mi">255</span> <span class="p">)</span> <span class="k">NOT</span> <span class="no">NULL</span><span class="p">,</span> <span class="k">ADD</span> <span class="n">`transformation_options`</span> <span class="kt">VARCHAR</span><span class="p">(</span> <span class="mi">255</span> <span class="p">)</span> <span class="k">NOT</span> <span class="no">NULL</span><span class="p">;</span> </pre></div> </div> </li> <li><p>to update your PRE-4.3.0 Column_info table manually use this <code class="docutils literal notranslate"><span class="pre">./sql/upgrade_column_info_4_3_0+.sql</span></code> SQL script.</p></li> </ul> <p>This feature can be disabled by setting the configuration to <code class="docutils literal notranslate"><span class="pre">false</span></code>.</p> <div class="admonition note"> <p class="admonition-title">Note</p> <p>For auto-upgrade functionality to work, your <span class="target" id="index-92"></span><a class="reference internal" href="#cfg_Servers_controluser"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['controluser']</span></code></a> must have ALTER privilege on <code class="docutils literal notranslate"><span class="pre">phpmyadmin</span></code> database. See the <a class="reference external" href="https://dev.mysql.com/doc/refman/8.0/en/grant.html">MySQL documentation for GRANT</a> on how to <code class="docutils literal notranslate"><span class="pre">GRANT</span></code> privileges to a user.</p> </div> </dd></dl> <span class="target" id="history"></span><dl class="config option"> <dt id="cfg_Servers_history"> <code class="sig-name descname">$cfg['Servers'][$i]['history']</code><a class="headerlink" href="#cfg_Servers_history" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or false</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 2.5.0.</span></p> </div> <p>Since release 2.5.0 you can store your <a class="reference internal" href="glossary.html#term-SQL"><span class="xref std std-term">SQL</span></a> history, which means all queries you entered manually into the phpMyAdmin interface. If you don’t want to use a table-based history, you can use the JavaScript-based history.</p> <p>Using that, all your history items are deleted when closing the window. Using <span class="target" id="index-93"></span><a class="reference internal" href="#cfg_QueryHistoryMax"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['QueryHistoryMax']</span></code></a> you can specify an amount of history items you want to have on hold. On every login, this list gets cut to the maximum amount.</p> <p>The query history is only available if JavaScript is enabled in your browser.</p> <p>To allow the usage of this functionality:</p> <ul class="simple"> <li><p>set up <span class="target" id="index-94"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</p></li> <li><p>put the table name in <span class="target" id="index-95"></span><a class="reference internal" href="#cfg_Servers_history"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['history']</span></code></a> (e.g. <code class="docutils literal notranslate"><span class="pre">pma__history</span></code>)</p></li> </ul> <p>This feature can be disabled by setting the configuration to <code class="docutils literal notranslate"><span class="pre">false</span></code>.</p> </dd></dl> <span class="target" id="recent"></span><dl class="config option"> <dt id="cfg_Servers_recent"> <code class="sig-name descname">$cfg['Servers'][$i]['recent']</code><a class="headerlink" href="#cfg_Servers_recent" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or false</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 3.5.0.</span></p> </div> <p>Since release 3.5.0 you can show recently used tables in the navigation panel. It helps you to jump across table directly, without the need to select the database, and then select the table. Using <span class="target" id="index-96"></span><a class="reference internal" href="#cfg_NumRecentTables"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['NumRecentTables']</span></code></a> you can configure the maximum number of recent tables shown. When you select a table from the list, it will jump to the page specified in <span class="target" id="index-97"></span><a class="reference internal" href="#cfg_NavigationTreeDefaultTabTable"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['NavigationTreeDefaultTabTable']</span></code></a>.</p> <p>Without configuring the storage, you can still access the recently used tables, but it will disappear after you logout.</p> <p>To allow the usage of this functionality persistently:</p> <ul class="simple"> <li><p>set up <span class="target" id="index-98"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</p></li> <li><p>put the table name in <span class="target" id="index-99"></span><a class="reference internal" href="#cfg_Servers_recent"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['recent']</span></code></a> (e.g. <code class="docutils literal notranslate"><span class="pre">pma__recent</span></code>)</p></li> </ul> <p>This feature can be disabled by setting the configuration to <code class="docutils literal notranslate"><span class="pre">false</span></code>.</p> </dd></dl> <span class="target" id="favorite"></span><dl class="config option"> <dt id="cfg_Servers_favorite"> <code class="sig-name descname">$cfg['Servers'][$i]['favorite']</code><a class="headerlink" href="#cfg_Servers_favorite" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or false</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 4.2.0.</span></p> </div> <p>Since release 4.2.0 you can show a list of selected tables in the navigation panel. It helps you to jump to the table directly, without the need to select the database, and then select the table. When you select a table from the list, it will jump to the page specified in <span class="target" id="index-100"></span><a class="reference internal" href="#cfg_NavigationTreeDefaultTabTable"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['NavigationTreeDefaultTabTable']</span></code></a>.</p> <p>You can add tables to this list or remove tables from it in database structure page by clicking on the star icons next to table names. Using <span class="target" id="index-101"></span><a class="reference internal" href="#cfg_NumFavoriteTables"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['NumFavoriteTables']</span></code></a> you can configure the maximum number of favorite tables shown.</p> <p>Without configuring the storage, you can still access the favorite tables, but it will disappear after you logout.</p> <p>To allow the usage of this functionality persistently:</p> <ul class="simple"> <li><p>set up <span class="target" id="index-102"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</p></li> <li><p>put the table name in <span class="target" id="index-103"></span><a class="reference internal" href="#cfg_Servers_favorite"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['favorite']</span></code></a> (e.g. <code class="docutils literal notranslate"><span class="pre">pma__favorite</span></code>)</p></li> </ul> <p>This feature can be disabled by setting the configuration to <code class="docutils literal notranslate"><span class="pre">false</span></code>.</p> </dd></dl> <span class="target" id="table-uiprefs"></span><dl class="config option"> <dt id="cfg_Servers_table_uiprefs"> <code class="sig-name descname">$cfg['Servers'][$i]['table_uiprefs']</code><a class="headerlink" href="#cfg_Servers_table_uiprefs" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or false</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 3.5.0.</span></p> </div> <p>Since release 3.5.0 phpMyAdmin can be configured to remember several things (sorted column <span class="target" id="index-104"></span><a class="reference internal" href="#cfg_RememberSorting"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['RememberSorting']</span></code></a>, column order, and column visibility from a database table) for browsing tables. Without configuring the storage, these features still can be used, but the values will disappear after you logout.</p> <p>To allow the usage of these functionality persistently:</p> <ul class="simple"> <li><p>set up <span class="target" id="index-105"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</p></li> <li><p>put the table name in <span class="target" id="index-106"></span><a class="reference internal" href="#cfg_Servers_table_uiprefs"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['table_uiprefs']</span></code></a> (e.g. <code class="docutils literal notranslate"><span class="pre">pma__table_uiprefs</span></code>)</p></li> </ul> <p>This feature can be disabled by setting the configuration to <code class="docutils literal notranslate"><span class="pre">false</span></code>.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_users"> <code class="sig-name descname">$cfg['Servers'][$i]['users']</code><a class="headerlink" href="#cfg_Servers_users" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or false</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>The table used by phpMyAdmin to store user name information for associating with user groups. See the next entry on <span class="target" id="index-107"></span><a class="reference internal" href="#cfg_Servers_usergroups"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['usergroups']</span></code></a> for more details and the suggested settings.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_usergroups"> <code class="sig-name descname">$cfg['Servers'][$i]['usergroups']</code><a class="headerlink" href="#cfg_Servers_usergroups" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or false</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 4.1.0.</span></p> </div> <p>Since release 4.1.0 you can create different user groups with menu items attached to them. Users can be assigned to these groups and the logged in user would only see menu items configured to the usergroup they are assigned to. To do this it needs two tables “usergroups” (storing allowed menu items for each user group) and “users” (storing users and their assignments to user groups).</p> <p>To allow the usage of this functionality:</p> <ul class="simple"> <li><p>set up <span class="target" id="index-108"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</p></li> <li><p>put the correct table names in <span class="target" id="index-109"></span><a class="reference internal" href="#cfg_Servers_users"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['users']</span></code></a> (e.g. <code class="docutils literal notranslate"><span class="pre">pma__users</span></code>) and <span class="target" id="index-110"></span><a class="reference internal" href="#cfg_Servers_usergroups"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['usergroups']</span></code></a> (e.g. <code class="docutils literal notranslate"><span class="pre">pma__usergroups</span></code>)</p></li> </ul> <p>This feature can be disabled by setting either of the configurations to <code class="docutils literal notranslate"><span class="pre">false</span></code>.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="privileges.html#configurablemenus"><span class="std std-ref">Configurable menus and user groups</span></a></p> </div> </dd></dl> <span class="target" id="navigationhiding"></span><dl class="config option"> <dt id="cfg_Servers_navigationhiding"> <code class="sig-name descname">$cfg['Servers'][$i]['navigationhiding']</code><a class="headerlink" href="#cfg_Servers_navigationhiding" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or false</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 4.1.0.</span></p> </div> <p>Since release 4.1.0 you can hide/show items in the navigation tree.</p> <p>To allow the usage of this functionality:</p> <ul class="simple"> <li><p>set up <span class="target" id="index-111"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</p></li> <li><p>put the table name in <span class="target" id="index-112"></span><a class="reference internal" href="#cfg_Servers_navigationhiding"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['navigationhiding']</span></code></a> (e.g. <code class="docutils literal notranslate"><span class="pre">pma__navigationhiding</span></code>)</p></li> </ul> <p>This feature can be disabled by setting the configuration to <code class="docutils literal notranslate"><span class="pre">false</span></code>.</p> </dd></dl> <span class="target" id="central-columns"></span><dl class="config option"> <dt id="cfg_Servers_central_columns"> <code class="sig-name descname">$cfg['Servers'][$i]['central_columns']</code><a class="headerlink" href="#cfg_Servers_central_columns" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or false</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 4.3.0.</span></p> </div> <p>Since release 4.3.0 you can have a central list of columns per database. You can add/remove columns to the list as per your requirement. These columns in the central list will be available to use while you create a new column for a table or create a table itself. You can select a column from central list while creating a new column, it will save you from writing the same column definition over again or from writing different names for similar column.</p> <p>To allow the usage of this functionality:</p> <ul class="simple"> <li><p>set up <span class="target" id="index-113"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</p></li> <li><p>put the table name in <span class="target" id="index-114"></span><a class="reference internal" href="#cfg_Servers_central_columns"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['central_columns']</span></code></a> (e.g. <code class="docutils literal notranslate"><span class="pre">pma__central_columns</span></code>)</p></li> </ul> <p>This feature can be disabled by setting the configuration to <code class="docutils literal notranslate"><span class="pre">false</span></code>.</p> </dd></dl> <span class="target" id="designer-settings"></span><dl class="config option"> <dt id="cfg_Servers_designer_settings"> <code class="sig-name descname">$cfg['Servers'][$i]['designer_settings']</code><a class="headerlink" href="#cfg_Servers_designer_settings" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or false</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 4.5.0.</span></p> </div> <p>Since release 4.5.0 your designer settings can be remembered. Your choice regarding ‘Angular/Direct Links’, ‘Snap to Grid’, ‘Toggle Relation Lines’, ‘Small/Big All’, ‘Move Menu’ and ‘Pin Text’ can be remembered persistently.</p> <p>To allow the usage of this functionality:</p> <ul class="simple"> <li><p>set up <span class="target" id="index-115"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</p></li> <li><p>put the table name in <span class="target" id="index-116"></span><a class="reference internal" href="#cfg_Servers_designer_settings"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['designer_settings']</span></code></a> (e.g. <code class="docutils literal notranslate"><span class="pre">pma__designer_settings</span></code>)</p></li> </ul> <p>This feature can be disabled by setting the configuration to <code class="docutils literal notranslate"><span class="pre">false</span></code>.</p> </dd></dl> <span class="target" id="savedsearches"></span><dl class="config option"> <dt id="cfg_Servers_savedsearches"> <code class="sig-name descname">$cfg['Servers'][$i]['savedsearches']</code><a class="headerlink" href="#cfg_Servers_savedsearches" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or false</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 4.2.0.</span></p> </div> <p>Since release 4.2.0 you can save and load query-by-example searches from the Database > Query panel.</p> <p>To allow the usage of this functionality:</p> <ul class="simple"> <li><p>set up <span class="target" id="index-117"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</p></li> <li><p>put the table name in <span class="target" id="index-118"></span><a class="reference internal" href="#cfg_Servers_savedsearches"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['savedsearches']</span></code></a> (e.g. <code class="docutils literal notranslate"><span class="pre">pma__savedsearches</span></code>)</p></li> </ul> <p>This feature can be disabled by setting the configuration to <code class="docutils literal notranslate"><span class="pre">false</span></code>.</p> </dd></dl> <span class="target" id="export-templates"></span><dl class="config option"> <dt id="cfg_Servers_export_templates"> <code class="sig-name descname">$cfg['Servers'][$i]['export_templates']</code><a class="headerlink" href="#cfg_Servers_export_templates" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or false</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 4.5.0.</span></p> </div> <p>Since release 4.5.0 you can save and load export templates.</p> <p>To allow the usage of this functionality:</p> <ul class="simple"> <li><p>set up <span class="target" id="index-119"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</p></li> <li><p>put the table name in <span class="target" id="index-120"></span><a class="reference internal" href="#cfg_Servers_export_templates"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['export_templates']</span></code></a> (e.g. <code class="docutils literal notranslate"><span class="pre">pma__export_templates</span></code>)</p></li> </ul> <p>This feature can be disabled by setting the configuration to <code class="docutils literal notranslate"><span class="pre">false</span></code>.</p> </dd></dl> <span class="target" id="tracking"></span><dl class="config option"> <dt id="cfg_Servers_tracking"> <code class="sig-name descname">$cfg['Servers'][$i]['tracking']</code><a class="headerlink" href="#cfg_Servers_tracking" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or false</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 3.3.x.</span></p> </div> <p>Since release 3.3.x a tracking mechanism is available. It helps you to track every <a class="reference internal" href="glossary.html#term-SQL"><span class="xref std std-term">SQL</span></a> command which is executed by phpMyAdmin. The mechanism supports logging of data manipulation and data definition statements. After enabling it you can create versions of tables.</p> <p>The creation of a version has two effects:</p> <ul class="simple"> <li><p>phpMyAdmin saves a snapshot of the table, including structure and indexes.</p></li> <li><p>phpMyAdmin logs all commands which change the structure and/or data of the table and links these commands with the version number.</p></li> </ul> <p>Of course you can view the tracked changes. On the <span class="guilabel">Tracking</span> page a complete report is available for every version. For the report you can use filters, for example you can get a list of statements within a date range. When you want to filter usernames you can enter * for all names or you enter a list of names separated by ‘,’. In addition you can export the (filtered) report to a file or to a temporary database.</p> <p>To allow the usage of this functionality:</p> <ul class="simple"> <li><p>set up <span class="target" id="index-121"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</p></li> <li><p>put the table name in <span class="target" id="index-122"></span><a class="reference internal" href="#cfg_Servers_tracking"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['tracking']</span></code></a> (e.g. <code class="docutils literal notranslate"><span class="pre">pma__tracking</span></code>)</p></li> </ul> <p>This feature can be disabled by setting the configuration to <code class="docutils literal notranslate"><span class="pre">false</span></code>.</p> </dd></dl> <span class="target" id="tracking2"></span><dl class="config option"> <dt id="cfg_Servers_tracking_version_auto_create"> <code class="sig-name descname">$cfg['Servers'][$i]['tracking_version_auto_create']</code><a class="headerlink" href="#cfg_Servers_tracking_version_auto_create" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Whether the tracking mechanism creates versions for tables and views automatically.</p> <p>If this is set to true and you create a table or view with</p> <ul class="simple"> <li><p>CREATE TABLE …</p></li> <li><p>CREATE VIEW …</p></li> </ul> <p>and no version exists for it, the mechanism will create a version for you automatically.</p> </dd></dl> <span class="target" id="tracking3"></span><dl class="config option"> <dt id="cfg_Servers_tracking_default_statements"> <code class="sig-name descname">$cfg['Servers'][$i]['tracking_default_statements']</code><a class="headerlink" href="#cfg_Servers_tracking_default_statements" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'CREATE</span> <span class="pre">TABLE,ALTER</span> <span class="pre">TABLE,DROP</span> <span class="pre">TABLE,RENAME</span> <span class="pre">TABLE,CREATE</span> <span class="pre">INDEX,DROP</span> <span class="pre">INDEX,INSERT,UPDATE,DELETE,TRUNCATE,REPLACE,CREATE</span> <span class="pre">VIEW,ALTER</span> <span class="pre">VIEW,DROP</span> <span class="pre">VIEW,CREATE</span> <span class="pre">DATABASE,ALTER</span> <span class="pre">DATABASE,DROP</span> <span class="pre">DATABASE'</span></code></p> </dd> </dl> <p>Defines the list of statements the auto-creation uses for new versions.</p> </dd></dl> <span class="target" id="tracking4"></span><dl class="config option"> <dt id="cfg_Servers_tracking_add_drop_view"> <code class="sig-name descname">$cfg['Servers'][$i]['tracking_add_drop_view']</code><a class="headerlink" href="#cfg_Servers_tracking_add_drop_view" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Whether a <cite>DROP VIEW IF EXISTS</cite> statement will be added as first line to the log when creating a view.</p> </dd></dl> <span class="target" id="tracking5"></span><dl class="config option"> <dt id="cfg_Servers_tracking_add_drop_table"> <code class="sig-name descname">$cfg['Servers'][$i]['tracking_add_drop_table']</code><a class="headerlink" href="#cfg_Servers_tracking_add_drop_table" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Whether a <cite>DROP TABLE IF EXISTS</cite> statement will be added as first line to the log when creating a table.</p> </dd></dl> <span class="target" id="tracking6"></span><dl class="config option"> <dt id="cfg_Servers_tracking_add_drop_database"> <code class="sig-name descname">$cfg['Servers'][$i]['tracking_add_drop_database']</code><a class="headerlink" href="#cfg_Servers_tracking_add_drop_database" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Whether a <cite>DROP DATABASE IF EXISTS</cite> statement will be added as first line to the log when creating a database.</p> </dd></dl> <span class="target" id="userconfig"></span><dl class="config option"> <dt id="cfg_Servers_userconfig"> <code class="sig-name descname">$cfg['Servers'][$i]['userconfig']</code><a class="headerlink" href="#cfg_Servers_userconfig" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or false</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 3.4.x.</span></p> </div> <p>Since release 3.4.x phpMyAdmin allows users to set most preferences by themselves and store them in the database.</p> <p>If you don’t allow for storing preferences in <span class="target" id="index-123"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a>, users can still personalize phpMyAdmin, but settings will be saved in browser’s local storage, or, it is is unavailable, until the end of session.</p> <p>To allow the usage of this functionality:</p> <ul class="simple"> <li><p>set up <span class="target" id="index-124"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and the phpMyAdmin configuration storage</p></li> <li><p>put the table name in <span class="target" id="index-125"></span><a class="reference internal" href="#cfg_Servers_userconfig"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['userconfig']</span></code></a></p></li> </ul> <p>This feature can be disabled by setting the configuration to <code class="docutils literal notranslate"><span class="pre">false</span></code>.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_MaxTableUiprefs"> <code class="sig-name descname">$cfg['Servers'][$i]['MaxTableUiprefs']</code><a class="headerlink" href="#cfg_Servers_MaxTableUiprefs" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>100</p> </dd> </dl> <p>Maximum number of rows saved in <span class="target" id="index-126"></span><a class="reference internal" href="#cfg_Servers_table_uiprefs"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['table_uiprefs']</span></code></a> table.</p> <p>When tables are dropped or renamed, <span class="target" id="index-127"></span><a class="reference internal" href="#cfg_Servers_table_uiprefs"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['table_uiprefs']</span></code></a> may contain invalid data (referring to tables which no longer exist). We only keep this number of newest rows in <span class="target" id="index-128"></span><a class="reference internal" href="#cfg_Servers_table_uiprefs"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['table_uiprefs']</span></code></a> and automatically delete older rows.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_SessionTimeZone"> <code class="sig-name descname">$cfg['Servers'][$i]['SessionTimeZone']</code><a class="headerlink" href="#cfg_Servers_SessionTimeZone" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>Sets the time zone used by phpMyAdmin. Leave blank to use the time zone of your database server. Possible values are explained at <a class="reference external" href="https://dev.mysql.com/doc/refman/8.0/en/time-zone-support.html">https://dev.mysql.com/doc/refman/8.0/en/time-zone-support.html</a></p> <p>This is useful when your database server uses a time zone which is different from the time zone you want to use in phpMyAdmin.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_AllowRoot"> <code class="sig-name descname">$cfg['Servers'][$i]['AllowRoot']</code><a class="headerlink" href="#cfg_Servers_AllowRoot" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Whether to allow root access. This is just a shortcut for the <span class="target" id="index-129"></span><a class="reference internal" href="#cfg_Servers_AllowDeny_rules"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['AllowDeny']['rules']</span></code></a> below.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_AllowNoPassword"> <code class="sig-name descname">$cfg['Servers'][$i]['AllowNoPassword']</code><a class="headerlink" href="#cfg_Servers_AllowNoPassword" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Whether to allow logins without a password. The default value of <code class="docutils literal notranslate"><span class="pre">false</span></code> for this parameter prevents unintended access to a MySQL server with was left with an empty password for root or on which an anonymous (blank) user is defined.</p> </dd></dl> <span class="target" id="servers-allowdeny-order"></span><dl class="config option"> <dt id="cfg_Servers_AllowDeny_order"> <code class="sig-name descname">$cfg['Servers'][$i]['AllowDeny']['order']</code><a class="headerlink" href="#cfg_Servers_AllowDeny_order" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>If your rule order is empty, then <a class="reference internal" href="glossary.html#term-IP"><span class="xref std std-term">IP</span></a> authorization is disabled.</p> <p>If your rule order is set to <code class="docutils literal notranslate"><span class="pre">'deny,allow'</span></code> then the system applies all deny rules followed by allow rules. Access is allowed by default. Any client which does not match a Deny command or does match an Allow command will be allowed access to the server.</p> <p>If your rule order is set to <code class="docutils literal notranslate"><span class="pre">'allow,deny'</span></code> then the system applies all allow rules followed by deny rules. Access is denied by default. Any client which does not match an Allow directive or does match a Deny directive will be denied access to the server.</p> <p>If your rule order is set to <code class="docutils literal notranslate"><span class="pre">'explicit'</span></code>, authorization is performed in a similar fashion to rule order ‘deny,allow’, with the added restriction that your host/username combination <strong>must</strong> be listed in the <em>allow</em> rules, and not listed in the <em>deny</em> rules. This is the <strong>most</strong> secure means of using Allow/Deny rules, and was available in Apache by specifying allow and deny rules without setting any order.</p> <p>Please also see <span class="target" id="index-130"></span><a class="reference internal" href="#cfg_TrustedProxies"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['TrustedProxies']</span></code></a> for detecting IP address behind proxies.</p> </dd></dl> <span class="target" id="servers-allowdeny-rules"></span><dl class="config option"> <dt id="cfg_Servers_AllowDeny_rules"> <code class="sig-name descname">$cfg['Servers'][$i]['AllowDeny']['rules']</code><a class="headerlink" href="#cfg_Servers_AllowDeny_rules" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array of strings</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>array()</p> </dd> </dl> <p>The general format for the rules is as such:</p> <div class="highlight-none notranslate"><div class="highlight"><pre><span></span><'allow' | 'deny'> <username> [from] <ipmask> </pre></div> </div> <p>If you wish to match all users, it is possible to use a <code class="docutils literal notranslate"><span class="pre">'%'</span></code> as a wildcard in the <em>username</em> field.</p> <p>There are a few shortcuts you can use in the <em>ipmask</em> field as well (please note that those containing SERVER_ADDRESS might not be available on all webservers):</p> <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>'all' -> 0.0.0.0/0 'localhost' -> 127.0.0.1/8 'localnetA' -> SERVER_ADDRESS/8 'localnetB' -> SERVER_ADDRESS/16 'localnetC' -> SERVER_ADDRESS/24 </pre></div> </div> <p>Having an empty rule list is equivalent to either using <code class="docutils literal notranslate"><span class="pre">'allow</span> <span class="pre">%</span> <span class="pre">from</span> <span class="pre">all'</span></code> if your rule order is set to <code class="docutils literal notranslate"><span class="pre">'deny,allow'</span></code> or <code class="docutils literal notranslate"><span class="pre">'deny</span> <span class="pre">%</span> <span class="pre">from</span> <span class="pre">all'</span></code> if your rule order is set to <code class="docutils literal notranslate"><span class="pre">'allow,deny'</span></code> or <code class="docutils literal notranslate"><span class="pre">'explicit'</span></code>.</p> <p>For the <a class="reference internal" href="glossary.html#term-IP-Address"><span class="xref std std-term">IP Address</span></a> matching system, the following work:</p> <ul class="simple"> <li><p><code class="docutils literal notranslate"><span class="pre">xxx.xxx.xxx.xxx</span></code> (an exact <a class="reference internal" href="glossary.html#term-IP-Address"><span class="xref std std-term">IP Address</span></a>)</p></li> <li><p><code class="docutils literal notranslate"><span class="pre">xxx.xxx.xxx.[yyy-zzz]</span></code> (an <a class="reference internal" href="glossary.html#term-IP-Address"><span class="xref std std-term">IP Address</span></a> range)</p></li> <li><p><code class="docutils literal notranslate"><span class="pre">xxx.xxx.xxx.xxx/nn</span></code> (CIDR, Classless Inter-Domain Routing type <a class="reference internal" href="glossary.html#term-IP"><span class="xref std std-term">IP</span></a> addresses)</p></li> </ul> <p>But the following does not work:</p> <ul class="simple"> <li><p><code class="docutils literal notranslate"><span class="pre">xxx.xxx.xxx.xx[yyy-zzz]</span></code> (partial <a class="reference internal" href="glossary.html#term-IP"><span class="xref std std-term">IP</span></a> address range)</p></li> </ul> <p>For <a class="reference internal" href="glossary.html#term-IPv6"><span class="xref std std-term">IPv6</span></a> addresses, the following work:</p> <ul class="simple"> <li><p><code class="docutils literal notranslate"><span class="pre">xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx</span></code> (an exact <a class="reference internal" href="glossary.html#term-IPv6"><span class="xref std std-term">IPv6</span></a> address)</p></li> <li><p><code class="docutils literal notranslate"><span class="pre">xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:[yyyy-zzzz]</span></code> (an <a class="reference internal" href="glossary.html#term-IPv6"><span class="xref std std-term">IPv6</span></a> address range)</p></li> <li><p><code class="docutils literal notranslate"><span class="pre">xxxx:xxxx:xxxx:xxxx/nn</span></code> (CIDR, Classless Inter-Domain Routing type <a class="reference internal" href="glossary.html#term-IPv6"><span class="xref std std-term">IPv6</span></a> addresses)</p></li> </ul> <p>But the following does not work:</p> <ul class="simple"> <li><p><code class="docutils literal notranslate"><span class="pre">xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xx[yyy-zzz]</span></code> (partial <a class="reference internal" href="glossary.html#term-IPv6"><span class="xref std std-term">IPv6</span></a> address range)</p></li> </ul> <p>Examples:</p> <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>$cfg['Servers'][$i]['AllowDeny']['order'] = 'allow,deny'; $cfg['Servers'][$i]['AllowDeny']['rules'] = ['allow bob from all']; // Allow only 'bob' to connect from any host $cfg['Servers'][$i]['AllowDeny']['order'] = 'allow,deny'; $cfg['Servers'][$i]['AllowDeny']['rules'] = ['allow mary from 192.168.100.[50-100]']; // Allow only 'mary' to connect from host 192.168.100.50 through 192.168.100.100 $cfg['Servers'][$i]['AllowDeny']['order'] = 'allow,deny'; $cfg['Servers'][$i]['AllowDeny']['rules'] = ['allow % from 192.168.[5-6].10']; // Allow any user to connect from host 192.168.5.10 or 192.168.6.10 $cfg['Servers'][$i]['AllowDeny']['order'] = 'allow,deny'; $cfg['Servers'][$i]['AllowDeny']['rules'] = ['allow root from 192.168.5.50','allow % from 192.168.6.10']; // Allow any user to connect from 192.168.6.10, and additionally allow root to connect from 192.168.5.50 </pre></div> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_DisableIS"> <code class="sig-name descname">$cfg['Servers'][$i]['DisableIS']</code><a class="headerlink" href="#cfg_Servers_DisableIS" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Disable using <code class="docutils literal notranslate"><span class="pre">INFORMATION_SCHEMA</span></code> to retrieve information (use <code class="docutils literal notranslate"><span class="pre">SHOW</span></code> commands instead), because of speed issues when many databases are present.</p> <div class="admonition note"> <p class="admonition-title">Note</p> <p>Enabling this option might give you a big performance boost on older MySQL servers.</p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_SignonScript"> <code class="sig-name descname">$cfg['Servers'][$i]['SignonScript']</code><a class="headerlink" href="#cfg_Servers_SignonScript" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 3.5.0.</span></p> </div> <p>Name of PHP script to be sourced and executed to obtain login credentials. This is alternative approach to session based single signon. The script has to provide a function called <code class="docutils literal notranslate"><span class="pre">get_login_credentials</span></code> which returns list of username and password, accepting single parameter of existing username (can be empty). See <code class="file docutils literal notranslate"><span class="pre">examples/signon-script.php</span></code> for an example:</p> <div class="highlight-php notranslate"><div class="highlight"><pre><span></span><span class="o"><?</span><span class="nx">php</span> <span class="sd">/**</span> <span class="sd"> * Single signon for phpMyAdmin</span> <span class="sd"> *</span> <span class="sd"> * This is just example how to use script based single signon with</span> <span class="sd"> * phpMyAdmin, it is not intended to be perfect code and look, only</span> <span class="sd"> * shows how you can integrate this functionality in your application.</span> <span class="sd"> */</span> <span class="k">declare</span><span class="p">(</span><span class="nx">strict_types</span><span class="o">=</span><span class="mi">1</span><span class="p">);</span> <span class="c1">// phpcs:disable Squiz.Functions.GlobalFunction</span> <span class="sd">/**</span> <span class="sd"> * This function returns username and password.</span> <span class="sd"> *</span> <span class="sd"> * It can optionally use configured username as parameter.</span> <span class="sd"> *</span> <span class="sd"> * @param string $user User name</span> <span class="sd"> *</span> <span class="sd"> * @return array</span> <span class="sd"> */</span> <span class="k">function</span> <span class="nf">get_login_credentials</span><span class="p">(</span><span class="nv">$user</span><span class="p">)</span> <span class="p">{</span> <span class="cm">/* Optionally we can use passed username */</span> <span class="k">if</span> <span class="p">(</span><span class="o">!</span> <span class="k">empty</span><span class="p">(</span><span class="nv">$user</span><span class="p">))</span> <span class="p">{</span> <span class="k">return</span> <span class="p">[</span> <span class="nv">$user</span><span class="p">,</span> <span class="s1">'password'</span><span class="p">,</span> <span class="p">];</span> <span class="p">}</span> <span class="cm">/* Here we would retrieve the credentials */</span> <span class="k">return</span> <span class="p">[</span> <span class="s1">'root'</span><span class="p">,</span> <span class="s1">''</span><span class="p">,</span> <span class="p">];</span> <span class="p">}</span> </pre></div> </div> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="setup.html#auth-signon"><span class="std std-ref">Signon authentication mode</span></a></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_SignonSession"> <code class="sig-name descname">$cfg['Servers'][$i]['SignonSession']</code><a class="headerlink" href="#cfg_Servers_SignonSession" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>Name of session which will be used for signon authentication method. You should use something different than <code class="docutils literal notranslate"><span class="pre">phpMyAdmin</span></code>, because this is session which phpMyAdmin uses internally. Takes effect only if <span class="target" id="index-131"></span><a class="reference internal" href="#cfg_Servers_SignonScript"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['SignonScript']</span></code></a> is not configured.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="setup.html#auth-signon"><span class="std std-ref">Signon authentication mode</span></a></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_SignonCookieParams"> <code class="sig-name descname">$cfg['Servers'][$i]['SignonCookieParams']</code><a class="headerlink" href="#cfg_Servers_SignonCookieParams" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">array()</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 4.7.0.</span></p> </div> <p>An associative array of session cookie parameters of other authentication system. It is not needed if the other system doesn’t use session_set_cookie_params(). Keys should include ‘lifetime’, ‘path’, ‘domain’, ‘secure’ or ‘httponly’. Valid values are mentioned in <a class="reference external" href="https://www.php.net/manual/en/function.session-get-cookie-params.php">session_get_cookie_params</a>, they should be set to same values as the other application uses. Takes effect only if <span class="target" id="index-132"></span><a class="reference internal" href="#cfg_Servers_SignonScript"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['SignonScript']</span></code></a> is not configured.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="setup.html#auth-signon"><span class="std std-ref">Signon authentication mode</span></a></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_SignonURL"> <code class="sig-name descname">$cfg['Servers'][$i]['SignonURL']</code><a class="headerlink" href="#cfg_Servers_SignonURL" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p><a class="reference internal" href="glossary.html#term-URL"><span class="xref std std-term">URL</span></a> where user will be redirected to log in for signon authentication method. Should be absolute including protocol.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="setup.html#auth-signon"><span class="std std-ref">Signon authentication mode</span></a></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_LogoutURL"> <code class="sig-name descname">$cfg['Servers'][$i]['LogoutURL']</code><a class="headerlink" href="#cfg_Servers_LogoutURL" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p><a class="reference internal" href="glossary.html#term-URL"><span class="xref std std-term">URL</span></a> where user will be redirected after logout (doesn’t affect config authentication method). Should be absolute including protocol.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Servers_hide_connection_errors"> <code class="sig-name descname">$cfg['Servers'][$i]['hide_connection_errors']</code><a class="headerlink" href="#cfg_Servers_hide_connection_errors" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 4.9.8.</span></p> </div> <p>Whether to show or hide detailed MySQL/MariaDB connection errors on the login page.</p> <div class="admonition note"> <p class="admonition-title">Note</p> <p>This error message can contain the target database server hostname or IP address, which may reveal information about your network to an attacker.</p> </div> </dd></dl> </div> <div class="section" id="generic-settings"> <h2>Generic settings<a class="headerlink" href="#generic-settings" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_DisableShortcutKeys"> <code class="sig-name descname">$cfg['DisableShortcutKeys']</code><a class="headerlink" href="#cfg_DisableShortcutKeys" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>You can disable phpMyAdmin shortcut keys by setting <span class="target" id="index-133"></span><a class="reference internal" href="#cfg_DisableShortcutKeys"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['DisableShortcutKeys']</span></code></a> to false.</p> </dd></dl> <dl class="config option"> <dt id="cfg_ServerDefault"> <code class="sig-name descname">$cfg['ServerDefault']</code><a class="headerlink" href="#cfg_ServerDefault" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>1</p> </dd> </dl> <p>If you have more than one server configured, you can set <span class="target" id="index-134"></span><a class="reference internal" href="#cfg_ServerDefault"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['ServerDefault']</span></code></a> to any one of them to autoconnect to that server when phpMyAdmin is started, or set it to 0 to be given a list of servers without logging in.</p> <p>If you have only one server configured, <span class="target" id="index-135"></span><a class="reference internal" href="#cfg_ServerDefault"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['ServerDefault']</span></code></a> MUST be set to that server.</p> </dd></dl> <dl class="config option"> <dt id="cfg_VersionCheck"> <code class="sig-name descname">$cfg['VersionCheck']</code><a class="headerlink" href="#cfg_VersionCheck" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Enables check for latest versions using JavaScript on the main phpMyAdmin page or by directly accessing <cite>index.php?route=/version-check</cite>.</p> <div class="admonition note"> <p class="admonition-title">Note</p> <p>This setting can be adjusted by your vendor.</p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_ProxyUrl"> <code class="sig-name descname">$cfg['ProxyUrl']</code><a class="headerlink" href="#cfg_ProxyUrl" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>The url of the proxy to be used when phpmyadmin needs to access the outside internet such as when retrieving the latest version info or submitting error reports. You need this if the server where phpMyAdmin is installed does not have direct access to the internet. The format is: “hostname:portnumber”</p> </dd></dl> <dl class="config option"> <dt id="cfg_ProxyUser"> <code class="sig-name descname">$cfg['ProxyUser']</code><a class="headerlink" href="#cfg_ProxyUser" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>The username for authenticating with the proxy. By default, no authentication is performed. If a username is supplied, Basic Authentication will be performed. No other types of authentication are currently supported.</p> </dd></dl> <dl class="config option"> <dt id="cfg_ProxyPass"> <code class="sig-name descname">$cfg['ProxyPass']</code><a class="headerlink" href="#cfg_ProxyPass" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>The password for authenticating with the proxy.</p> </dd></dl> <dl class="config option"> <dt id="cfg_MaxDbList"> <code class="sig-name descname">$cfg['MaxDbList']</code><a class="headerlink" href="#cfg_MaxDbList" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>100</p> </dd> </dl> <p>The maximum number of database names to be displayed in the main panel’s database list.</p> </dd></dl> <dl class="config option"> <dt id="cfg_MaxTableList"> <code class="sig-name descname">$cfg['MaxTableList']</code><a class="headerlink" href="#cfg_MaxTableList" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>250</p> </dd> </dl> <p>The maximum number of table names to be displayed in the main panel’s list (except on the Export page).</p> </dd></dl> <dl class="config option"> <dt id="cfg_ShowHint"> <code class="sig-name descname">$cfg['ShowHint']</code><a class="headerlink" href="#cfg_ShowHint" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Whether or not to show hints (for example, hints when hovering over table headers).</p> </dd></dl> <dl class="config option"> <dt id="cfg_MaxCharactersInDisplayedSQL"> <code class="sig-name descname">$cfg['MaxCharactersInDisplayedSQL']</code><a class="headerlink" href="#cfg_MaxCharactersInDisplayedSQL" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>1000</p> </dd> </dl> <p>The maximum number of characters when a <a class="reference internal" href="glossary.html#term-SQL"><span class="xref std std-term">SQL</span></a> query is displayed. The default limit of 1000 should be correct to avoid the display of tons of hexadecimal codes that represent BLOBs, but some users have real <a class="reference internal" href="glossary.html#term-SQL"><span class="xref std std-term">SQL</span></a> queries that are longer than 1000 characters. Also, if a query’s length exceeds this limit, this query is not saved in the history.</p> </dd></dl> <dl class="config option"> <dt id="cfg_PersistentConnections"> <code class="sig-name descname">$cfg['PersistentConnections']</code><a class="headerlink" href="#cfg_PersistentConnections" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Whether <a class="reference external" href="https://www.php.net/manual/en/features.persistent-connections.php">persistent connections</a> should be used or not.</p> </dd></dl> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference external" href="https://www.php.net/manual/en/mysqli.persistconns.php">mysqli documentation for persistent connections</a></p> </div> <dl class="config option"> <dt id="cfg_ForceSSL"> <code class="sig-name descname">$cfg['ForceSSL']</code><a class="headerlink" href="#cfg_ForceSSL" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <div class="deprecated"> <p><span class="versionmodified deprecated">Deprecated since version 4.6.0: </span>This setting is no longer available since phpMyAdmin 4.6.0. Please adjust your webserver instead.</p> </div> <p>Whether to force using https while accessing phpMyAdmin. In a reverse proxy setup, setting this to <code class="docutils literal notranslate"><span class="pre">true</span></code> is not supported.</p> <div class="admonition note"> <p class="admonition-title">Note</p> <p>In some setups (like separate SSL proxy or load balancer) you might have to set <span class="target" id="index-136"></span><a class="reference internal" href="#cfg_PmaAbsoluteUri"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['PmaAbsoluteUri']</span></code></a> for correct redirection.</p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_MysqlSslWarningSafeHosts"> <code class="sig-name descname">$cfg['MysqlSslWarningSafeHosts']</code><a class="headerlink" href="#cfg_MysqlSslWarningSafeHosts" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">['127.0.0.1',</span> <span class="pre">'localhost']</span></code></p> </dd> </dl> <p>This search is case-sensitive and will match the exact string only. If your setup does not use SSL but is safe because you are using a local connection or private network, you can add your hostname or <a class="reference internal" href="glossary.html#term-IP"><span class="xref std std-term">IP</span></a> to the list. You can also remove the default entries to only include yours.</p> <p>This check uses the value of <span class="target" id="index-137"></span><a class="reference internal" href="#cfg_Servers_host"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['host']</span></code></a>.</p> <div class="versionadded"> <p><span class="versionmodified added">New in version 5.1.0.</span></p> </div> <p>Example configuration</p> <div class="highlight-php notranslate"><div class="highlight"><pre><span></span><span class="nv">$cfg</span><span class="p">[</span><span class="s1">'MysqlSslWarningSafeHosts'</span><span class="p">]</span> <span class="o">=</span> <span class="p">[</span><span class="s1">'127.0.0.1'</span><span class="p">,</span> <span class="s1">'localhost'</span><span class="p">,</span> <span class="s1">'mariadb.local'</span><span class="p">];</span> </pre></div> </div> </dd></dl> <dl class="config option"> <dt id="cfg_ExecTimeLimit"> <code class="sig-name descname">$cfg['ExecTimeLimit']</code><a class="headerlink" href="#cfg_ExecTimeLimit" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer [number of seconds]</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>300</p> </dd> </dl> <p>Set the number of seconds a script is allowed to run. If seconds is set to zero, no time limit is imposed. This setting is used while importing/exporting dump files but has no effect when PHP is running in safe mode.</p> </dd></dl> <dl class="config option"> <dt id="cfg_SessionSavePath"> <code class="sig-name descname">$cfg['SessionSavePath']</code><a class="headerlink" href="#cfg_SessionSavePath" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>Path for storing session data (<a class="reference external" href="https://www.php.net/session_save_path">session_save_path PHP parameter</a>).</p> <div class="admonition warning"> <p class="admonition-title">Warning</p> <p>This folder should not be publicly accessible through the webserver, otherwise you risk leaking private data from your session.</p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_MemoryLimit"> <code class="sig-name descname">$cfg['MemoryLimit']</code><a class="headerlink" href="#cfg_MemoryLimit" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string [number of bytes]</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'-1'</span></code></p> </dd> </dl> <p>Set the number of bytes a script is allowed to allocate. If set to <code class="docutils literal notranslate"><span class="pre">'-1'</span></code>, no limit is imposed. If set to <code class="docutils literal notranslate"><span class="pre">'0'</span></code>, no change of the memory limit is attempted and the <code class="file docutils literal notranslate"><span class="pre">php.ini</span></code> <code class="docutils literal notranslate"><span class="pre">memory_limit</span></code> is used.</p> <p>This setting is used while importing/exporting dump files so you definitely don’t want to put here a too low value. It has no effect when PHP is running in safe mode.</p> <p>You can also use any string as in <code class="file docutils literal notranslate"><span class="pre">php.ini</span></code>, eg. ‘16M’. Ensure you don’t omit the suffix (16 means 16 bytes!)</p> </dd></dl> <dl class="config option"> <dt id="cfg_SkipLockedTables"> <code class="sig-name descname">$cfg['SkipLockedTables']</code><a class="headerlink" href="#cfg_SkipLockedTables" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Mark used tables and make it possible to show databases with locked tables (since MySQL 3.23.30).</p> </dd></dl> <dl class="config option"> <dt id="cfg_ShowSQL"> <code class="sig-name descname">$cfg['ShowSQL']</code><a class="headerlink" href="#cfg_ShowSQL" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Defines whether <a class="reference internal" href="glossary.html#term-SQL"><span class="xref std std-term">SQL</span></a> queries generated by phpMyAdmin should be displayed or not.</p> </dd></dl> <dl class="config option"> <dt id="cfg_RetainQueryBox"> <code class="sig-name descname">$cfg['RetainQueryBox']</code><a class="headerlink" href="#cfg_RetainQueryBox" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Defines whether the <a class="reference internal" href="glossary.html#term-SQL"><span class="xref std std-term">SQL</span></a> query box should be kept displayed after its submission.</p> </dd></dl> <dl class="config option"> <dt id="cfg_CodemirrorEnable"> <code class="sig-name descname">$cfg['CodemirrorEnable']</code><a class="headerlink" href="#cfg_CodemirrorEnable" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Defines whether to use a Javascript code editor for SQL query boxes. CodeMirror provides syntax highlighting and line numbers. However, middle-clicking for pasting the clipboard contents in some Linux distributions (such as Ubuntu) is not supported by all browsers.</p> </dd></dl> <dl class="config option"> <dt id="cfg_DefaultForeignKeyChecks"> <code class="sig-name descname">$cfg['DefaultForeignKeyChecks']</code><a class="headerlink" href="#cfg_DefaultForeignKeyChecks" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'default'</span></code></p> </dd> </dl> <p>Default value of the checkbox for foreign key checks, to disable/enable foreign key checks for certain queries. The possible values are <code class="docutils literal notranslate"><span class="pre">'default'</span></code>, <code class="docutils literal notranslate"><span class="pre">'enable'</span></code> or <code class="docutils literal notranslate"><span class="pre">'disable'</span></code>. If set to <code class="docutils literal notranslate"><span class="pre">'default'</span></code>, the value of the MySQL variable <code class="docutils literal notranslate"><span class="pre">FOREIGN_KEY_CHECKS</span></code> is used.</p> </dd></dl> <dl class="config option"> <dt id="cfg_AllowUserDropDatabase"> <code class="sig-name descname">$cfg['AllowUserDropDatabase']</code><a class="headerlink" href="#cfg_AllowUserDropDatabase" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <div class="admonition warning"> <p class="admonition-title">Warning</p> <p>This is not a security measure as there will be always ways to circumvent this. If you want to prohibit users from dropping databases, revoke their corresponding DROP privilege.</p> </div> <p>Defines whether normal users (non-administrator) are allowed to delete their own database or not. If set as false, the link <span class="guilabel">Drop Database</span> will not be shown, and even a <code class="docutils literal notranslate"><span class="pre">DROP</span> <span class="pre">DATABASE</span> <span class="pre">mydatabase</span></code> will be rejected. Quite practical for <a class="reference internal" href="glossary.html#term-ISP"><span class="xref std std-term">ISP</span></a> ‘s with many customers.</p> <p>This limitation of <a class="reference internal" href="glossary.html#term-SQL"><span class="xref std std-term">SQL</span></a> queries is not as strict as when using MySQL privileges. This is due to nature of <a class="reference internal" href="glossary.html#term-SQL"><span class="xref std std-term">SQL</span></a> queries which might be quite complicated. So this choice should be viewed as help to avoid accidental dropping rather than strict privilege limitation.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Confirm"> <code class="sig-name descname">$cfg['Confirm']</code><a class="headerlink" href="#cfg_Confirm" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Whether a warning (“Are your really sure…”) should be displayed when you’re about to lose data.</p> </dd></dl> <dl class="config option"> <dt id="cfg_UseDbSearch"> <code class="sig-name descname">$cfg['UseDbSearch']</code><a class="headerlink" href="#cfg_UseDbSearch" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Define whether the “search string inside database” is enabled or not.</p> </dd></dl> <dl class="config option"> <dt id="cfg_IgnoreMultiSubmitErrors"> <code class="sig-name descname">$cfg['IgnoreMultiSubmitErrors']</code><a class="headerlink" href="#cfg_IgnoreMultiSubmitErrors" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Define whether phpMyAdmin will continue executing a multi-query statement if one of the queries fails. Default is to abort execution.</p> </dd></dl> <dl class="config option"> <dt id="cfg_enable_drag_drop_import"> <code class="sig-name descname">$cfg['enable_drag_drop_import']</code><a class="headerlink" href="#cfg_enable_drag_drop_import" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Whether or not the drag and drop import feature is enabled. When enabled, a user can drag a file in to their browser and phpMyAdmin will attempt to import the file.</p> </dd></dl> <dl class="config option"> <dt id="cfg_URLQueryEncryption"> <code class="sig-name descname">$cfg['URLQueryEncryption']</code><a class="headerlink" href="#cfg_URLQueryEncryption" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 4.9.8.</span></p> </div> <p>Define whether phpMyAdmin will encrypt sensitive data (like database name and table name) from the URL query string. Default is to not encrypt the URL query string.</p> </dd></dl> <dl class="config option"> <dt id="cfg_URLQueryEncryptionSecretKey"> <code class="sig-name descname">$cfg['URLQueryEncryptionSecretKey']</code><a class="headerlink" href="#cfg_URLQueryEncryptionSecretKey" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 4.9.8.</span></p> </div> <p>A secret key used to encrypt/decrypt the URL query string. Should be 32 bytes long.</p> </dd></dl> </div> <div class="section" id="cookie-authentication-options"> <h2>Cookie authentication options<a class="headerlink" href="#cookie-authentication-options" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_blowfish_secret"> <code class="sig-name descname">$cfg['blowfish_secret']</code><a class="headerlink" href="#cfg_blowfish_secret" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>The “cookie” auth_type uses AES algorithm to encrypt the password. If you are using the “cookie” auth_type, enter here a random passphrase of your choice. It will be used internally by the AES algorithm: you won’t be prompted for this passphrase.</p> <p>The secret should be 32 characters long. Using shorter will lead to weaker security of encrypted cookies, using longer will cause no harm.</p> <div class="admonition note"> <p class="admonition-title">Note</p> <p>The configuration is called blowfish_secret for historical reasons as Blowfish algorithm was originally used to do the encryption.</p> </div> <div class="versionchanged"> <p><span class="versionmodified changed">Changed in version 3.1.0: </span>Since version 3.1.0 phpMyAdmin can generate this on the fly, but it makes a bit weaker security as this generated secret is stored in session and furthermore it makes impossible to recall user name from cookie.</p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_CookieSameSite"> <code class="sig-name descname">$cfg['CookieSameSite']</code><a class="headerlink" href="#cfg_CookieSameSite" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'Strict'</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 5.1.0.</span></p> </div> <p>It sets SameSite attribute of the Set-Cookie <a class="reference internal" href="glossary.html#term-HTTP"><span class="xref std std-term">HTTP</span></a> response header. Valid values are:</p> <ul class="simple"> <li><p><code class="docutils literal notranslate"><span class="pre">Lax</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">Strict</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">None</span></code></p></li> </ul> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference external" href="https://tools.ietf.org/id/draft-ietf-httpbis-rfc6265bis-03.html#rfc.section.5.3.7">rfc6265 bis</a></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_LoginCookieRecall"> <code class="sig-name descname">$cfg['LoginCookieRecall']</code><a class="headerlink" href="#cfg_LoginCookieRecall" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Define whether the previous login should be recalled or not in cookie authentication mode.</p> <p>This is automatically disabled if you do not have configured <span class="target" id="index-138"></span><a class="reference internal" href="#cfg_blowfish_secret"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['blowfish_secret']</span></code></a>.</p> </dd></dl> <dl class="config option"> <dt id="cfg_LoginCookieValidity"> <code class="sig-name descname">$cfg['LoginCookieValidity']</code><a class="headerlink" href="#cfg_LoginCookieValidity" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer [number of seconds]</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>1440</p> </dd> </dl> <p>Define how long a login cookie is valid. Please note that php configuration option <a class="reference external" href="https://www.php.net/manual/en/session.configuration.php#ini.session.gc-maxlifetime">session.gc_maxlifetime</a> might limit session validity and if the session is lost, the login cookie is also invalidated. So it is a good idea to set <code class="docutils literal notranslate"><span class="pre">session.gc_maxlifetime</span></code> at least to the same value of <span class="target" id="index-139"></span><a class="reference internal" href="#cfg_LoginCookieValidity"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['LoginCookieValidity']</span></code></a>.</p> </dd></dl> <dl class="config option"> <dt id="cfg_LoginCookieStore"> <code class="sig-name descname">$cfg['LoginCookieStore']</code><a class="headerlink" href="#cfg_LoginCookieStore" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer [number of seconds]</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>0</p> </dd> </dl> <p>Define how long login cookie should be stored in browser. Default 0 means that it will be kept for existing session. This is recommended for not trusted environments.</p> </dd></dl> <dl class="config option"> <dt id="cfg_LoginCookieDeleteAll"> <code class="sig-name descname">$cfg['LoginCookieDeleteAll']</code><a class="headerlink" href="#cfg_LoginCookieDeleteAll" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>If enabled (default), logout deletes cookies for all servers, otherwise only for current one. Setting this to false makes it easy to forget to log out from other server, when you are using more of them.</p> </dd></dl> <span class="target" id="allowarbitraryserver"></span><dl class="config option"> <dt id="cfg_AllowArbitraryServer"> <code class="sig-name descname">$cfg['AllowArbitraryServer']</code><a class="headerlink" href="#cfg_AllowArbitraryServer" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>If enabled, allows you to log in to arbitrary servers using cookie authentication.</p> <div class="admonition note"> <p class="admonition-title">Note</p> <p>Please use this carefully, as this may allow users access to MySQL servers behind the firewall where your <a class="reference internal" href="glossary.html#term-HTTP"><span class="xref std std-term">HTTP</span></a> server is placed. See also <span class="target" id="index-140"></span><a class="reference internal" href="#cfg_ArbitraryServerRegexp"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['ArbitraryServerRegexp']</span></code></a>.</p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_ArbitraryServerRegexp"> <code class="sig-name descname">$cfg['ArbitraryServerRegexp']</code><a class="headerlink" href="#cfg_ArbitraryServerRegexp" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>Restricts the MySQL servers to which the user can log in when <span class="target" id="index-141"></span><a class="reference internal" href="#cfg_AllowArbitraryServer"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['AllowArbitraryServer']</span></code></a> is enabled by matching the <a class="reference internal" href="glossary.html#term-IP"><span class="xref std std-term">IP</span></a> or the hostname of the MySQL server to the given regular expression. The regular expression must be enclosed with a delimiter character.</p> <p>It is recommended to include start and end symbols in the regular expression, so that you can avoid partial matches on the string.</p> <p><strong>Examples:</strong></p> <div class="highlight-php notranslate"><div class="highlight"><pre><span></span><span class="c1">// Allow connection to three listed servers:</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'ArbitraryServerRegexp'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'/^(server|another|yetdifferent)$/'</span><span class="p">;</span> <span class="c1">// Allow connection to range of IP addresses:</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'ArbitraryServerRegexp'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'@^192\.168\.0\.[0-9]{1,}$@'</span><span class="p">;</span> <span class="c1">// Allow connection to server name ending with -mysql:</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'ArbitraryServerRegexp'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'@^[^:]\-mysql$@'</span><span class="p">;</span> </pre></div> </div> <div class="admonition note"> <p class="admonition-title">Note</p> <p>The whole server name is matched, it can include port as well. Due to way MySQL is permissive in connection parameters, it is possible to use connection strings as <code class="docutils literal notranslate"><span class="pre">`server:3306-mysql`</span></code>. This can be used to bypass regular expression by the suffix, while connecting to another server.</p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_CaptchaMethod"> <code class="sig-name descname">$cfg['CaptchaMethod']</code><a class="headerlink" href="#cfg_CaptchaMethod" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'invisible'</span></code></p> </dd> </dl> <p>Valid values are:</p> <ul class="simple"> <li><p><code class="docutils literal notranslate"><span class="pre">'invisible'</span></code> Use an invisible captcha checking method;</p></li> <li><p><code class="docutils literal notranslate"><span class="pre">'checkbox'</span></code> Use a checkbox to confirm the user is not a robot.</p></li> </ul> <div class="versionadded"> <p><span class="versionmodified added">New in version 5.0.3.</span></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_CaptchaApi"> <code class="sig-name descname">$cfg['CaptchaApi']</code><a class="headerlink" href="#cfg_CaptchaApi" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'https://www.google.com/recaptcha/api.js'</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 5.1.0.</span></p> </div> <p>The URL for the reCaptcha v2 service’s API, either Google’s or a compatible one.</p> </dd></dl> <dl class="config option"> <dt id="cfg_CaptchaCsp"> <code class="sig-name descname">$cfg['CaptchaCsp']</code><a class="headerlink" href="#cfg_CaptchaCsp" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'https://apis.google.com</span> <span class="pre">https://www.google.com/recaptcha/</span> <span class="pre">https://www.gstatic.com/recaptcha/</span> <span class="pre">https://ssl.gstatic.com/'</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 5.1.0.</span></p> </div> <p>The Content-Security-Policy snippet (URLs from which to allow embedded content) for the reCaptcha v2 service, either Google’s or a compatible one.</p> </dd></dl> <dl class="config option"> <dt id="cfg_CaptchaRequestParam"> <code class="sig-name descname">$cfg['CaptchaRequestParam']</code><a class="headerlink" href="#cfg_CaptchaRequestParam" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'g-recaptcha'</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 5.1.0.</span></p> </div> <p>The request parameter used for the reCaptcha v2 service.</p> </dd></dl> <dl class="config option"> <dt id="cfg_CaptchaResponseParam"> <code class="sig-name descname">$cfg['CaptchaResponseParam']</code><a class="headerlink" href="#cfg_CaptchaResponseParam" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'g-recaptcha-response'</span></code></p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 5.1.0.</span></p> </div> <p>The response parameter used for the reCaptcha v2 service.</p> </dd></dl> <dl class="config option"> <dt id="cfg_CaptchaLoginPublicKey"> <code class="sig-name descname">$cfg['CaptchaLoginPublicKey']</code><a class="headerlink" href="#cfg_CaptchaLoginPublicKey" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>The public key for the reCaptcha service that can be obtained from the “Admin Console” on <a class="reference external" href="https://www.google.com/recaptcha/about/">https://www.google.com/recaptcha/about/</a>.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><<a class="reference external" href="https://developers.google.com/recaptcha/docs/v3">https://developers.google.com/recaptcha/docs/v3</a>></p> </div> <p>reCaptcha will be then used in <a class="reference internal" href="setup.html#cookie"><span class="std std-ref">Cookie authentication mode</span></a>.</p> <div class="versionadded"> <p><span class="versionmodified added">New in version 4.1.0.</span></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_CaptchaLoginPrivateKey"> <code class="sig-name descname">$cfg['CaptchaLoginPrivateKey']</code><a class="headerlink" href="#cfg_CaptchaLoginPrivateKey" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>The private key for the reCaptcha service that can be obtained from the “Admin Console” on <a class="reference external" href="https://www.google.com/recaptcha/about/">https://www.google.com/recaptcha/about/</a>.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><<a class="reference external" href="https://developers.google.com/recaptcha/docs/v3">https://developers.google.com/recaptcha/docs/v3</a>></p> </div> <p>reCaptcha will be then used in <a class="reference internal" href="setup.html#cookie"><span class="std std-ref">Cookie authentication mode</span></a>.</p> <div class="versionadded"> <p><span class="versionmodified added">New in version 4.1.0.</span></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_CaptchaSiteVerifyURL"> <code class="sig-name descname">$cfg['CaptchaSiteVerifyURL']</code><a class="headerlink" href="#cfg_CaptchaSiteVerifyURL" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>The URL for the reCaptcha service to do siteverify action.</p> <p>reCaptcha will be then used in <a class="reference internal" href="setup.html#cookie"><span class="std std-ref">Cookie authentication mode</span></a>.</p> <div class="versionadded"> <p><span class="versionmodified added">New in version 5.1.0.</span></p> </div> </dd></dl> </div> <div class="section" id="navigation-panel-setup"> <h2>Navigation panel setup<a class="headerlink" href="#navigation-panel-setup" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_ShowDatabasesNavigationAsTree"> <code class="sig-name descname">$cfg['ShowDatabasesNavigationAsTree']</code><a class="headerlink" href="#cfg_ShowDatabasesNavigationAsTree" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>In the navigation panel, replaces the database tree with a selector</p> </dd></dl> <dl class="config option"> <dt id="cfg_FirstLevelNavigationItems"> <code class="sig-name descname">$cfg['FirstLevelNavigationItems']</code><a class="headerlink" href="#cfg_FirstLevelNavigationItems" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>100</p> </dd> </dl> <p>The number of first level databases that can be displayed on each page of navigation tree.</p> </dd></dl> <dl class="config option"> <dt id="cfg_MaxNavigationItems"> <code class="sig-name descname">$cfg['MaxNavigationItems']</code><a class="headerlink" href="#cfg_MaxNavigationItems" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>50</p> </dd> </dl> <p>The number of items (tables, columns, indexes) that can be displayed on each page of the navigation tree.</p> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationTreeEnableGrouping"> <code class="sig-name descname">$cfg['NavigationTreeEnableGrouping']</code><a class="headerlink" href="#cfg_NavigationTreeEnableGrouping" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Defines whether to group the databases based on a common prefix in their name <span class="target" id="index-142"></span><a class="reference internal" href="#cfg_NavigationTreeDbSeparator"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['NavigationTreeDbSeparator']</span></code></a>.</p> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationTreeDbSeparator"> <code class="sig-name descname">$cfg['NavigationTreeDbSeparator']</code><a class="headerlink" href="#cfg_NavigationTreeDbSeparator" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'_'</span></code></p> </dd> </dl> <p>The string used to separate the parts of the database name when showing them in a tree.</p> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationTreeTableSeparator"> <code class="sig-name descname">$cfg['NavigationTreeTableSeparator']</code><a class="headerlink" href="#cfg_NavigationTreeTableSeparator" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string or array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'__'</span></code></p> </dd> </dl> <p>Defines a string to be used to nest table spaces. This means if you have tables like <code class="docutils literal notranslate"><span class="pre">first__second__third</span></code> this will be shown as a three-level hierarchy like: first > second > third. If set to false or empty, the feature is disabled. NOTE: You should not use this separator at the beginning or end of a table name or multiple times after another without any other characters in between.</p> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationTreeTableLevel"> <code class="sig-name descname">$cfg['NavigationTreeTableLevel']</code><a class="headerlink" href="#cfg_NavigationTreeTableLevel" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>1</p> </dd> </dl> <p>Defines how many sublevels should be displayed when splitting up tables by the above separator.</p> </dd></dl> <dl class="config option"> <dt id="cfg_NumRecentTables"> <code class="sig-name descname">$cfg['NumRecentTables']</code><a class="headerlink" href="#cfg_NumRecentTables" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>10</p> </dd> </dl> <p>The maximum number of recently used tables shown in the navigation panel. Set this to 0 (zero) to disable the listing of recent tables.</p> </dd></dl> <dl class="config option"> <dt id="cfg_NumFavoriteTables"> <code class="sig-name descname">$cfg['NumFavoriteTables']</code><a class="headerlink" href="#cfg_NumFavoriteTables" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>10</p> </dd> </dl> <p>The maximum number of favorite tables shown in the navigation panel. Set this to 0 (zero) to disable the listing of favorite tables.</p> </dd></dl> <dl class="config option"> <dt id="cfg_ZeroConf"> <code class="sig-name descname">$cfg['ZeroConf']</code><a class="headerlink" href="#cfg_ZeroConf" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Enables Zero Configuration mode in which the user will be offered a choice to create phpMyAdmin configuration storage in the current database or use the existing one, if already present.</p> <p>This setting has no effect if the phpMyAdmin configuration storage database is properly created and the related configuration directives (such as <span class="target" id="index-143"></span><a class="reference internal" href="#cfg_Servers_pmadb"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['pmadb']</span></code></a> and so on) are configured.</p> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationLinkWithMainPanel"> <code class="sig-name descname">$cfg['NavigationLinkWithMainPanel']</code><a class="headerlink" href="#cfg_NavigationLinkWithMainPanel" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Defines whether or not to link with main panel by highlighting the current database or table.</p> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationDisplayLogo"> <code class="sig-name descname">$cfg['NavigationDisplayLogo']</code><a class="headerlink" href="#cfg_NavigationDisplayLogo" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Defines whether or not to display the phpMyAdmin logo at the top of the navigation panel.</p> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationLogoLink"> <code class="sig-name descname">$cfg['NavigationLogoLink']</code><a class="headerlink" href="#cfg_NavigationLogoLink" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'index.php'</span></code></p> </dd> </dl> <p>Enter the <a class="reference internal" href="glossary.html#term-URL"><span class="xref std std-term">URL</span></a> where the logo in the navigation panel will point to. For use especially with self made theme which changes this. For relative/internal URLs, you need to have leading `` ./ `` or trailing characters `` ? `` such as <code class="docutils literal notranslate"><span class="pre">'./index.php?route=/server/sql?'</span></code>. For external URLs, you should include URL protocol schemes (<code class="docutils literal notranslate"><span class="pre">http</span></code> or <code class="docutils literal notranslate"><span class="pre">https</span></code>) with absolute URLs.</p> <p>You may want to make the link open in a new browser tab, for that you need to use <span class="target" id="index-144"></span><a class="reference internal" href="#cfg_NavigationLogoLinkWindow"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['NavigationLogoLinkWindow']</span></code></a></p> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationLogoLinkWindow"> <code class="sig-name descname">$cfg['NavigationLogoLinkWindow']</code><a class="headerlink" href="#cfg_NavigationLogoLinkWindow" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'main'</span></code></p> </dd> </dl> <p>Whether to open the linked page in the main window (<code class="docutils literal notranslate"><span class="pre">main</span></code>) or in a new one (<code class="docutils literal notranslate"><span class="pre">new</span></code>). Note: use <code class="docutils literal notranslate"><span class="pre">new</span></code> if you are linking to <code class="docutils literal notranslate"><span class="pre">phpmyadmin.net</span></code>.</p> <p>To open the link in the main window you will need to add the value of <span class="target" id="index-145"></span><a class="reference internal" href="#cfg_NavigationLogoLink"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['NavigationLogoLink']</span></code></a> to <span class="target" id="index-146"></span><a class="reference internal" href="#cfg_CSPAllow"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['CSPAllow']</span></code></a> because of the <a class="reference internal" href="glossary.html#term-Content-Security-Policy"><span class="xref std std-term">Content Security Policy</span></a> header.</p> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationTreeDisplayItemFilterMinimum"> <code class="sig-name descname">$cfg['NavigationTreeDisplayItemFilterMinimum']</code><a class="headerlink" href="#cfg_NavigationTreeDisplayItemFilterMinimum" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>30</p> </dd> </dl> <p>Defines the minimum number of items (tables, views, routines and events) to display a JavaScript filter box above the list of items in the navigation tree.</p> <p>To disable the filter completely some high number can be used (e.g. 9999)</p> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationTreeDisplayDbFilterMinimum"> <code class="sig-name descname">$cfg['NavigationTreeDisplayDbFilterMinimum']</code><a class="headerlink" href="#cfg_NavigationTreeDisplayDbFilterMinimum" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>30</p> </dd> </dl> <p>Defines the minimum number of databases to display a JavaScript filter box above the list of databases in the navigation tree.</p> <p>To disable the filter completely some high number can be used (e.g. 9999)</p> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationDisplayServers"> <code class="sig-name descname">$cfg['NavigationDisplayServers']</code><a class="headerlink" href="#cfg_NavigationDisplayServers" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Defines whether or not to display a server choice at the top of the navigation panel.</p> </dd></dl> <dl class="config option"> <dt id="cfg_DisplayServersList"> <code class="sig-name descname">$cfg['DisplayServersList']</code><a class="headerlink" href="#cfg_DisplayServersList" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Defines whether to display this server choice as links instead of in a drop-down.</p> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationTreeDefaultTabTable"> <code class="sig-name descname">$cfg['NavigationTreeDefaultTabTable']</code><a class="headerlink" href="#cfg_NavigationTreeDefaultTabTable" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'structure'</span></code></p> </dd> </dl> <p>Defines the tab displayed by default when clicking the small icon next to each table name in the navigation panel. The possible values are the localized equivalent of:</p> <ul class="simple"> <li><p><code class="docutils literal notranslate"><span class="pre">structure</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">sql</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">search</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">insert</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">browse</span></code></p></li> </ul> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationTreeDefaultTabTable2"> <code class="sig-name descname">$cfg['NavigationTreeDefaultTabTable2']</code><a class="headerlink" href="#cfg_NavigationTreeDefaultTabTable2" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>null</p> </dd> </dl> <p>Defines the tab displayed by default when clicking the second small icon next to each table name in the navigation panel. The possible values are the localized equivalent of:</p> <ul class="simple"> <li><p><code class="docutils literal notranslate"><span class="pre">(empty)</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">structure</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">sql</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">search</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">insert</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">browse</span></code></p></li> </ul> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationTreeEnableExpansion"> <code class="sig-name descname">$cfg['NavigationTreeEnableExpansion']</code><a class="headerlink" href="#cfg_NavigationTreeEnableExpansion" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Whether to offer the possibility of tree expansion in the navigation panel.</p> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationTreeShowTables"> <code class="sig-name descname">$cfg['NavigationTreeShowTables']</code><a class="headerlink" href="#cfg_NavigationTreeShowTables" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Whether to show tables under database in the navigation panel.</p> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationTreeShowViews"> <code class="sig-name descname">$cfg['NavigationTreeShowViews']</code><a class="headerlink" href="#cfg_NavigationTreeShowViews" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Whether to show views under database in the navigation panel.</p> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationTreeShowFunctions"> <code class="sig-name descname">$cfg['NavigationTreeShowFunctions']</code><a class="headerlink" href="#cfg_NavigationTreeShowFunctions" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Whether to show functions under database in the navigation panel.</p> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationTreeShowProcedures"> <code class="sig-name descname">$cfg['NavigationTreeShowProcedures']</code><a class="headerlink" href="#cfg_NavigationTreeShowProcedures" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Whether to show procedures under database in the navigation panel.</p> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationTreeShowEvents"> <code class="sig-name descname">$cfg['NavigationTreeShowEvents']</code><a class="headerlink" href="#cfg_NavigationTreeShowEvents" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Whether to show events under database in the navigation panel.</p> </dd></dl> <dl class="config option"> <dt id="cfg_NavigationWidth"> <code class="sig-name descname">$cfg['NavigationWidth']</code><a class="headerlink" href="#cfg_NavigationWidth" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>240</p> </dd> </dl> <p>Navigation panel width, set to 0 to collapse it by default.</p> </dd></dl> </div> <div class="section" id="main-panel"> <h2>Main panel<a class="headerlink" href="#main-panel" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_ShowStats"> <code class="sig-name descname">$cfg['ShowStats']</code><a class="headerlink" href="#cfg_ShowStats" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Defines whether or not to display space usage and statistics about databases and tables. Note that statistics requires at least MySQL 3.23.3 and that, at this date, MySQL doesn’t return such information for Berkeley DB tables.</p> </dd></dl> <dl class="config option"> <dt id="cfg_ShowServerInfo"> <code class="sig-name descname">$cfg['ShowServerInfo']</code><a class="headerlink" href="#cfg_ShowServerInfo" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Defines whether to display detailed server information on main page. You can additionally hide more information by using <span class="target" id="index-147"></span><a class="reference internal" href="#cfg_Servers_verbose"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['verbose']</span></code></a>.</p> </dd></dl> <dl class="config option"> <dt id="cfg_ShowPhpInfo"> <code class="sig-name descname">$cfg['ShowPhpInfo']</code><a class="headerlink" href="#cfg_ShowPhpInfo" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Defines whether to display the <span class="guilabel">PHP information</span> or not at the starting main (right) frame.</p> <p>Please note that to block the usage of <code class="docutils literal notranslate"><span class="pre">phpinfo()</span></code> in scripts, you have to put this in your <code class="file docutils literal notranslate"><span class="pre">php.ini</span></code>:</p> <div class="highlight-ini notranslate"><div class="highlight"><pre><span></span><span class="na">disable_functions</span> <span class="o">=</span> <span class="s">phpinfo()</span> </pre></div> </div> <div class="admonition warning"> <p class="admonition-title">Warning</p> <p>Enabling phpinfo page will leak quite a lot of information about server setup. Is it not recommended to enable this on shared installations.</p> <p>This might also make easier some remote attacks on your installations, so enable this only when needed.</p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_ShowChgPassword"> <code class="sig-name descname">$cfg['ShowChgPassword']</code><a class="headerlink" href="#cfg_ShowChgPassword" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Defines whether to display the <span class="guilabel">Change password</span> link or not at the starting main (right) frame. This setting does not check MySQL commands entered directly.</p> <p>Please note that enabling the <span class="guilabel">Change password</span> link has no effect with config authentication mode: because of the hard coded password value in the configuration file, end users can’t be allowed to change their passwords.</p> </dd></dl> <dl class="config option"> <dt id="cfg_ShowCreateDb"> <code class="sig-name descname">$cfg['ShowCreateDb']</code><a class="headerlink" href="#cfg_ShowCreateDb" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Defines whether to display the form for creating database or not at the starting main (right) frame. This setting does not check MySQL commands entered directly.</p> </dd></dl> <dl class="config option"> <dt id="cfg_ShowGitRevision"> <code class="sig-name descname">$cfg['ShowGitRevision']</code><a class="headerlink" href="#cfg_ShowGitRevision" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Defines whether to display information about the current Git revision (if applicable) on the main panel.</p> </dd></dl> <dl class="config option"> <dt id="cfg_MysqlMinVersion"> <code class="sig-name descname">$cfg['MysqlMinVersion']</code><a class="headerlink" href="#cfg_MysqlMinVersion" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> </dl> <p>Defines the minimum supported MySQL version. The default is chosen by the phpMyAdmin team; however this directive was asked by a developer of the Plesk control panel to ease integration with older MySQL servers (where most of the phpMyAdmin features work).</p> </dd></dl> </div> <div class="section" id="database-structure"> <h2>Database structure<a class="headerlink" href="#database-structure" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_ShowDbStructureCreation"> <code class="sig-name descname">$cfg['ShowDbStructureCreation']</code><a class="headerlink" href="#cfg_ShowDbStructureCreation" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Defines whether the database structure page (tables list) has a “Creation” column that displays when each table was created.</p> </dd></dl> <dl class="config option"> <dt id="cfg_ShowDbStructureLastUpdate"> <code class="sig-name descname">$cfg['ShowDbStructureLastUpdate']</code><a class="headerlink" href="#cfg_ShowDbStructureLastUpdate" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Defines whether the database structure page (tables list) has a “Last update” column that displays when each table was last updated.</p> </dd></dl> <dl class="config option"> <dt id="cfg_ShowDbStructureLastCheck"> <code class="sig-name descname">$cfg['ShowDbStructureLastCheck']</code><a class="headerlink" href="#cfg_ShowDbStructureLastCheck" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Defines whether the database structure page (tables list) has a “Last check” column that displays when each table was last checked.</p> </dd></dl> <dl class="config option"> <dt id="cfg_HideStructureActions"> <code class="sig-name descname">$cfg['HideStructureActions']</code><a class="headerlink" href="#cfg_HideStructureActions" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Defines whether the table structure actions are hidden under a “<span class="guilabel">More</span>” drop-down.</p> </dd></dl> <dl class="config option"> <dt id="cfg_ShowColumnComments"> <code class="sig-name descname">$cfg['ShowColumnComments']</code><a class="headerlink" href="#cfg_ShowColumnComments" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Defines whether to show column comments as a column in the table structure view.</p> </dd></dl> </div> <div class="section" id="browse-mode"> <h2>Browse mode<a class="headerlink" href="#browse-mode" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_TableNavigationLinksMode"> <code class="sig-name descname">$cfg['TableNavigationLinksMode']</code><a class="headerlink" href="#cfg_TableNavigationLinksMode" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'icons'</span></code></p> </dd> </dl> <p>Defines whether the table navigation links contain <code class="docutils literal notranslate"><span class="pre">'icons'</span></code>, <code class="docutils literal notranslate"><span class="pre">'text'</span></code> or <code class="docutils literal notranslate"><span class="pre">'both'</span></code>.</p> </dd></dl> <dl class="config option"> <dt id="cfg_ActionLinksMode"> <code class="sig-name descname">$cfg['ActionLinksMode']</code><a class="headerlink" href="#cfg_ActionLinksMode" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'both'</span></code></p> </dd> </dl> <p>If set to <code class="docutils literal notranslate"><span class="pre">icons</span></code>, will display icons instead of text for db and table properties links (like <span class="guilabel">Browse</span>, <span class="guilabel">Select</span>, <span class="guilabel">Insert</span>, …). Can be set to <code class="docutils literal notranslate"><span class="pre">'both'</span></code> if you want icons AND text. When set to <code class="docutils literal notranslate"><span class="pre">text</span></code>, will only show text.</p> </dd></dl> <dl class="config option"> <dt id="cfg_RowActionType"> <code class="sig-name descname">$cfg['RowActionType']</code><a class="headerlink" href="#cfg_RowActionType" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'both'</span></code></p> </dd> </dl> <p>Whether to display icons or text or both icons and text in table row action segment. Value can be either of <code class="docutils literal notranslate"><span class="pre">'icons'</span></code>, <code class="docutils literal notranslate"><span class="pre">'text'</span></code> or <code class="docutils literal notranslate"><span class="pre">'both'</span></code>.</p> </dd></dl> <dl class="config option"> <dt id="cfg_ShowAll"> <code class="sig-name descname">$cfg['ShowAll']</code><a class="headerlink" href="#cfg_ShowAll" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Defines whether a user should be displayed a “<span class="guilabel">Show all</span>” button in browse mode or not in all cases. By default it is shown only on small tables (less than 500 rows) to avoid performance issues while getting too many rows.</p> </dd></dl> <dl class="config option"> <dt id="cfg_MaxRows"> <code class="sig-name descname">$cfg['MaxRows']</code><a class="headerlink" href="#cfg_MaxRows" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>25</p> </dd> </dl> <p>Number of rows displayed when browsing a result set and no LIMIT clause is used. If the result set contains more rows, “<span class="guilabel">Previous</span>” and “<span class="guilabel">Next</span>” links will be shown. Possible values: 25,50,100,250,500.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Order"> <code class="sig-name descname">$cfg['Order']</code><a class="headerlink" href="#cfg_Order" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'SMART'</span></code></p> </dd> </dl> <p>Defines whether columns are displayed in ascending (<code class="docutils literal notranslate"><span class="pre">ASC</span></code>) order, in descending (<code class="docutils literal notranslate"><span class="pre">DESC</span></code>) order or in a “smart” (<code class="docutils literal notranslate"><span class="pre">SMART</span></code>) order - I.E. descending order for columns of type TIME, DATE, DATETIME and TIMESTAMP, ascending order else- by default.</p> <div class="versionchanged"> <p><span class="versionmodified changed">Changed in version 3.4.0: </span>Since phpMyAdmin 3.4.0 the default value is <code class="docutils literal notranslate"><span class="pre">'SMART'</span></code>.</p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_GridEditing"> <code class="sig-name descname">$cfg['GridEditing']</code><a class="headerlink" href="#cfg_GridEditing" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'double-click'</span></code></p> </dd> </dl> <p>Defines which action (<code class="docutils literal notranslate"><span class="pre">double-click</span></code> or <code class="docutils literal notranslate"><span class="pre">click</span></code>) triggers grid editing. Can be deactivated with the <code class="docutils literal notranslate"><span class="pre">disabled</span></code> value.</p> </dd></dl> <dl class="config option"> <dt id="cfg_RelationalDisplay"> <code class="sig-name descname">$cfg['RelationalDisplay']</code><a class="headerlink" href="#cfg_RelationalDisplay" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'K'</span></code></p> </dd> </dl> <p>Defines the initial behavior for Options > Relational. <code class="docutils literal notranslate"><span class="pre">K</span></code>, which is the default, displays the key while <code class="docutils literal notranslate"><span class="pre">D</span></code> shows the display column.</p> </dd></dl> <dl class="config option"> <dt id="cfg_SaveCellsAtOnce"> <code class="sig-name descname">$cfg['SaveCellsAtOnce']</code><a class="headerlink" href="#cfg_SaveCellsAtOnce" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Defines whether or not to save all edited cells at once for grid editing.</p> </dd></dl> </div> <div class="section" id="editing-mode"> <h2>Editing mode<a class="headerlink" href="#editing-mode" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_ProtectBinary"> <code class="sig-name descname">$cfg['ProtectBinary']</code><a class="headerlink" href="#cfg_ProtectBinary" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean or string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'blob'</span></code></p> </dd> </dl> <p>Defines whether <code class="docutils literal notranslate"><span class="pre">BLOB</span></code> or <code class="docutils literal notranslate"><span class="pre">BINARY</span></code> columns are protected from editing when browsing a table’s content. Valid values are:</p> <ul class="simple"> <li><p><code class="docutils literal notranslate"><span class="pre">false</span></code> to allow editing of all columns;</p></li> <li><p><code class="docutils literal notranslate"><span class="pre">'blob'</span></code> to allow editing of all columns except <code class="docutils literal notranslate"><span class="pre">BLOBS</span></code>;</p></li> <li><p><code class="docutils literal notranslate"><span class="pre">'noblob'</span></code> to disallow editing of all columns except <code class="docutils literal notranslate"><span class="pre">BLOBS</span></code> (the opposite of <code class="docutils literal notranslate"><span class="pre">'blob'</span></code>);</p></li> <li><p><code class="docutils literal notranslate"><span class="pre">'all'</span></code> to disallow editing of all <code class="docutils literal notranslate"><span class="pre">BINARY</span></code> or <code class="docutils literal notranslate"><span class="pre">BLOB</span></code> columns.</p></li> </ul> </dd></dl> <dl class="config option"> <dt id="cfg_ShowFunctionFields"> <code class="sig-name descname">$cfg['ShowFunctionFields']</code><a class="headerlink" href="#cfg_ShowFunctionFields" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Defines whether or not MySQL functions fields should be initially displayed in edit/insert mode. Since version 2.10, the user can toggle this setting from the interface.</p> </dd></dl> <dl class="config option"> <dt id="cfg_ShowFieldTypesInDataEditView"> <code class="sig-name descname">$cfg['ShowFieldTypesInDataEditView']</code><a class="headerlink" href="#cfg_ShowFieldTypesInDataEditView" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Defines whether or not type fields should be initially displayed in edit/insert mode. The user can toggle this setting from the interface.</p> </dd></dl> <dl class="config option"> <dt id="cfg_InsertRows"> <code class="sig-name descname">$cfg['InsertRows']</code><a class="headerlink" href="#cfg_InsertRows" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>2</p> </dd> </dl> <p>Defines the default number of rows to be entered from the Insert page. Users can manually change this from the bottom of that page to add or remove blank rows.</p> </dd></dl> <dl class="config option"> <dt id="cfg_ForeignKeyMaxLimit"> <code class="sig-name descname">$cfg['ForeignKeyMaxLimit']</code><a class="headerlink" href="#cfg_ForeignKeyMaxLimit" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>100</p> </dd> </dl> <p>If there are fewer items than this in the set of foreign keys, then a drop-down box of foreign keys is presented, in the style described by the <span class="target" id="index-148"></span><a class="reference internal" href="#cfg_ForeignKeyDropdownOrder"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['ForeignKeyDropdownOrder']</span></code></a> setting.</p> </dd></dl> <dl class="config option"> <dt id="cfg_ForeignKeyDropdownOrder"> <code class="sig-name descname">$cfg['ForeignKeyDropdownOrder']</code><a class="headerlink" href="#cfg_ForeignKeyDropdownOrder" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>array(‘content-id’, ‘id-content’)</p> </dd> </dl> <p>For the foreign key drop-down fields, there are several methods of display, offering both the key and value data. The contents of the array should be one or both of the following strings: <code class="docutils literal notranslate"><span class="pre">content-id</span></code>, <code class="docutils literal notranslate"><span class="pre">id-content</span></code>.</p> </dd></dl> </div> <div class="section" id="export-and-import-settings"> <h2>Export and import settings<a class="headerlink" href="#export-and-import-settings" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_ZipDump"> <code class="sig-name descname">$cfg['ZipDump']</code><a class="headerlink" href="#cfg_ZipDump" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_GZipDump"> <code class="sig-name descname">$cfg['GZipDump']</code><a class="headerlink" href="#cfg_GZipDump" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_BZipDump"> <code class="sig-name descname">$cfg['BZipDump']</code><a class="headerlink" href="#cfg_BZipDump" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Defines whether to allow the use of zip/GZip/BZip2 compression when creating a dump file</p> </dd></dl> <dl class="config option"> <dt id="cfg_CompressOnFly"> <code class="sig-name descname">$cfg['CompressOnFly']</code><a class="headerlink" href="#cfg_CompressOnFly" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Defines whether to allow on the fly compression for GZip/BZip2 compressed exports. This doesn’t affect smaller dumps and allows users to create larger dumps that won’t otherwise fit in memory due to php memory limit. Produced files contain more GZip/BZip2 headers, but all normal programs handle this correctly.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Export"> <code class="sig-name descname">$cfg['Export']</code><a class="headerlink" href="#cfg_Export" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>array(…)</p> </dd> </dl> <p>In this array are defined default parameters for export, names of items are similar to texts seen on export page, so you can easily identify what they mean.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Export_format"> <code class="sig-name descname">$cfg['Export']['format']</code><a class="headerlink" href="#cfg_Export_format" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'sql'</span></code></p> </dd> </dl> <p>Default export format.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Export_method"> <code class="sig-name descname">$cfg['Export']['method']</code><a class="headerlink" href="#cfg_Export_method" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'quick'</span></code></p> </dd> </dl> <p>Defines how the export form is displayed when it loads. Valid values are:</p> <ul class="simple"> <li><p><code class="docutils literal notranslate"><span class="pre">quick</span></code> to display the minimum number of options to configure</p></li> <li><p><code class="docutils literal notranslate"><span class="pre">custom</span></code> to display every available option to configure</p></li> <li><p><code class="docutils literal notranslate"><span class="pre">custom-no-form</span></code> same as <code class="docutils literal notranslate"><span class="pre">custom</span></code> but does not display the option of using quick export</p></li> </ul> </dd></dl> <dl class="config option"> <dt id="cfg_Export_charset"> <code class="sig-name descname">$cfg['Export']['charset']</code><a class="headerlink" href="#cfg_Export_charset" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>Defines charset for generated export. By default no charset conversion is done assuming UTF-8.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Export_file_template_table"> <code class="sig-name descname">$cfg['Export']['file_template_table']</code><a class="headerlink" href="#cfg_Export_file_template_table" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'@TABLE@'</span></code></p> </dd> </dl> <p>Default filename template for table exports.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="faq.html#faq6-27"><span class="std std-ref">6.27 What format strings can I use?</span></a></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Export_file_template_database"> <code class="sig-name descname">$cfg['Export']['file_template_database']</code><a class="headerlink" href="#cfg_Export_file_template_database" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'@DATABASE@'</span></code></p> </dd> </dl> <p>Default filename template for database exports.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="faq.html#faq6-27"><span class="std std-ref">6.27 What format strings can I use?</span></a></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Export_file_template_server"> <code class="sig-name descname">$cfg['Export']['file_template_server']</code><a class="headerlink" href="#cfg_Export_file_template_server" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'@SERVER@'</span></code></p> </dd> </dl> <p>Default filename template for server exports.</p> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="faq.html#faq6-27"><span class="std std-ref">6.27 What format strings can I use?</span></a></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Export_remove_definer_from_definitions"> <code class="sig-name descname">$cfg['Export']['remove_definer_from_definitions']</code><a class="headerlink" href="#cfg_Export_remove_definer_from_definitions" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Remove DEFINER clause from the event, view and routine definitions.</p> <div class="versionadded"> <p><span class="versionmodified added">New in version 5.2.0.</span></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_Import"> <code class="sig-name descname">$cfg['Import']</code><a class="headerlink" href="#cfg_Import" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>array(…)</p> </dd> </dl> <p>In this array are defined default parameters for import, names of items are similar to texts seen on import page, so you can easily identify what they mean.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Import_charset"> <code class="sig-name descname">$cfg['Import']['charset']</code><a class="headerlink" href="#cfg_Import_charset" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>Defines charset for import. By default no charset conversion is done assuming UTF-8.</p> </dd></dl> </div> <div class="section" id="tabs-display-settings"> <h2>Tabs display settings<a class="headerlink" href="#tabs-display-settings" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_TabsMode"> <code class="sig-name descname">$cfg['TabsMode']</code><a class="headerlink" href="#cfg_TabsMode" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'both'</span></code></p> </dd> </dl> <p>Defines whether the menu tabs contain <code class="docutils literal notranslate"><span class="pre">'icons'</span></code>, <code class="docutils literal notranslate"><span class="pre">'text'</span></code> or <code class="docutils literal notranslate"><span class="pre">'both'</span></code>.</p> </dd></dl> <dl class="config option"> <dt id="cfg_PropertiesNumColumns"> <code class="sig-name descname">$cfg['PropertiesNumColumns']</code><a class="headerlink" href="#cfg_PropertiesNumColumns" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>1</p> </dd> </dl> <p>How many columns will be utilized to display the tables on the database property view? When setting this to a value larger than 1, the type of the database will be omitted for more display space.</p> </dd></dl> <dl class="config option"> <dt id="cfg_DefaultTabServer"> <code class="sig-name descname">$cfg['DefaultTabServer']</code><a class="headerlink" href="#cfg_DefaultTabServer" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'welcome'</span></code></p> </dd> </dl> <p>Defines the tab displayed by default on server view. The possible values are the localized equivalent of:</p> <ul class="simple"> <li><p><code class="docutils literal notranslate"><span class="pre">welcome</span></code> (recommended for multi-user setups)</p></li> <li><p><code class="docutils literal notranslate"><span class="pre">databases</span></code>,</p></li> <li><p><code class="docutils literal notranslate"><span class="pre">status</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">variables</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">privileges</span></code></p></li> </ul> </dd></dl> <dl class="config option"> <dt id="cfg_DefaultTabDatabase"> <code class="sig-name descname">$cfg['DefaultTabDatabase']</code><a class="headerlink" href="#cfg_DefaultTabDatabase" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'structure'</span></code></p> </dd> </dl> <p>Defines the tab displayed by default on database view. The possible values are the localized equivalent of:</p> <ul class="simple"> <li><p><code class="docutils literal notranslate"><span class="pre">structure</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">sql</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">search</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">operations</span></code></p></li> </ul> </dd></dl> <dl class="config option"> <dt id="cfg_DefaultTabTable"> <code class="sig-name descname">$cfg['DefaultTabTable']</code><a class="headerlink" href="#cfg_DefaultTabTable" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'browse'</span></code></p> </dd> </dl> <p>Defines the tab displayed by default on table view. The possible values are the localized equivalent of:</p> <ul class="simple"> <li><p><code class="docutils literal notranslate"><span class="pre">structure</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">sql</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">search</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">insert</span></code></p></li> <li><p><code class="docutils literal notranslate"><span class="pre">browse</span></code></p></li> </ul> </dd></dl> </div> <div class="section" id="pdf-options"> <h2>PDF Options<a class="headerlink" href="#pdf-options" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_PDFPageSizes"> <code class="sig-name descname">$cfg['PDFPageSizes']</code><a class="headerlink" href="#cfg_PDFPageSizes" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">array('A3',</span> <span class="pre">'A4',</span> <span class="pre">'A5',</span> <span class="pre">'letter',</span> <span class="pre">'legal')</span></code></p> </dd> </dl> <p>Array of possible paper sizes for creating PDF pages.</p> <p>You should never need to change this.</p> </dd></dl> <dl class="config option"> <dt id="cfg_PDFDefaultPageSize"> <code class="sig-name descname">$cfg['PDFDefaultPageSize']</code><a class="headerlink" href="#cfg_PDFDefaultPageSize" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'A4'</span></code></p> </dd> </dl> <p>Default page size to use when creating PDF pages. Valid values are any listed in <span class="target" id="index-149"></span><a class="reference internal" href="#cfg_PDFPageSizes"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['PDFPageSizes']</span></code></a>.</p> </dd></dl> </div> <div class="section" id="languages"> <h2>Languages<a class="headerlink" href="#languages" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_DefaultLang"> <code class="sig-name descname">$cfg['DefaultLang']</code><a class="headerlink" href="#cfg_DefaultLang" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'en'</span></code></p> </dd> </dl> <p>Defines the default language to use, if not browser-defined or user- defined. The corresponding language file needs to be in locale/<em>code</em>/LC_MESSAGES/phpmyadmin.mo.</p> </dd></dl> <dl class="config option"> <dt id="cfg_DefaultConnectionCollation"> <code class="sig-name descname">$cfg['DefaultConnectionCollation']</code><a class="headerlink" href="#cfg_DefaultConnectionCollation" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'utf8mb4_general_ci'</span></code></p> </dd> </dl> <p>Defines the default connection collation to use, if not user-defined. See the <a class="reference external" href="https://dev.mysql.com/doc/refman/5.7/en/charset-charsets.html">MySQL documentation for charsets</a> for list of possible values.</p> </dd></dl> <dl class="config option"> <dt id="cfg_Lang"> <code class="sig-name descname">$cfg['Lang']</code><a class="headerlink" href="#cfg_Lang" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>not set</p> </dd> </dl> <p>Force language to use. The corresponding language file needs to be in locale/<em>code</em>/LC_MESSAGES/phpmyadmin.mo.</p> </dd></dl> <dl class="config option"> <dt id="cfg_FilterLanguages"> <code class="sig-name descname">$cfg['FilterLanguages']</code><a class="headerlink" href="#cfg_FilterLanguages" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>Limit list of available languages to those matching the given regular expression. For example if you want only Czech and English, you should set filter to <code class="docutils literal notranslate"><span class="pre">'^(cs|en)'</span></code>.</p> </dd></dl> <dl class="config option"> <dt id="cfg_RecodingEngine"> <code class="sig-name descname">$cfg['RecodingEngine']</code><a class="headerlink" href="#cfg_RecodingEngine" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'auto'</span></code></p> </dd> </dl> <p>You can select here which functions will be used for character set conversion. Possible values are:</p> <ul class="simple"> <li><p>auto - automatically use available one (first is tested iconv, then recode)</p></li> <li><p>iconv - use iconv or libiconv functions</p></li> <li><p>recode - use recode_string function</p></li> <li><p>mb - use <a class="reference internal" href="glossary.html#term-mbstring"><span class="xref std std-term">mbstring</span></a> extension</p></li> <li><p>none - disable encoding conversion</p></li> </ul> <p>Enabled charset conversion activates a pull-down menu in the Export and Import pages, to choose the character set when exporting a file. The default value in this menu comes from <span class="target" id="index-150"></span><a class="reference internal" href="#cfg_Export_charset"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Export']['charset']</span></code></a> and <span class="target" id="index-151"></span><a class="reference internal" href="#cfg_Import_charset"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Import']['charset']</span></code></a>.</p> </dd></dl> <dl class="config option"> <dt id="cfg_IconvExtraParams"> <code class="sig-name descname">$cfg['IconvExtraParams']</code><a class="headerlink" href="#cfg_IconvExtraParams" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'//TRANSLIT'</span></code></p> </dd> </dl> <p>Specify some parameters for iconv used in charset conversion. See <a class="reference external" href="https://www.gnu.org/savannah-checkouts/gnu/libiconv/documentation/libiconv-1.15/iconv_open.3.html">iconv documentation</a> for details. By default <code class="docutils literal notranslate"><span class="pre">//TRANSLIT</span></code> is used, so that invalid characters will be transliterated.</p> </dd></dl> <dl class="config option"> <dt id="cfg_AvailableCharsets"> <code class="sig-name descname">$cfg['AvailableCharsets']</code><a class="headerlink" href="#cfg_AvailableCharsets" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>array(…)</p> </dd> </dl> <p>Available character sets for MySQL conversion. You can add your own (any of supported by recode/iconv) or remove these which you don’t use. Character sets will be shown in same order as here listed, so if you frequently use some of these move them to the top.</p> </dd></dl> </div> <div class="section" id="web-server-settings"> <h2>Web server settings<a class="headerlink" href="#web-server-settings" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_OBGzip"> <code class="sig-name descname">$cfg['OBGzip']</code><a class="headerlink" href="#cfg_OBGzip" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string/boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'auto'</span></code></p> </dd> </dl> <p>Defines whether to use GZip output buffering for increased speed in <a class="reference internal" href="glossary.html#term-HTTP"><span class="xref std std-term">HTTP</span></a> transfers. Set to true/false for enabling/disabling. When set to ‘auto’ (string), phpMyAdmin tries to enable output buffering and will automatically disable it if your browser has some problems with buffering. IE6 with a certain patch is known to cause data corruption when having enabled buffering.</p> </dd></dl> <dl class="config option"> <dt id="cfg_TrustedProxies"> <code class="sig-name descname">$cfg['TrustedProxies']</code><a class="headerlink" href="#cfg_TrustedProxies" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>array()</p> </dd> </dl> <p>Lists proxies and HTTP headers which are trusted for <span class="target" id="index-152"></span><a class="reference internal" href="#cfg_Servers_AllowDeny_order"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['AllowDeny']['order']</span></code></a>. This list is by default empty, you need to fill in some trusted proxy servers if you want to use rules for IP addresses behind proxy.</p> <p>The following example specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (<code class="docutils literal notranslate"><span class="pre">X-Forwarded-For</span></code>) header coming from the proxy 1.2.3.4:</p> <div class="highlight-php notranslate"><div class="highlight"><pre><span></span><span class="nv">$cfg</span><span class="p">[</span><span class="s1">'TrustedProxies'</span><span class="p">]</span> <span class="o">=</span> <span class="p">[</span><span class="s1">'1.2.3.4'</span> <span class="o">=></span> <span class="s1">'HTTP_X_FORWARDED_FOR'</span><span class="p">];</span> </pre></div> </div> <p>The <span class="target" id="index-153"></span><a class="reference internal" href="#cfg_Servers_AllowDeny_rules"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['AllowDeny']['rules']</span></code></a> directive uses the client’s IP address as usual.</p> </dd></dl> <dl class="config option"> <dt id="cfg_GD2Available"> <code class="sig-name descname">$cfg['GD2Available']</code><a class="headerlink" href="#cfg_GD2Available" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'auto'</span></code></p> </dd> </dl> <p>Specifies whether GD >= 2 is available. If yes it can be used for MIME transformations. Possible values are:</p> <ul class="simple"> <li><p>auto - automatically detect</p></li> <li><p>yes - GD 2 functions can be used</p></li> <li><p>no - GD 2 function cannot be used</p></li> </ul> </dd></dl> <dl class="config option"> <dt id="cfg_CheckConfigurationPermissions"> <code class="sig-name descname">$cfg['CheckConfigurationPermissions']</code><a class="headerlink" href="#cfg_CheckConfigurationPermissions" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>We normally check the permissions on the configuration file to ensure it’s not world writable. However, phpMyAdmin could be installed on a NTFS filesystem mounted on a non-Windows server, in which case the permissions seems wrong but in fact cannot be detected. In this case a sysadmin would set this parameter to <code class="docutils literal notranslate"><span class="pre">false</span></code>.</p> </dd></dl> <dl class="config option"> <dt id="cfg_LinkLengthLimit"> <code class="sig-name descname">$cfg['LinkLengthLimit']</code><a class="headerlink" href="#cfg_LinkLengthLimit" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>1000</p> </dd> </dl> <p>Limit for length of <a class="reference internal" href="glossary.html#term-URL"><span class="xref std std-term">URL</span></a> in links. When length would be above this limit, it is replaced by form with button. This is required as some web servers (<a class="reference internal" href="glossary.html#term-IIS"><span class="xref std std-term">IIS</span></a>) have problems with long <a class="reference internal" href="glossary.html#term-URL"><span class="xref std std-term">URL</span></a> .</p> </dd></dl> <dl class="config option"> <dt id="cfg_CSPAllow"> <code class="sig-name descname">$cfg['CSPAllow']</code><a class="headerlink" href="#cfg_CSPAllow" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>Additional string to include in allowed script and image sources in Content Security Policy header.</p> <p>This can be useful when you want to include some external JavaScript files in <code class="file docutils literal notranslate"><span class="pre">config.footer.inc.php</span></code> or <code class="file docutils literal notranslate"><span class="pre">config.header.inc.php</span></code>, which would be normally not allowed by <a class="reference internal" href="glossary.html#term-Content-Security-Policy"><span class="xref std std-term">Content Security Policy</span></a>.</p> <p>To allow some sites, just list them within the string:</p> <div class="highlight-php notranslate"><div class="highlight"><pre><span></span><span class="nv">$cfg</span><span class="p">[</span><span class="s1">'CSPAllow'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'example.com example.net'</span><span class="p">;</span> </pre></div> </div> <div class="versionadded"> <p><span class="versionmodified added">New in version 4.0.4.</span></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_DisableMultiTableMaintenance"> <code class="sig-name descname">$cfg['DisableMultiTableMaintenance']</code><a class="headerlink" href="#cfg_DisableMultiTableMaintenance" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>In the database Structure page, it’s possible to mark some tables then choose an operation like optimizing for many tables. This can slow down a server; therefore, setting this to <code class="docutils literal notranslate"><span class="pre">true</span></code> prevents this kind of multiple maintenance operation.</p> </dd></dl> </div> <div class="section" id="theme-settings"> <h2>Theme settings<a class="headerlink" href="#theme-settings" title="Permalink to this headline">¶</a></h2> <blockquote> <div><p>Please directly modify <code class="file docutils literal notranslate"><span class="pre">themes/themename/scss/_variables.scss</span></code>, although your changes will be overwritten with the next update.</p> </div></blockquote> </div> <div class="section" id="design-customization"> <h2>Design customization<a class="headerlink" href="#design-customization" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_NavigationTreePointerEnable"> <code class="sig-name descname">$cfg['NavigationTreePointerEnable']</code><a class="headerlink" href="#cfg_NavigationTreePointerEnable" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>When set to true, hovering over an item in the navigation panel causes that item to be marked (the background is highlighted).</p> </dd></dl> <dl class="config option"> <dt id="cfg_BrowsePointerEnable"> <code class="sig-name descname">$cfg['BrowsePointerEnable']</code><a class="headerlink" href="#cfg_BrowsePointerEnable" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>When set to true, hovering over a row in the Browse page causes that row to be marked (the background is highlighted).</p> </dd></dl> <dl class="config option"> <dt id="cfg_BrowseMarkerEnable"> <code class="sig-name descname">$cfg['BrowseMarkerEnable']</code><a class="headerlink" href="#cfg_BrowseMarkerEnable" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>When set to true, a data row is marked (the background is highlighted) when the row is selected with the checkbox.</p> </dd></dl> <dl class="config option"> <dt id="cfg_LimitChars"> <code class="sig-name descname">$cfg['LimitChars']</code><a class="headerlink" href="#cfg_LimitChars" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>50</p> </dd> </dl> <p>Maximum number of characters shown in any non-numeric field on browse view. Can be turned off by a toggle button on the browse page.</p> </dd></dl> <dl class="config option"> <dt id="cfg_RowActionLinks"> <code class="sig-name descname">$cfg['RowActionLinks']</code><a class="headerlink" href="#cfg_RowActionLinks" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'left'</span></code></p> </dd> </dl> <p>Defines the place where table row links (Edit, Copy, Delete) would be put when tables contents are displayed (you may have them displayed at the left side, right side, both sides or nowhere).</p> </dd></dl> <dl class="config option"> <dt id="cfg_RowActionLinksWithoutUnique"> <code class="sig-name descname">$cfg['RowActionLinksWithoutUnique']</code><a class="headerlink" href="#cfg_RowActionLinksWithoutUnique" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Defines whether to show row links (Edit, Copy, Delete) and checkboxes for multiple row operations even when the selection does not have a <a class="reference internal" href="glossary.html#term-unique-key"><span class="xref std std-term">unique key</span></a>. Using row actions in the absence of a unique key may result in different/more rows being affected since there is no guaranteed way to select the exact row(s).</p> </dd></dl> <dl class="config option"> <dt id="cfg_RememberSorting"> <code class="sig-name descname">$cfg['RememberSorting']</code><a class="headerlink" href="#cfg_RememberSorting" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>If enabled, remember the sorting of each table when browsing them.</p> </dd></dl> <dl class="config option"> <dt id="cfg_TablePrimaryKeyOrder"> <code class="sig-name descname">$cfg['TablePrimaryKeyOrder']</code><a class="headerlink" href="#cfg_TablePrimaryKeyOrder" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'NONE'</span></code></p> </dd> </dl> <p>This defines the default sort order for the tables, having a <a class="reference internal" href="glossary.html#term-primary-key"><span class="xref std std-term">primary key</span></a>, when there is no sort order defines externally. Acceptable values : [‘NONE’, ‘ASC’, ‘DESC’]</p> </dd></dl> <dl class="config option"> <dt id="cfg_ShowBrowseComments"> <code class="sig-name descname">$cfg['ShowBrowseComments']</code><a class="headerlink" href="#cfg_ShowBrowseComments" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_ShowPropertyComments"> <code class="sig-name descname">$cfg['ShowPropertyComments']</code><a class="headerlink" href="#cfg_ShowPropertyComments" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>By setting the corresponding variable to <code class="docutils literal notranslate"><span class="pre">true</span></code> you can enable the display of column comments in Browse or Property display. In browse mode, the comments are shown inside the header. In property mode, comments are displayed using a CSS-formatted dashed-line below the name of the column. The comment is shown as a tool-tip for that column.</p> </dd></dl> <dl class="config option"> <dt id="cfg_FirstDayOfCalendar"> <code class="sig-name descname">$cfg['FirstDayOfCalendar']</code><a class="headerlink" href="#cfg_FirstDayOfCalendar" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>0</p> </dd> </dl> <p>This will define the first day of week in the calendar. The number can be set from 0 to 6, which represents the seven days of the week, Sunday to Saturday respectively. This value can also be configured by the user in <span class="guilabel">Settings</span> -> <span class="guilabel">Features</span> -> <span class="guilabel">General</span> -> <span class="guilabel">First day of calendar</span> field.</p> </dd></dl> </div> <div class="section" id="text-fields"> <h2>Text fields<a class="headerlink" href="#text-fields" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_CharEditing"> <code class="sig-name descname">$cfg['CharEditing']</code><a class="headerlink" href="#cfg_CharEditing" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'input'</span></code></p> </dd> </dl> <p>Defines which type of editing controls should be used for CHAR and VARCHAR columns. Applies to data editing and also to the default values in structure editing. Possible values are:</p> <ul class="simple"> <li><p>input - this allows to limit size of text to size of columns in MySQL, but has problems with newlines in columns</p></li> <li><p>textarea - no problems with newlines in columns, but also no length limitations</p></li> </ul> </dd></dl> <dl class="config option"> <dt id="cfg_MinSizeForInputField"> <code class="sig-name descname">$cfg['MinSizeForInputField']</code><a class="headerlink" href="#cfg_MinSizeForInputField" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>4</p> </dd> </dl> <p>Defines the minimum size for input fields generated for CHAR and VARCHAR columns.</p> </dd></dl> <dl class="config option"> <dt id="cfg_MaxSizeForInputField"> <code class="sig-name descname">$cfg['MaxSizeForInputField']</code><a class="headerlink" href="#cfg_MaxSizeForInputField" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>60</p> </dd> </dl> <p>Defines the maximum size for input fields generated for CHAR and VARCHAR columns.</p> </dd></dl> <dl class="config option"> <dt id="cfg_TextareaCols"> <code class="sig-name descname">$cfg['TextareaCols']</code><a class="headerlink" href="#cfg_TextareaCols" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>40</p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_TextareaRows"> <code class="sig-name descname">$cfg['TextareaRows']</code><a class="headerlink" href="#cfg_TextareaRows" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>15</p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_CharTextareaCols"> <code class="sig-name descname">$cfg['CharTextareaCols']</code><a class="headerlink" href="#cfg_CharTextareaCols" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>40</p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_CharTextareaRows"> <code class="sig-name descname">$cfg['CharTextareaRows']</code><a class="headerlink" href="#cfg_CharTextareaRows" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>7</p> </dd> </dl> <p>Number of columns and rows for the textareas. This value will be emphasized (*2) for <a class="reference internal" href="glossary.html#term-SQL"><span class="xref std std-term">SQL</span></a> query textareas and (*1.25) for <a class="reference internal" href="glossary.html#term-SQL"><span class="xref std std-term">SQL</span></a> textareas inside the query window.</p> <p>The Char* values are used for CHAR and VARCHAR editing (if configured via <span class="target" id="index-154"></span><a class="reference internal" href="#cfg_CharEditing"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['CharEditing']</span></code></a>).</p> <div class="versionchanged"> <p><span class="versionmodified changed">Changed in version 5.0.0: </span>The default value was changed from 2 to 7.</p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_LongtextDoubleTextarea"> <code class="sig-name descname">$cfg['LongtextDoubleTextarea']</code><a class="headerlink" href="#cfg_LongtextDoubleTextarea" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Defines whether textarea for LONGTEXT columns should have double size.</p> </dd></dl> <dl class="config option"> <dt id="cfg_TextareaAutoSelect"> <code class="sig-name descname">$cfg['TextareaAutoSelect']</code><a class="headerlink" href="#cfg_TextareaAutoSelect" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Defines if the whole textarea of the query box will be selected on click.</p> </dd></dl> <dl class="config option"> <dt id="cfg_EnableAutocompleteForTablesAndColumns"> <code class="sig-name descname">$cfg['EnableAutocompleteForTablesAndColumns']</code><a class="headerlink" href="#cfg_EnableAutocompleteForTablesAndColumns" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Whether to enable autocomplete for table and column names in any SQL query box.</p> </dd></dl> </div> <div class="section" id="sql-query-box-settings"> <h2>SQL query box settings<a class="headerlink" href="#sql-query-box-settings" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_SQLQuery_Edit"> <code class="sig-name descname">$cfg['SQLQuery']['Edit']</code><a class="headerlink" href="#cfg_SQLQuery_Edit" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Whether to display an edit link to change a query in any SQL Query box.</p> </dd></dl> <dl class="config option"> <dt id="cfg_SQLQuery_Explain"> <code class="sig-name descname">$cfg['SQLQuery']['Explain']</code><a class="headerlink" href="#cfg_SQLQuery_Explain" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Whether to display a link to explain a SELECT query in any SQL Query box.</p> </dd></dl> <dl class="config option"> <dt id="cfg_SQLQuery_ShowAsPHP"> <code class="sig-name descname">$cfg['SQLQuery']['ShowAsPHP']</code><a class="headerlink" href="#cfg_SQLQuery_ShowAsPHP" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Whether to display a link to wrap a query in PHP code in any SQL Query box.</p> </dd></dl> <dl class="config option"> <dt id="cfg_SQLQuery_Refresh"> <code class="sig-name descname">$cfg['SQLQuery']['Refresh']</code><a class="headerlink" href="#cfg_SQLQuery_Refresh" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Whether to display a link to refresh a query in any SQL Query box.</p> </dd></dl> </div> <div class="section" id="web-server-upload-save-import-directories"> <span id="web-dirs"></span><h2>Web server upload/save/import directories<a class="headerlink" href="#web-server-upload-save-import-directories" title="Permalink to this headline">¶</a></h2> <p>If PHP is running in safe mode, all directories must be owned by the same user as the owner of the phpMyAdmin scripts.</p> <p>If the directory where phpMyAdmin is installed is subject to an <code class="docutils literal notranslate"><span class="pre">open_basedir</span></code> restriction, you need to create a temporary directory in some directory accessible by the PHP interpreter.</p> <p>For security reasons, all directories should be outside the tree published by webserver. If you cannot avoid having this directory published by webserver, limit access to it either by web server configuration (for example using .htaccess or web.config files) or place at least an empty <code class="file docutils literal notranslate"><span class="pre">index.html</span></code> file there, so that directory listing is not possible. However as long as the directory is accessible by web server, an attacker can guess filenames to download the files.</p> <dl class="config option"> <dt id="cfg_UploadDir"> <code class="sig-name descname">$cfg['UploadDir']</code><a class="headerlink" href="#cfg_UploadDir" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>The name of the directory where <a class="reference internal" href="glossary.html#term-SQL"><span class="xref std std-term">SQL</span></a> files have been uploaded by other means than phpMyAdmin (for example, FTP). Those files are available under a drop-down box when you click the database or table name, then the Import tab.</p> <p>If you want different directory for each user, %u will be replaced with username.</p> <p>Please note that the file names must have the suffix “.sql” (or “.sql.bz2” or “.sql.gz” if support for compressed formats is enabled).</p> <p>This feature is useful when your file is too big to be uploaded via <a class="reference internal" href="glossary.html#term-HTTP"><span class="xref std std-term">HTTP</span></a>, or when file uploads are disabled in PHP.</p> <div class="admonition warning"> <p class="admonition-title">Warning</p> <p>Please see top of this chapter (<a class="reference internal" href="#web-dirs"><span class="std std-ref">Web server upload/save/import directories</span></a>) for instructions how to setup this directory and how to make its usage secure.</p> </div> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p>See <a class="reference internal" href="faq.html#faq1-16"><span class="std std-ref">1.16 I cannot upload big dump files (memory, HTTP or timeout problems).</span></a> for alternatives.</p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_SaveDir"> <code class="sig-name descname">$cfg['SaveDir']</code><a class="headerlink" href="#cfg_SaveDir" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>The name of the webserver directory where exported files can be saved.</p> <p>If you want a different directory for each user, %u will be replaced with the username.</p> <p>Please note that the directory must exist and has to be writable for the user running webserver.</p> <div class="admonition warning"> <p class="admonition-title">Warning</p> <p>Please see top of this chapter (<a class="reference internal" href="#web-dirs"><span class="std std-ref">Web server upload/save/import directories</span></a>) for instructions how to setup this directory and how to make its usage secure.</p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_TempDir"> <code class="sig-name descname">$cfg['TempDir']</code><a class="headerlink" href="#cfg_TempDir" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'./tmp/'</span></code></p> </dd> </dl> <p>The name of the directory where temporary files can be stored. It is used for several purposes, currently:</p> <ul class="simple"> <li><p>The templates cache which speeds up page loading.</p></li> <li><p>ESRI Shapefiles import, see <a class="reference internal" href="faq.html#faq6-30"><span class="std std-ref">6.30 Import: How can I import ESRI Shapefiles?</span></a>.</p></li> <li><p>To work around limitations of <code class="docutils literal notranslate"><span class="pre">open_basedir</span></code> for uploaded files, see <a class="reference internal" href="faq.html#faq1-11"><span class="std std-ref">1.11 I get an ‘open_basedir restriction’ while uploading a file from the import tab.</span></a>.</p></li> </ul> <p>This directory should have as strict permissions as possible as the only user required to access this directory is the one who runs the webserver. If you have root privileges, simply make this user owner of this directory and make it accessible only by it:</p> <div class="highlight-sh notranslate"><div class="highlight"><pre><span></span>chown www-data:www-data tmp chmod <span class="m">700</span> tmp </pre></div> </div> <p>If you cannot change owner of the directory, you can achieve a similar setup using <a class="reference internal" href="glossary.html#term-ACL"><span class="xref std std-term">ACL</span></a>:</p> <div class="highlight-sh notranslate"><div class="highlight"><pre><span></span>chmod <span class="m">700</span> tmp setfacl -m <span class="s2">"g:www-data:rwx"</span> tmp setfacl -d -m <span class="s2">"g:www-data:rwx"</span> tmp </pre></div> </div> <p>If neither of above works for you, you can still make the directory <strong class="command">chmod 777</strong>, but it might impose risk of other users on system reading and writing data in this directory.</p> <div class="admonition warning"> <p class="admonition-title">Warning</p> <p>Please see top of this chapter (<a class="reference internal" href="#web-dirs"><span class="std std-ref">Web server upload/save/import directories</span></a>) for instructions how to setup this directory and how to make its usage secure.</p> </div> </dd></dl> </div> <div class="section" id="various-display-setting"> <h2>Various display setting<a class="headerlink" href="#various-display-setting" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_RepeatCells"> <code class="sig-name descname">$cfg['RepeatCells']</code><a class="headerlink" href="#cfg_RepeatCells" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>100</p> </dd> </dl> <p>Repeat the headers every X cells, or 0 to deactivate.</p> </dd></dl> <dl class="config option"> <dt id="cfg_QueryHistoryDB"> <code class="sig-name descname">$cfg['QueryHistoryDB']</code><a class="headerlink" href="#cfg_QueryHistoryDB" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_QueryHistoryMax"> <code class="sig-name descname">$cfg['QueryHistoryMax']</code><a class="headerlink" href="#cfg_QueryHistoryMax" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>25</p> </dd> </dl> <p>If <span class="target" id="index-155"></span><a class="reference internal" href="#cfg_QueryHistoryDB"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['QueryHistoryDB']</span></code></a> is set to <code class="docutils literal notranslate"><span class="pre">true</span></code>, all your Queries are logged to a table, which has to be created by you (see <span class="target" id="index-156"></span><a class="reference internal" href="#cfg_Servers_history"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['history']</span></code></a>). If set to false, all your queries will be appended to the form, but only as long as your window is opened they remain saved.</p> <p>When using the JavaScript based query window, it will always get updated when you click on a new table/db to browse and will focus if you click on <span class="guilabel">Edit SQL</span> after using a query. You can suppress updating the query window by checking the box <span class="guilabel">Do not overwrite this query from outside the window</span> below the query textarea. Then you can browse tables/databases in the background without losing the contents of the textarea, so this is especially useful when composing a query with tables you first have to look in. The checkbox will get automatically checked whenever you change the contents of the textarea. Please uncheck the button whenever you definitely want the query window to get updated even though you have made alterations.</p> <p>If <span class="target" id="index-157"></span><a class="reference internal" href="#cfg_QueryHistoryDB"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['QueryHistoryDB']</span></code></a> is set to <code class="docutils literal notranslate"><span class="pre">true</span></code> you can specify the amount of saved history items using <span class="target" id="index-158"></span><a class="reference internal" href="#cfg_QueryHistoryMax"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['QueryHistoryMax']</span></code></a>.</p> </dd></dl> <dl class="config option"> <dt id="cfg_BrowseMIME"> <code class="sig-name descname">$cfg['BrowseMIME']</code><a class="headerlink" href="#cfg_BrowseMIME" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Enable <a class="reference internal" href="transformations.html#transformations"><span class="std std-ref">Transformations</span></a>.</p> </dd></dl> <dl class="config option"> <dt id="cfg_MaxExactCount"> <code class="sig-name descname">$cfg['MaxExactCount']</code><a class="headerlink" href="#cfg_MaxExactCount" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>50000</p> </dd> </dl> <p>For InnoDB tables, determines for how large tables phpMyAdmin should get the exact row count using <code class="docutils literal notranslate"><span class="pre">SELECT</span> <span class="pre">COUNT</span></code>. If the approximate row count as returned by <code class="docutils literal notranslate"><span class="pre">SHOW</span> <span class="pre">TABLE</span> <span class="pre">STATUS</span></code> is smaller than this value, <code class="docutils literal notranslate"><span class="pre">SELECT</span> <span class="pre">COUNT</span></code> will be used, otherwise the approximate count will be used.</p> <div class="versionchanged"> <p><span class="versionmodified changed">Changed in version 4.8.0: </span>The default value was lowered to 50000 for performance reasons.</p> </div> <div class="versionchanged"> <p><span class="versionmodified changed">Changed in version 4.2.6: </span>The default value was changed to 500000.</p> </div> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="faq.html#faq3-11"><span class="std std-ref">3.11 The number of rows for InnoDB tables is not correct.</span></a></p> </div> </dd></dl> <dl class="config option"> <dt id="cfg_MaxExactCountViews"> <code class="sig-name descname">$cfg['MaxExactCountViews']</code><a class="headerlink" href="#cfg_MaxExactCountViews" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>0</p> </dd> </dl> <p>For VIEWs, since obtaining the exact count could have an impact on performance, this value is the maximum to be displayed, using a <code class="docutils literal notranslate"><span class="pre">SELECT</span> <span class="pre">COUNT</span> <span class="pre">...</span> <span class="pre">LIMIT</span></code>. Setting this to 0 bypasses any row counting.</p> </dd></dl> <dl class="config option"> <dt id="cfg_NaturalOrder"> <code class="sig-name descname">$cfg['NaturalOrder']</code><a class="headerlink" href="#cfg_NaturalOrder" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Sorts database and table names according to natural order (for example, t1, t2, t10). Currently implemented in the navigation panel and in Database view, for the table list.</p> </dd></dl> <dl class="config option"> <dt id="cfg_InitialSlidersState"> <code class="sig-name descname">$cfg['InitialSlidersState']</code><a class="headerlink" href="#cfg_InitialSlidersState" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'closed'</span></code></p> </dd> </dl> <p>If set to <code class="docutils literal notranslate"><span class="pre">'closed'</span></code>, the visual sliders are initially in a closed state. A value of <code class="docutils literal notranslate"><span class="pre">'open'</span></code> does the reverse. To completely disable all visual sliders, use <code class="docutils literal notranslate"><span class="pre">'disabled'</span></code>.</p> </dd></dl> <dl class="config option"> <dt id="cfg_UserprefsDisallow"> <code class="sig-name descname">$cfg['UserprefsDisallow']</code><a class="headerlink" href="#cfg_UserprefsDisallow" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>array()</p> </dd> </dl> <p>Contains names of configuration options (keys in <code class="docutils literal notranslate"><span class="pre">$cfg</span></code> array) that users can’t set through user preferences. For possible values, refer to classes under <code class="file docutils literal notranslate"><span class="pre">libraries/classes/Config/Forms/User/</span></code>.</p> </dd></dl> <dl class="config option"> <dt id="cfg_UserprefsDeveloperTab"> <code class="sig-name descname">$cfg['UserprefsDeveloperTab']</code><a class="headerlink" href="#cfg_UserprefsDeveloperTab" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <div class="versionadded"> <p><span class="versionmodified added">New in version 3.4.0.</span></p> </div> <p>Activates in the user preferences a tab containing options for developers of phpMyAdmin.</p> </dd></dl> </div> <div class="section" id="page-titles"> <h2>Page titles<a class="headerlink" href="#page-titles" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_TitleTable"> <code class="sig-name descname">$cfg['TitleTable']</code><a class="headerlink" href="#cfg_TitleTable" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'@HTTP_HOST@</span> <span class="pre">/</span> <span class="pre">@VSERVER@</span> <span class="pre">/</span> <span class="pre">@DATABASE@</span> <span class="pre">/</span> <span class="pre">@TABLE@</span> <span class="pre">|</span> <span class="pre">@PHPMYADMIN@'</span></code></p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_TitleDatabase"> <code class="sig-name descname">$cfg['TitleDatabase']</code><a class="headerlink" href="#cfg_TitleDatabase" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'@HTTP_HOST@</span> <span class="pre">/</span> <span class="pre">@VSERVER@</span> <span class="pre">/</span> <span class="pre">@DATABASE@</span> <span class="pre">|</span> <span class="pre">@PHPMYADMIN@'</span></code></p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_TitleServer"> <code class="sig-name descname">$cfg['TitleServer']</code><a class="headerlink" href="#cfg_TitleServer" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'@HTTP_HOST@</span> <span class="pre">/</span> <span class="pre">@VSERVER@</span> <span class="pre">|</span> <span class="pre">@PHPMYADMIN@'</span></code></p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_TitleDefault"> <code class="sig-name descname">$cfg['TitleDefault']</code><a class="headerlink" href="#cfg_TitleDefault" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'@HTTP_HOST@</span> <span class="pre">|</span> <span class="pre">@PHPMYADMIN@'</span></code></p> </dd> </dl> <p>Allows you to specify window’s title bar. You can use <a class="reference internal" href="faq.html#faq6-27"><span class="std std-ref">6.27 What format strings can I use?</span></a>.</p> </dd></dl> </div> <div class="section" id="theme-manager-settings"> <h2>Theme manager settings<a class="headerlink" href="#theme-manager-settings" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_ThemeManager"> <code class="sig-name descname">$cfg['ThemeManager']</code><a class="headerlink" href="#cfg_ThemeManager" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Enables user-selectable themes. See <a class="reference internal" href="faq.html#faqthemes"><span class="std std-ref">2.7 Using and creating themes</span></a>.</p> </dd></dl> <dl class="config option"> <dt id="cfg_ThemeDefault"> <code class="sig-name descname">$cfg['ThemeDefault']</code><a class="headerlink" href="#cfg_ThemeDefault" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'pmahomme'</span></code></p> </dd> </dl> <p>The default theme (a subdirectory under <code class="file docutils literal notranslate"><span class="pre">./themes/</span></code>).</p> </dd></dl> <dl class="config option"> <dt id="cfg_ThemePerServer"> <code class="sig-name descname">$cfg['ThemePerServer']</code><a class="headerlink" href="#cfg_ThemePerServer" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Whether to allow different theme for each server.</p> </dd></dl> <dl class="config option"> <dt id="cfg_FontSize"> <code class="sig-name descname">$cfg['FontSize']</code><a class="headerlink" href="#cfg_FontSize" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>‘82%’</p> </dd> </dl> <div class="deprecated"> <p><span class="versionmodified deprecated">Deprecated since version 5.0.0: </span>This setting was removed as the browser is more efficient, thus no need of this option.</p> </div> <p>Font size to use, is applied in CSS.</p> </dd></dl> </div> <div class="section" id="default-queries"> <h2>Default queries<a class="headerlink" href="#default-queries" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_DefaultQueryTable"> <code class="sig-name descname">$cfg['DefaultQueryTable']</code><a class="headerlink" href="#cfg_DefaultQueryTable" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'SELECT</span> <span class="pre">*</span> <span class="pre">FROM</span> <span class="pre">@TABLE@</span> <span class="pre">WHERE</span> <span class="pre">1'</span></code></p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_DefaultQueryDatabase"> <code class="sig-name descname">$cfg['DefaultQueryDatabase']</code><a class="headerlink" href="#cfg_DefaultQueryDatabase" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">''</span></code></p> </dd> </dl> <p>Default queries that will be displayed in query boxes when user didn’t specify any. You can use standard <a class="reference internal" href="faq.html#faq6-27"><span class="std std-ref">6.27 What format strings can I use?</span></a>.</p> </dd></dl> </div> <div class="section" id="mysql-settings"> <h2>MySQL settings<a class="headerlink" href="#mysql-settings" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_DefaultFunctions"> <code class="sig-name descname">$cfg['DefaultFunctions']</code><a class="headerlink" href="#cfg_DefaultFunctions" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">array('FUNC_CHAR'</span> <span class="pre">=></span> <span class="pre">'',</span> <span class="pre">'FUNC_DATE'</span> <span class="pre">=></span> <span class="pre">'',</span> <span class="pre">'FUNC_NUMBER'</span> <span class="pre">=></span> <span class="pre">'',</span> <span class="pre">'FUNC_SPATIAL'</span> <span class="pre">=></span> <span class="pre">'GeomFromText',</span> <span class="pre">'FUNC_UUID'</span> <span class="pre">=></span> <span class="pre">'UUID',</span> <span class="pre">'first_timestamp'</span> <span class="pre">=></span> <span class="pre">'NOW')</span></code></p> </dd> </dl> <p>Functions selected by default when inserting/changing row, Functions are defined for meta types as (<code class="docutils literal notranslate"><span class="pre">FUNC_NUMBER</span></code>, <code class="docutils literal notranslate"><span class="pre">FUNC_DATE</span></code>, <code class="docutils literal notranslate"><span class="pre">FUNC_CHAR</span></code>, <code class="docutils literal notranslate"><span class="pre">FUNC_SPATIAL</span></code>, <code class="docutils literal notranslate"><span class="pre">FUNC_UUID</span></code>) and for <code class="docutils literal notranslate"><span class="pre">first_timestamp</span></code>, which is used for first timestamp column in table.</p> <p>Example configuration</p> <div class="highlight-php notranslate"><div class="highlight"><pre><span></span><span class="nv">$cfg</span><span class="p">[</span><span class="s1">'DefaultFunctions'</span><span class="p">]</span> <span class="o">=</span> <span class="p">[</span> <span class="s1">'FUNC_CHAR'</span> <span class="o">=></span> <span class="s1">''</span><span class="p">,</span> <span class="s1">'FUNC_DATE'</span> <span class="o">=></span> <span class="s1">''</span><span class="p">,</span> <span class="s1">'FUNC_NUMBER'</span> <span class="o">=></span> <span class="s1">''</span><span class="p">,</span> <span class="s1">'FUNC_SPATIAL'</span> <span class="o">=></span> <span class="s1">'ST_GeomFromText'</span><span class="p">,</span> <span class="s1">'FUNC_UUID'</span> <span class="o">=></span> <span class="s1">'UUID'</span><span class="p">,</span> <span class="s1">'first_timestamp'</span> <span class="o">=></span> <span class="s1">'UTC_TIMESTAMP'</span><span class="p">,</span> <span class="p">];</span> </pre></div> </div> </dd></dl> </div> <div class="section" id="default-options-for-transformations"> <h2>Default options for Transformations<a class="headerlink" href="#default-options-for-transformations" title="Permalink to this headline">¶</a></h2> <dl class="config option"> <dt id="cfg_DefaultTransformations"> <code class="sig-name descname">$cfg['DefaultTransformations']</code><a class="headerlink" href="#cfg_DefaultTransformations" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>An array with below listed key-values</p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_DefaultTransformations_Substring"> <code class="sig-name descname">$cfg['DefaultTransformations']['Substring']</code><a class="headerlink" href="#cfg_DefaultTransformations_Substring" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>array(0, ‘all’, ‘…’)</p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_DefaultTransformations_Bool2Text"> <code class="sig-name descname">$cfg['DefaultTransformations']['Bool2Text']</code><a class="headerlink" href="#cfg_DefaultTransformations_Bool2Text" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>array(‘T’, ‘F’)</p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_DefaultTransformations_External"> <code class="sig-name descname">$cfg['DefaultTransformations']['External']</code><a class="headerlink" href="#cfg_DefaultTransformations_External" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>array(0, ‘-f /dev/null -i -wrap -q’, 1, 1)</p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_DefaultTransformations_PreApPend"> <code class="sig-name descname">$cfg['DefaultTransformations']['PreApPend']</code><a class="headerlink" href="#cfg_DefaultTransformations_PreApPend" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>array(‘’, ‘’)</p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_DefaultTransformations_Hex"> <code class="sig-name descname">$cfg['DefaultTransformations']['Hex']</code><a class="headerlink" href="#cfg_DefaultTransformations_Hex" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>array(‘2’)</p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_DefaultTransformations_DateFormat"> <code class="sig-name descname">$cfg['DefaultTransformations']['DateFormat']</code><a class="headerlink" href="#cfg_DefaultTransformations_DateFormat" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>array(0, ‘’, ‘local’)</p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_DefaultTransformations_Inline"> <code class="sig-name descname">$cfg['DefaultTransformations']['Inline']</code><a class="headerlink" href="#cfg_DefaultTransformations_Inline" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>array(‘100’, 100)</p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_DefaultTransformations_TextImageLink"> <code class="sig-name descname">$cfg['DefaultTransformations']['TextImageLink']</code><a class="headerlink" href="#cfg_DefaultTransformations_TextImageLink" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>array(‘’, 100, 50)</p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_DefaultTransformations_TextLink"> <code class="sig-name descname">$cfg['DefaultTransformations']['TextLink']</code><a class="headerlink" href="#cfg_DefaultTransformations_TextLink" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>array(‘’, ‘’, ‘’)</p> </dd> </dl> </dd></dl> </div> <div class="section" id="console-settings"> <h2>Console settings<a class="headerlink" href="#console-settings" title="Permalink to this headline">¶</a></h2> <div class="admonition note"> <p class="admonition-title">Note</p> <p>These settings are mostly meant to be changed by user.</p> </div> <dl class="config option"> <dt id="cfg_Console_StartHistory"> <code class="sig-name descname">$cfg['Console']['StartHistory']</code><a class="headerlink" href="#cfg_Console_StartHistory" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Show query history at start</p> </dd></dl> <dl class="config option"> <dt id="cfg_Console_AlwaysExpand"> <code class="sig-name descname">$cfg['Console']['AlwaysExpand']</code><a class="headerlink" href="#cfg_Console_AlwaysExpand" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Always expand query messages</p> </dd></dl> <dl class="config option"> <dt id="cfg_Console_CurrentQuery"> <code class="sig-name descname">$cfg['Console']['CurrentQuery']</code><a class="headerlink" href="#cfg_Console_CurrentQuery" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>true</p> </dd> </dl> <p>Show current browsing query</p> </dd></dl> <dl class="config option"> <dt id="cfg_Console_EnterExecutes"> <code class="sig-name descname">$cfg['Console']['EnterExecutes']</code><a class="headerlink" href="#cfg_Console_EnterExecutes" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Execute queries on Enter and insert new line with Shift+Enter</p> </dd></dl> <dl class="config option"> <dt id="cfg_Console_DarkTheme"> <code class="sig-name descname">$cfg['Console']['DarkTheme']</code><a class="headerlink" href="#cfg_Console_DarkTheme" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Switch to dark theme</p> </dd></dl> <dl class="config option"> <dt id="cfg_Console_Mode"> <code class="sig-name descname">$cfg['Console']['Mode']</code><a class="headerlink" href="#cfg_Console_Mode" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>‘info’</p> </dd> </dl> <p>Console mode</p> </dd></dl> <dl class="config option"> <dt id="cfg_Console_Height"> <code class="sig-name descname">$cfg['Console']['Height']</code><a class="headerlink" href="#cfg_Console_Height" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>integer</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>92</p> </dd> </dl> <p>Console height</p> </dd></dl> </div> <div class="section" id="developer"> <h2>Developer<a class="headerlink" href="#developer" title="Permalink to this headline">¶</a></h2> <div class="admonition warning"> <p class="admonition-title">Warning</p> <p>These settings might have huge effect on performance or security.</p> </div> <dl class="config option"> <dt id="cfg_environment"> <code class="sig-name descname">$cfg['environment']</code><a class="headerlink" href="#cfg_environment" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>string</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p><code class="docutils literal notranslate"><span class="pre">'production'</span></code></p> </dd> </dl> <p>Sets the working environment.</p> <p>This only needs to be changed when you are developing phpMyAdmin itself. The <code class="docutils literal notranslate"><span class="pre">development</span></code> mode may display debug information in some places.</p> <p>Possible values are <code class="docutils literal notranslate"><span class="pre">'production'</span></code> or <code class="docutils literal notranslate"><span class="pre">'development'</span></code>.</p> </dd></dl> <dl class="config option"> <dt id="cfg_DBG"> <code class="sig-name descname">$cfg['DBG']</code><a class="headerlink" href="#cfg_DBG" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>array</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>[]</p> </dd> </dl> </dd></dl> <dl class="config option"> <dt id="cfg_DBG_sql"> <code class="sig-name descname">$cfg['DBG']['sql']</code><a class="headerlink" href="#cfg_DBG_sql" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Enable logging queries and execution times to be displayed in the console’s Debug SQL tab.</p> </dd></dl> <dl class="config option"> <dt id="cfg_DBG_sqllog"> <code class="sig-name descname">$cfg['DBG']['sqllog']</code><a class="headerlink" href="#cfg_DBG_sqllog" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Enable logging of queries and execution times to the syslog. Requires <span class="target" id="index-159"></span><a class="reference internal" href="#cfg_DBG_sql"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['DBG']['sql']</span></code></a> to be enabled.</p> </dd></dl> <dl class="config option"> <dt id="cfg_DBG_demo"> <code class="sig-name descname">$cfg['DBG']['demo']</code><a class="headerlink" href="#cfg_DBG_demo" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Enable to let server present itself as demo server. This is used for <a class="reference external" href="https://www.phpmyadmin.net/try/">phpMyAdmin demo server</a>.</p> <p>It currently changes following behavior:</p> <ul class="simple"> <li><p>There is welcome message on the main page.</p></li> <li><p>There is footer information about demo server and used Git revision.</p></li> <li><p>The setup script is enabled even with existing configuration.</p></li> <li><p>The setup does not try to connect to the MySQL server.</p></li> </ul> </dd></dl> <dl class="config option"> <dt id="cfg_DBG_simple2fa"> <code class="sig-name descname">$cfg['DBG']['simple2fa']</code><a class="headerlink" href="#cfg_DBG_simple2fa" title="Permalink to this definition">¶</a></dt> <dd><dl class="field-list simple"> <dt class="field-odd">Type</dt> <dd class="field-odd"><p>boolean</p> </dd> <dt class="field-even">Default value</dt> <dd class="field-even"><p>false</p> </dd> </dl> <p>Can be used for testing two-factor authentication using <a class="reference internal" href="two_factor.html#simple2fa"><span class="std std-ref">Simple two-factor authentication</span></a>.</p> </dd></dl> </div> <div class="section" id="examples"> <span id="config-examples"></span><h2>Examples<a class="headerlink" href="#examples" title="Permalink to this headline">¶</a></h2> <p>See following configuration snippets for typical setups of phpMyAdmin.</p> <div class="section" id="basic-example"> <h3>Basic example<a class="headerlink" href="#basic-example" title="Permalink to this headline">¶</a></h3> <p>Example configuration file, which can be copied to <code class="file docutils literal notranslate"><span class="pre">config.inc.php</span></code> to get some core configuration layout; it is distributed with phpMyAdmin as <code class="file docutils literal notranslate"><span class="pre">config.sample.inc.php</span></code>. Please note that it does not contain all configuration options, only the most frequently used ones.</p> <div class="highlight-php notranslate"><div class="highlight"><pre><span></span><span class="o"><?</span><span class="nx">php</span> <span class="sd">/**</span> <span class="sd"> * phpMyAdmin sample configuration, you can use it as base for</span> <span class="sd"> * manual configuration. For easier setup you can use setup/</span> <span class="sd"> *</span> <span class="sd"> * All directives are explained in documentation in the doc/ folder</span> <span class="sd"> * or at <https://docs.phpmyadmin.net/>.</span> <span class="sd"> */</span> <span class="k">declare</span><span class="p">(</span><span class="nx">strict_types</span><span class="o">=</span><span class="mi">1</span><span class="p">);</span> <span class="sd">/**</span> <span class="sd"> * This is needed for cookie based authentication to encrypt password in</span> <span class="sd"> * cookie. Needs to be 32 chars long.</span> <span class="sd"> */</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'blowfish_secret'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">''</span><span class="p">;</span> <span class="cm">/* YOU MUST FILL IN THIS FOR COOKIE AUTH! */</span> <span class="sd">/**</span> <span class="sd"> * Servers configuration</span> <span class="sd"> */</span> <span class="nv">$i</span> <span class="o">=</span> <span class="mi">0</span><span class="p">;</span> <span class="sd">/**</span> <span class="sd"> * First server</span> <span class="sd"> */</span> <span class="nv">$i</span><span class="o">++</span><span class="p">;</span> <span class="cm">/* Authentication type */</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'auth_type'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'cookie'</span><span class="p">;</span> <span class="cm">/* Server parameters */</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'host'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'localhost'</span><span class="p">;</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'compress'</span><span class="p">]</span> <span class="o">=</span> <span class="k">false</span><span class="p">;</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'AllowNoPassword'</span><span class="p">]</span> <span class="o">=</span> <span class="k">false</span><span class="p">;</span> <span class="sd">/**</span> <span class="sd"> * phpMyAdmin configuration storage settings.</span> <span class="sd"> */</span> <span class="cm">/* User used to manipulate with storage */</span> <span class="c1">// $cfg['Servers'][$i]['controlhost'] = '';</span> <span class="c1">// $cfg['Servers'][$i]['controlport'] = '';</span> <span class="c1">// $cfg['Servers'][$i]['controluser'] = 'pma';</span> <span class="c1">// $cfg['Servers'][$i]['controlpass'] = 'pmapass';</span> <span class="cm">/* Storage database and tables */</span> <span class="c1">// $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';</span> <span class="c1">// $cfg['Servers'][$i]['bookmarktable'] = 'pma__bookmark';</span> <span class="c1">// $cfg['Servers'][$i]['relation'] = 'pma__relation';</span> <span class="c1">// $cfg['Servers'][$i]['table_info'] = 'pma__table_info';</span> <span class="c1">// $cfg['Servers'][$i]['table_coords'] = 'pma__table_coords';</span> <span class="c1">// $cfg['Servers'][$i]['pdf_pages'] = 'pma__pdf_pages';</span> <span class="c1">// $cfg['Servers'][$i]['column_info'] = 'pma__column_info';</span> <span class="c1">// $cfg['Servers'][$i]['history'] = 'pma__history';</span> <span class="c1">// $cfg['Servers'][$i]['table_uiprefs'] = 'pma__table_uiprefs';</span> <span class="c1">// $cfg['Servers'][$i]['tracking'] = 'pma__tracking';</span> <span class="c1">// $cfg['Servers'][$i]['userconfig'] = 'pma__userconfig';</span> <span class="c1">// $cfg['Servers'][$i]['recent'] = 'pma__recent';</span> <span class="c1">// $cfg['Servers'][$i]['favorite'] = 'pma__favorite';</span> <span class="c1">// $cfg['Servers'][$i]['users'] = 'pma__users';</span> <span class="c1">// $cfg['Servers'][$i]['usergroups'] = 'pma__usergroups';</span> <span class="c1">// $cfg['Servers'][$i]['navigationhiding'] = 'pma__navigationhiding';</span> <span class="c1">// $cfg['Servers'][$i]['savedsearches'] = 'pma__savedsearches';</span> <span class="c1">// $cfg['Servers'][$i]['central_columns'] = 'pma__central_columns';</span> <span class="c1">// $cfg['Servers'][$i]['designer_settings'] = 'pma__designer_settings';</span> <span class="c1">// $cfg['Servers'][$i]['export_templates'] = 'pma__export_templates';</span> <span class="sd">/**</span> <span class="sd"> * End of servers configuration</span> <span class="sd"> */</span> <span class="sd">/**</span> <span class="sd"> * Directories for saving/loading files from server</span> <span class="sd"> */</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'UploadDir'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">''</span><span class="p">;</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'SaveDir'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">''</span><span class="p">;</span> <span class="sd">/**</span> <span class="sd"> * Whether to display icons or text or both icons and text in table row</span> <span class="sd"> * action segment. Value can be either of 'icons', 'text' or 'both'.</span> <span class="sd"> * default = 'both'</span> <span class="sd"> */</span> <span class="c1">//$cfg['RowActionType'] = 'icons';</span> <span class="sd">/**</span> <span class="sd"> * Defines whether a user should be displayed a "show all (records)"</span> <span class="sd"> * button in browse mode or not.</span> <span class="sd"> * default = false</span> <span class="sd"> */</span> <span class="c1">//$cfg['ShowAll'] = true;</span> <span class="sd">/**</span> <span class="sd"> * Number of rows displayed when browsing a result set. If the result</span> <span class="sd"> * set contains more rows, "Previous" and "Next".</span> <span class="sd"> * Possible values: 25, 50, 100, 250, 500</span> <span class="sd"> * default = 25</span> <span class="sd"> */</span> <span class="c1">//$cfg['MaxRows'] = 50;</span> <span class="sd">/**</span> <span class="sd"> * Disallow editing of binary fields</span> <span class="sd"> * valid values are:</span> <span class="sd"> * false allow editing</span> <span class="sd"> * 'blob' allow editing except for BLOB fields</span> <span class="sd"> * 'noblob' disallow editing except for BLOB fields</span> <span class="sd"> * 'all' disallow editing</span> <span class="sd"> * default = 'blob'</span> <span class="sd"> */</span> <span class="c1">//$cfg['ProtectBinary'] = false;</span> <span class="sd">/**</span> <span class="sd"> * Default language to use, if not browser-defined or user-defined</span> <span class="sd"> * (you find all languages in the locale folder)</span> <span class="sd"> * uncomment the desired line:</span> <span class="sd"> * default = 'en'</span> <span class="sd"> */</span> <span class="c1">//$cfg['DefaultLang'] = 'en';</span> <span class="c1">//$cfg['DefaultLang'] = 'de';</span> <span class="sd">/**</span> <span class="sd"> * How many columns should be used for table display of a database?</span> <span class="sd"> * (a value larger than 1 results in some information being hidden)</span> <span class="sd"> * default = 1</span> <span class="sd"> */</span> <span class="c1">//$cfg['PropertiesNumColumns'] = 2;</span> <span class="sd">/**</span> <span class="sd"> * Set to true if you want DB-based query history.If false, this utilizes</span> <span class="sd"> * JS-routines to display query history (lost by window close)</span> <span class="sd"> *</span> <span class="sd"> * This requires configuration storage enabled, see above.</span> <span class="sd"> * default = false</span> <span class="sd"> */</span> <span class="c1">//$cfg['QueryHistoryDB'] = true;</span> <span class="sd">/**</span> <span class="sd"> * When using DB-based query history, how many entries should be kept?</span> <span class="sd"> * default = 25</span> <span class="sd"> */</span> <span class="c1">//$cfg['QueryHistoryMax'] = 100;</span> <span class="sd">/**</span> <span class="sd"> * Whether or not to query the user before sending the error report to</span> <span class="sd"> * the phpMyAdmin team when a JavaScript error occurs</span> <span class="sd"> *</span> <span class="sd"> * Available options</span> <span class="sd"> * ('ask' | 'always' | 'never')</span> <span class="sd"> * default = 'ask'</span> <span class="sd"> */</span> <span class="c1">//$cfg['SendErrorReports'] = 'always';</span> <span class="sd">/**</span> <span class="sd"> * 'URLQueryEncryption' defines whether phpMyAdmin will encrypt sensitive data from the URL query string.</span> <span class="sd"> * 'URLQueryEncryptionSecretKey' is a 32 bytes long secret key used to encrypt/decrypt the URL query string.</span> <span class="sd"> */</span> <span class="c1">//$cfg['URLQueryEncryption'] = true;</span> <span class="c1">//$cfg['URLQueryEncryptionSecretKey'] = '';</span> <span class="sd">/**</span> <span class="sd"> * You can find more configuration options in the documentation</span> <span class="sd"> * in the doc/ folder or at <https://docs.phpmyadmin.net/>.</span> <span class="sd"> */</span> </pre></div> </div> <div class="admonition warning"> <p class="admonition-title">Warning</p> <p>Don’t use the controluser ‘pma’ if it does not yet exist and don’t use ‘pmapass’ as password.</p> </div> </div> <div class="section" id="example-for-signon-authentication"> <span id="example-signon"></span><h3>Example for signon authentication<a class="headerlink" href="#example-for-signon-authentication" title="Permalink to this headline">¶</a></h3> <p>This example uses <code class="file docutils literal notranslate"><span class="pre">examples/signon.php</span></code> to demonstrate usage of <a class="reference internal" href="setup.html#auth-signon"><span class="std std-ref">Signon authentication mode</span></a>:</p> <div class="highlight-php notranslate"><div class="highlight"><pre><span></span><span class="o"><?</span><span class="nx">php</span> <span class="nv">$i</span> <span class="o">=</span> <span class="mi">0</span><span class="p">;</span> <span class="nv">$i</span><span class="o">++</span><span class="p">;</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'auth_type'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'signon'</span><span class="p">;</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'SignonSession'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'SignonSession'</span><span class="p">;</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'SignonURL'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'examples/signon.php'</span><span class="p">;</span> </pre></div> </div> </div> <div class="section" id="example-for-ip-address-limited-autologin"> <h3>Example for IP address limited autologin<a class="headerlink" href="#example-for-ip-address-limited-autologin" title="Permalink to this headline">¶</a></h3> <p>If you want to automatically login when accessing phpMyAdmin locally while asking for a password when accessing remotely, you can achieve it using following snippet:</p> <div class="highlight-php notranslate"><div class="highlight"><pre><span></span><span class="k">if</span> <span class="p">(</span><span class="nv">$_SERVER</span><span class="p">[</span><span class="s1">'REMOTE_ADDR'</span><span class="p">]</span> <span class="o">===</span> <span class="s1">'127.0.0.1'</span><span class="p">)</span> <span class="p">{</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'auth_type'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'config'</span><span class="p">;</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'user'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'root'</span><span class="p">;</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'password'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'yourpassword'</span><span class="p">;</span> <span class="p">}</span> <span class="k">else</span> <span class="p">{</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'auth_type'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'cookie'</span><span class="p">;</span> <span class="p">}</span> </pre></div> </div> <div class="admonition note"> <p class="admonition-title">Note</p> <p>Filtering based on IP addresses isn’t reliable over the internet, use it only for local address.</p> </div> </div> <div class="section" id="example-for-using-multiple-mysql-servers"> <h3>Example for using multiple MySQL servers<a class="headerlink" href="#example-for-using-multiple-mysql-servers" title="Permalink to this headline">¶</a></h3> <p>You can configure any number of servers using <span class="target" id="index-160"></span><a class="reference internal" href="#cfg_Servers"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers']</span></code></a>, following example shows two of them:</p> <div class="highlight-php notranslate"><div class="highlight"><pre><span></span><span class="o"><?</span><span class="nx">php</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'blowfish_secret'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'multiServerExample70518'</span><span class="p">;</span> <span class="c1">// any string of your choice</span> <span class="nv">$i</span> <span class="o">=</span> <span class="mi">0</span><span class="p">;</span> <span class="nv">$i</span><span class="o">++</span><span class="p">;</span> <span class="c1">// server 1 :</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'auth_type'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'cookie'</span><span class="p">;</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'verbose'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'no1'</span><span class="p">;</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'host'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'localhost'</span><span class="p">;</span> <span class="c1">// more options for #1 ...</span> <span class="nv">$i</span><span class="o">++</span><span class="p">;</span> <span class="c1">// server 2 :</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'auth_type'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'cookie'</span><span class="p">;</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'verbose'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'no2'</span><span class="p">;</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'host'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'remote.host.addr'</span><span class="p">;</span><span class="c1">//or ip:'10.9.8.1'</span> <span class="c1">// this server must allow remote clients, e.g., host 10.9.8.%</span> <span class="c1">// not only in mysql.host but also in the startup configuration</span> <span class="c1">// more options for #2 ...</span> <span class="c1">// end of server sections</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'ServerDefault'</span><span class="p">]</span> <span class="o">=</span> <span class="mi">0</span><span class="p">;</span> <span class="c1">// to choose the server on startup</span> <span class="c1">// further general options ...</span> </pre></div> </div> </div> <div class="section" id="google-cloud-sql-with-ssl"> <span id="example-google-ssl"></span><h3>Google Cloud SQL with SSL<a class="headerlink" href="#google-cloud-sql-with-ssl" title="Permalink to this headline">¶</a></h3> <p>To connect to Google Could SQL, you currently need to disable certificate verification. This is caused by the certificate being issued for CN matching your instance name, but you connect to an IP address and PHP tries to match these two. With verification you end up with error message like:</p> <div class="highlight-text notranslate"><div class="highlight"><pre><span></span>Peer certificate CN=`api-project-851612429544:pmatest' did not match expected CN=`8.8.8.8' </pre></div> </div> <div class="admonition warning"> <p class="admonition-title">Warning</p> <p>With disabled verification your traffic is encrypted, but you’re open to man in the middle attacks.</p> </div> <p>To connect phpMyAdmin to Google Cloud SQL using SSL download the client and server certificates and tell phpMyAdmin to use them:</p> <div class="highlight-php notranslate"><div class="highlight"><pre><span></span><span class="c1">// IP address of your instance</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'host'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'8.8.8.8'</span><span class="p">;</span> <span class="c1">// Use SSL for connection</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'ssl'</span><span class="p">]</span> <span class="o">=</span> <span class="k">true</span><span class="p">;</span> <span class="c1">// Client secret key</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'ssl_key'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'../client-key.pem'</span><span class="p">;</span> <span class="c1">// Client certificate</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'ssl_cert'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'../client-cert.pem'</span><span class="p">;</span> <span class="c1">// Server certification authority</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'ssl_ca'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'../server-ca.pem'</span><span class="p">;</span> <span class="c1">// Disable SSL verification (see above note)</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'ssl_verify'</span><span class="p">]</span> <span class="o">=</span> <span class="k">false</span><span class="p">;</span> </pre></div> </div> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="setup.html#ssl"><span class="std std-ref">Using SSL for connection to database server</span></a>, <span class="target" id="index-161"></span><a class="reference internal" href="#cfg_Servers_ssl"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl']</span></code></a>, <span class="target" id="index-162"></span><a class="reference internal" href="#cfg_Servers_ssl_key"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_key']</span></code></a>, <span class="target" id="index-163"></span><a class="reference internal" href="#cfg_Servers_ssl_cert"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_cert']</span></code></a>, <span class="target" id="index-164"></span><a class="reference internal" href="#cfg_Servers_ssl_ca"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ca']</span></code></a>, <span class="target" id="index-165"></span><a class="reference internal" href="#cfg_Servers_ssl_verify"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_verify']</span></code></a>, <<a class="reference external" href="https://bugs.php.net/bug.php?id=72048">https://bugs.php.net/bug.php?id=72048</a>></p> </div> </div> <div class="section" id="amazon-rds-aurora-with-ssl"> <span id="example-aws-ssl"></span><h3>Amazon RDS Aurora with SSL<a class="headerlink" href="#amazon-rds-aurora-with-ssl" title="Permalink to this headline">¶</a></h3> <p>To connect phpMyAdmin to an Amazon RDS Aurora MySQL database instance using SSL, download the CA server certificate and tell phpMyAdmin to use it:</p> <div class="highlight-php notranslate"><div class="highlight"><pre><span></span><span class="c1">// Address of your instance</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'host'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'replace-me-custer-name.cluster-replace-me-id.replace-me-region.rds.amazonaws.com'</span><span class="p">;</span> <span class="c1">// Use SSL for connection</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'ssl'</span><span class="p">]</span> <span class="o">=</span> <span class="k">true</span><span class="p">;</span> <span class="c1">// You need to have the region CA file and the authority CA file (2019 edition CA for example) in the PEM bundle for it to work</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'ssl_ca'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'../rds-combined-ca-bundle.pem'</span><span class="p">;</span> <span class="c1">// Enable SSL verification</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'Servers'</span><span class="p">][</span><span class="nv">$i</span><span class="p">][</span><span class="s1">'ssl_verify'</span><span class="p">]</span> <span class="o">=</span> <span class="k">true</span><span class="p">;</span> </pre></div> </div> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="setup.html#ssl"><span class="std std-ref">Using SSL for connection to database server</span></a>, <span class="target" id="index-166"></span><a class="reference internal" href="#cfg_Servers_ssl"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl']</span></code></a>, <span class="target" id="index-167"></span><a class="reference internal" href="#cfg_Servers_ssl_ca"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_ca']</span></code></a>, <span class="target" id="index-168"></span><a class="reference internal" href="#cfg_Servers_ssl_verify"><code class="xref config config-option docutils literal notranslate"><span class="pre">$cfg['Servers'][$i]['ssl_verify']</span></code></a></p> </div> <div class="admonition seealso"> <p class="admonition-title">See also</p> <ul class="simple"> <li><p>Current RDS CA bundle for all regions <a class="reference external" href="https://s3.amazonaws.com/rds-downloads/rds-combined-ca-bundle.pem">https://s3.amazonaws.com/rds-downloads/rds-combined-ca-bundle.pem</a></p></li> <li><p>The RDS CA (2019 edition) for the region <cite>eu-west-3</cite> without the parent CA <a class="reference external" href="https://s3.amazonaws.com/rds-downloads/rds-ca-2019-eu-west-3.pem">https://s3.amazonaws.com/rds-downloads/rds-ca-2019-eu-west-3.pem</a></p></li> <li><p><a class="reference external" href="https://s3.amazonaws.com/rds-downloads/">List of available Amazon RDS CA files</a></p></li> <li><p><a class="reference external" href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Security.html">Amazon MySQL Aurora security guide</a></p></li> <li><p><a class="reference external" href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html">Amazon certificates bundles per region</a></p></li> </ul> </div> </div> <div class="section" id="recaptcha-using-hcaptcha"> <h3>reCaptcha using hCaptcha<a class="headerlink" href="#recaptcha-using-hcaptcha" title="Permalink to this headline">¶</a></h3> <div class="highlight-php notranslate"><div class="highlight"><pre><span></span><span class="nv">$cfg</span><span class="p">[</span><span class="s1">'CaptchaApi'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'https://www.hcaptcha.com/1/api.js'</span><span class="p">;</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'CaptchaCsp'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'https://hcaptcha.com https://*.hcaptcha.com'</span><span class="p">;</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'CaptchaRequestParam'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'h-captcha'</span><span class="p">;</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'CaptchaResponseParam'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'h-captcha-response'</span><span class="p">;</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'CaptchaSiteVerifyURL'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'https://hcaptcha.com/siteverify'</span><span class="p">;</span> <span class="c1">// This is the secret key from hCaptcha dashboard</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'CaptchaLoginPrivateKey'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'0xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'</span><span class="p">;</span> <span class="c1">// This is the site key from hCaptcha dashboard</span> <span class="nv">$cfg</span><span class="p">[</span><span class="s1">'CaptchaLoginPublicKey'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'xxx-xxx-xxx-xxx-xxxx'</span><span class="p">;</span> </pre></div> </div> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference external" href="https://www.hcaptcha.com/">hCaptcha website</a></p> </div> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference external" href="https://docs.hcaptcha.com/">hCaptcha Developer Guide</a></p> </div> </div> </div> </div> <div class="clearer"></div> </div> </div> </div> <div class="sphinxsidebar" role="navigation" aria-label="main navigation"> <div class="sphinxsidebarwrapper"> <h3><a href="index.html">Table of Contents</a></h3> <ul> <li><a class="reference internal" href="#">Configuration</a><ul> <li><a class="reference internal" href="#basic-settings">Basic settings</a></li> <li><a class="reference internal" href="#server-connection-settings">Server connection settings</a></li> <li><a class="reference internal" href="#generic-settings">Generic settings</a></li> <li><a class="reference internal" href="#cookie-authentication-options">Cookie authentication options</a></li> <li><a class="reference internal" href="#navigation-panel-setup">Navigation panel setup</a></li> <li><a class="reference internal" href="#main-panel">Main panel</a></li> <li><a class="reference internal" href="#database-structure">Database structure</a></li> <li><a class="reference internal" href="#browse-mode">Browse mode</a></li> <li><a class="reference internal" href="#editing-mode">Editing mode</a></li> <li><a class="reference internal" href="#export-and-import-settings">Export and import settings</a></li> <li><a class="reference internal" href="#tabs-display-settings">Tabs display settings</a></li> <li><a class="reference internal" href="#pdf-options">PDF Options</a></li> <li><a class="reference internal" href="#languages">Languages</a></li> <li><a class="reference internal" href="#web-server-settings">Web server settings</a></li> <li><a class="reference internal" href="#theme-settings">Theme settings</a></li> <li><a class="reference internal" href="#design-customization">Design customization</a></li> <li><a class="reference internal" href="#text-fields">Text fields</a></li> <li><a class="reference internal" href="#sql-query-box-settings">SQL query box settings</a></li> <li><a class="reference internal" href="#web-server-upload-save-import-directories">Web server upload/save/import directories</a></li> <li><a class="reference internal" href="#various-display-setting">Various display setting</a></li> <li><a class="reference internal" href="#page-titles">Page titles</a></li> <li><a class="reference internal" href="#theme-manager-settings">Theme manager settings</a></li> <li><a class="reference internal" href="#default-queries">Default queries</a></li> <li><a class="reference internal" href="#mysql-settings">MySQL settings</a></li> <li><a class="reference internal" href="#default-options-for-transformations">Default options for Transformations</a></li> <li><a class="reference internal" href="#console-settings">Console settings</a></li> <li><a class="reference internal" href="#developer">Developer</a></li> <li><a class="reference internal" href="#examples">Examples</a><ul> <li><a class="reference internal" href="#basic-example">Basic example</a></li> <li><a class="reference internal" href="#example-for-signon-authentication">Example for signon authentication</a></li> <li><a class="reference internal" href="#example-for-ip-address-limited-autologin">Example for IP address limited autologin</a></li> <li><a class="reference internal" href="#example-for-using-multiple-mysql-servers">Example for using multiple MySQL servers</a></li> <li><a class="reference internal" href="#google-cloud-sql-with-ssl">Google Cloud SQL with SSL</a></li> <li><a class="reference internal" href="#amazon-rds-aurora-with-ssl">Amazon RDS Aurora with SSL</a></li> <li><a class="reference internal" href="#recaptcha-using-hcaptcha">reCaptcha using hCaptcha</a></li> </ul> </li> </ul> </li> </ul> <h4>Previous topic</h4> <p class="topless"><a href="setup.html" title="previous chapter">Installation</a></p> <h4>Next topic</h4> <p class="topless"><a href="user.html" title="next chapter">User Guide</a></p> <div role="note" aria-label="source link"> <h3>This Page</h3> <ul class="this-page-menu"> <li><a href="_sources/config.rst.txt" rel="nofollow">Show Source</a></li> </ul> </div> <div id="searchbox" style="display: none" role="search"> <h3 id="searchlabel">Quick search</h3> <div class="searchformwrapper"> <form class="search" action="search.html" method="get"> <input type="text" name="q" aria-labelledby="searchlabel" /> <input type="submit" value="Go" /> </form> </div> </div> <script>$('#searchbox').show(0);</script> </div> </div> <div class="clearer"></div> </div> <div class="related" role="navigation" aria-label="related navigation"> <h3>Navigation</h3> <ul> <li class="right" style="margin-right: 10px"> <a href="genindex.html" title="General Index" >index</a></li> <li class="right" > <a href="user.html" title="User Guide" >next</a> |</li> <li class="right" > <a href="setup.html" title="Installation" >previous</a> |</li> <li class="nav-item nav-item-0"><a href="index.html">phpMyAdmin 5.2.0 documentation</a> »</li> <li class="nav-item nav-item-this"><a href="">Configuration</a></li> </ul> </div> <div class="footer" role="contentinfo"> © <a href="copyright.html">Copyright</a> 2012 - 2021, The phpMyAdmin devel team. Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 3.4.3. </div> </body> </html>Evidence 192.168.10.1Solution Remove the private IP address from the HTTP response body. For comments, use JSP/ASP/PHP comment instead of HTML/JavaScript comment which can be seen by client browsers.
-
Server Leaks Information via "X-Powered-By" HTTP Response Header Field(s) (1)
GET http://localhost/scan/wordpress/
Alert tags Alert description The web/application server is leaking information via one or more "X-Powered-By" HTTP response headers. Access to such information may facilitate attackers identifying other frameworks/components your web application is reliant upon and the vulnerabilities such components may be subject to.
Request Request line and header section (354 bytes)
GET http://localhost/scan/wordpress/ HTTP/1.1 host: localhost User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:136.0) Gecko/20100101 Firefox/136.0 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: en-CA,en-US;q=0.7,en;q=0.3 Connection: keep-alive Upgrade-Insecure-Requests: 1 Priority: u=0, iRequest body (0 bytes)
Response Status line and header section (362 bytes)
HTTP/1.1 200 OK Date: Sat, 19 Apr 2025 15:16:04 GMT Server: Apache/2.4.54 (Unix) OpenSSL/1.1.1s PHP/7.4.33 mod_perl/2.0.12 Perl/v5.34.1 X-Powered-By: PHP/7.4.33 Link: <http://localhost/scan/wordpress/wp-json/>; rel="https://api.w.org/" Keep-Alive: timeout=5, max=100 Connection: Keep-Alive Content-Type: text/html; charset=UTF-8 content-length: 16710Response body (16710 bytes)
<!doctype html> <html lang="en-US" > <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>yup-here – Just another WordPress site</title> <meta name='robots' content='max-image-preview:large' /> <link rel='dns-prefetch' href='//s.w.org' /> <link rel="alternate" type="application/rss+xml" title="yup-here » Feed" href="http://localhost/scan/wordpress/feed/" /> <link rel="alternate" type="application/rss+xml" title="yup-here » Comments Feed" href="http://localhost/scan/wordpress/comments/feed/" /> <script> window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.1.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.1.0\/svg\/","svgExt":".svg","source":{"concatemoji":"http:\/\/localhost\/scan\/wordpress\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.8"}}; !function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){var a=String.fromCharCode;p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,e),0,0);e=i.toDataURL();return p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,t),0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(!p||!p.fillText)return!1;switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])?!1:!s([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!s([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]);case"emoji":return!s([10084,65039,8205,55357,56613],[10084,65039,8203,55357,56613])}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(n=t.source||{}).concatemoji?c(n.concatemoji):n.wpemoji&&n.twemoji&&(c(n.twemoji),c(n.wpemoji)))}(window,document,window._wpemojiSettings); </script> <style> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 .07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='wc-blocks-integration-css' href='http://localhost/scan/wordpress/wp-content/plugins/woocommerce-payments/vendor/woocommerce/subscriptions-core/build/index.css?ver=3.1.6' media='all' /> <link rel='stylesheet' id='wp-block-library-css' href='http://localhost/scan/wordpress/wp-includes/css/dist/block-library/style.min.css?ver=5.8' media='all' /> <style id='wp-block-library-theme-inline-css'> #start-resizable-editor-section{display:none}.wp-block-audio figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-audio figcaption{color:hsla(0,0%,100%,.65)}.wp-block-code{font-family:Menlo,Consolas,monaco,monospace;color:#1e1e1e;padding:.8em 1em;border:1px solid #ddd;border-radius:4px}.wp-block-embed figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-embed figcaption{color:hsla(0,0%,100%,.65)}.blocks-gallery-caption{color:#555;font-size:13px;text-align:center}.is-dark-theme .blocks-gallery-caption{color:hsla(0,0%,100%,.65)}.wp-block-image figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-image figcaption{color:hsla(0,0%,100%,.65)}.wp-block-pullquote{border-top:4px solid;border-bottom:4px solid;margin-bottom:1.75em;color:currentColor}.wp-block-pullquote__citation,.wp-block-pullquote cite,.wp-block-pullquote footer{color:currentColor;text-transform:uppercase;font-size:.8125em;font-style:normal}.wp-block-quote{border-left:.25em solid;margin:0 0 1.75em;padding-left:1em}.wp-block-quote cite,.wp-block-quote footer{color:currentColor;font-size:.8125em;position:relative;font-style:normal}.wp-block-quote.has-text-align-right{border-left:none;border-right:.25em solid;padding-left:0;padding-right:1em}.wp-block-quote.has-text-align-center{border:none;padding-left:0}.wp-block-quote.is-large,.wp-block-quote.is-style-large{border:none}.wp-block-search .wp-block-search__label{font-weight:700}.wp-block-group.has-background{padding:1.25em 2.375em;margin-top:0;margin-bottom:0}.wp-block-separator{border:none;border-bottom:2px solid;margin-left:auto;margin-right:auto;opacity:.4}.wp-block-separator:not(.is-style-wide):not(.is-style-dots){width:100px}.wp-block-separator.has-background:not(.is-style-dots){border-bottom:none;height:1px}.wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots){height:2px}.wp-block-table thead{border-bottom:3px solid}.wp-block-table tfoot{border-top:3px solid}.wp-block-table td,.wp-block-table th{padding:.5em;border:1px solid;word-break:normal}.wp-block-table figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-table figcaption{color:hsla(0,0%,100%,.65)}.wp-block-video figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-video figcaption{color:hsla(0,0%,100%,.65)}.wp-block-template-part.has-background{padding:1.25em 2.375em;margin-top:0;margin-bottom:0}#end-resizable-editor-section{display:none} </style> <link rel='stylesheet' id='wc-blocks-vendors-style-css' href='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-vendors-style.css?ver=8.5.1' media='all' /> <link rel='stylesheet' id='wc-blocks-style-css' href='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-style.css?ver=8.5.1' media='all' /> <link rel='stylesheet' id='woocommerce-layout-css' href='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/css/woocommerce-layout.css?ver=7.0.0' media='all' /> <link rel='stylesheet' id='woocommerce-smallscreen-css' href='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/css/woocommerce-smallscreen.css?ver=7.0.0' media='only screen and (max-width: 768px)' /> <link rel='stylesheet' id='woocommerce-general-css' href='//localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/css/twenty-twenty-one.css?ver=7.0.0' media='all' /> <style id='woocommerce-inline-inline-css'> .woocommerce form .form-row .required { visibility: visible; } </style> <link rel='stylesheet' id='twenty-twenty-one-style-css' href='http://localhost/scan/wordpress/wp-content/themes/twentytwentyone/style.css?ver=1.4' media='all' /> <link rel='stylesheet' id='twenty-twenty-one-print-style-css' href='http://localhost/scan/wordpress/wp-content/themes/twentytwentyone/assets/css/print.css?ver=1.4' media='print' /> <link rel='stylesheet' id='ecs-styles-css' href='http://localhost/scan/wordpress/wp-content/plugins/ele-custom-skin/assets/css/ecs-style.css?ver=3.1.3' media='all' /> <script src='http://localhost/scan/wordpress/wp-includes/js/jquery/jquery.min.js?ver=3.6.0' id='jquery-core-js'></script> <script src='http://localhost/scan/wordpress/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.3.2' id='jquery-migrate-js'></script> <script id='ecs_ajax_load-js-extra'> var ecs_ajax_params = {"ajaxurl":"http:\/\/localhost\/scan\/wordpress\/wp-admin\/admin-ajax.php","posts":"{\"error\":\"\",\"m\":\"\",\"p\":0,\"post_parent\":\"\",\"subpost\":\"\",\"subpost_id\":\"\",\"attachment\":\"\",\"attachment_id\":0,\"name\":\"\",\"pagename\":\"\",\"page_id\":0,\"second\":\"\",\"minute\":\"\",\"hour\":\"\",\"day\":0,\"monthnum\":0,\"year\":0,\"w\":0,\"category_name\":\"\",\"tag\":\"\",\"cat\":\"\",\"tag_id\":\"\",\"author\":\"\",\"author_name\":\"\",\"feed\":\"\",\"tb\":\"\",\"paged\":0,\"meta_key\":\"\",\"meta_value\":\"\",\"preview\":\"\",\"s\":\"\",\"sentence\":\"\",\"title\":\"\",\"fields\":\"\",\"menu_order\":\"\",\"embed\":\"\",\"category__in\":[],\"category__not_in\":[],\"category__and\":[],\"post__in\":[],\"post__not_in\":[],\"post_name__in\":[],\"tag__in\":[],\"tag__not_in\":[],\"tag__and\":[],\"tag_slug__in\":[],\"tag_slug__and\":[],\"post_parent__in\":[],\"post_parent__not_in\":[],\"author__in\":[],\"author__not_in\":[],\"ignore_sticky_posts\":false,\"suppress_filters\":false,\"cache_results\":true,\"update_post_term_cache\":true,\"lazy_load_term_meta\":true,\"update_post_meta_cache\":true,\"post_type\":\"\",\"posts_per_page\":10,\"nopaging\":false,\"comments_per_page\":\"50\",\"no_found_rows\":false,\"order\":\"DESC\"}"}; </script> <script src='http://localhost/scan/wordpress/wp-content/plugins/ele-custom-skin/assets/js/ecs_ajax_pagination.js?ver=3.1.3' id='ecs_ajax_load-js'></script> <script src='http://localhost/scan/wordpress/wp-content/plugins/ele-custom-skin/assets/js/ecs.js?ver=3.1.3' id='ecs-script-js'></script> <link rel="https://api.w.org/" href="http://localhost/scan/wordpress/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://localhost/scan/wordpress/xmlrpc.php?rsd" /> <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://localhost/scan/wordpress/wp-includes/wlwmanifest.xml" /> <meta name="generator" content="WordPress 5.8" /> <meta name="generator" content="WooCommerce 7.0.0" /> <noscript><style>.woocommerce-product-gallery{ opacity: 1 !important; }</style></noscript> </head> <body class="home blog wp-embed-responsive theme-twentytwentyone woocommerce-no-js is-light-theme no-js hfeed elementor-default elementor-kit-10"> <div id="page" class="site"> <a class="skip-link screen-reader-text" href="#content">Skip to content</a> <header id="masthead" class="site-header has-title-and-tagline" role="banner"> <div class="site-branding"> <h1 class="site-title">yup-here</h1> <p class="site-description"> Just another WordPress site </p> </div><!-- .site-branding --> </header><!-- #masthead --> <div id="content" class="site-content"> <div id="primary" class="content-area"> <main id="main" class="site-main" role="main"> <article id="post-1" class="post-1 post type-post status-publish format-standard hentry category-uncategorized entry"> <header class="entry-header"> <h2 class="entry-title default-max-width"><a href="http://localhost/scan/wordpress/2025/02/28/hello-world/">Hello world!</a></h2></header><!-- .entry-header --> <div class="entry-content"> <p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p> </div><!-- .entry-content --> <footer class="entry-footer default-max-width"> <span class="posted-on">Published <time class="entry-date published updated" datetime="2025-02-28T01:47:30+00:00">February 28, 2025</time></span><div class="post-taxonomies"><span class="cat-links">Categorized as <a href="http://localhost/scan/wordpress/category/uncategorized/" rel="category tag">Uncategorized</a> </span></div> </footer><!-- .entry-footer --> </article><!-- #post-${ID} --> </main><!-- #main --> </div><!-- #primary --> </div><!-- #content --> <aside class="widget-area"> <section id="block-2" class="widget widget_block widget_search"><form role="search" method="get" action="http://localhost/scan/wordpress/" class="wp-block-search__button-outside wp-block-search__text-button wp-block-search"><label for="wp-block-search__input-1" class="wp-block-search__label">Search</label><div class="wp-block-search__inside-wrapper"><input type="search" id="wp-block-search__input-1" class="wp-block-search__input" name="s" value="" placeholder="" required /><button type="submit" class="wp-block-search__button ">Search</button></div></form></section><section id="block-3" class="widget widget_block"><div class="wp-block-group"><div class="wp-block-group__inner-container"><h2>Recent Posts</h2><ul class="wp-block-latest-posts__list wp-block-latest-posts"><li><a href="http://localhost/scan/wordpress/2025/02/28/hello-world/">Hello world!</a></li> </ul></div></div></section><section id="block-4" class="widget widget_block"><div class="wp-block-group"><div class="wp-block-group__inner-container"><h2>Recent Comments</h2><ol class="wp-block-latest-comments"><li class="wp-block-latest-comments__comment"><article><footer class="wp-block-latest-comments__comment-meta"><a class="wp-block-latest-comments__comment-author" href="https://wordpress.org/">A WordPress Commenter</a> on <a class="wp-block-latest-comments__comment-link" href="http://localhost/scan/wordpress/2025/02/28/hello-world/#comment-1">Hello world!</a></footer></article></li></ol></div></div></section> </aside><!-- .widget-area --> <footer id="colophon" class="site-footer" role="contentinfo"> <div class="site-info"> <div class="site-name"> yup-here </div><!-- .site-name --> <div class="powered-by"> Proudly powered by <a href="https://wordpress.org/">WordPress</a>. </div><!-- .powered-by --> </div><!-- .site-info --> </footer><!-- #colophon --> </div><!-- #page --> <script>document.body.classList.remove("no-js");</script> <script> if ( -1 !== navigator.userAgent.indexOf( 'MSIE' ) || -1 !== navigator.appVersion.indexOf( 'Trident/' ) ) { document.body.classList.add( 'is-IE' ); } </script> <script type="text/javascript"> (function () { var c = document.body.className; c = c.replace(/woocommerce-no-js/, 'woocommerce-js'); document.body.className = c; })(); </script> <script src='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js?ver=2.7.0-wc.7.0.0' id='jquery-blockui-js'></script> <script id='wc-add-to-cart-js-extra'> var wc_add_to_cart_params = {"ajax_url":"\/scan\/wordpress\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/scan\/wordpress\/?wc-ajax=%%endpoint%%","i18n_view_cart":"View cart","cart_url":"http:\/\/localhost\/scan\/wordpress\/cart\/","is_cart":"","cart_redirect_after_add":"no"}; </script> <script src='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.min.js?ver=7.0.0' id='wc-add-to-cart-js'></script> <script src='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.min.js?ver=2.1.4-wc.7.0.0' id='js-cookie-js'></script> <script id='woocommerce-js-extra'> var woocommerce_params = {"ajax_url":"\/scan\/wordpress\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/scan\/wordpress\/?wc-ajax=%%endpoint%%"}; </script> <script src='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.min.js?ver=7.0.0' id='woocommerce-js'></script> <script id='wc-cart-fragments-js-extra'> var wc_cart_fragments_params = {"ajax_url":"\/scan\/wordpress\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/scan\/wordpress\/?wc-ajax=%%endpoint%%","cart_hash_key":"wc_cart_hash_67da1dc18a3e11e4f2865063b3ad5420","fragment_name":"wc_fragments_67da1dc18a3e11e4f2865063b3ad5420","request_timeout":"5000"}; </script> <script src='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/js/frontend/cart-fragments.min.js?ver=7.0.0' id='wc-cart-fragments-js'></script> <script id='twenty-twenty-one-ie11-polyfills-js-after'> ( Element.prototype.matches && Element.prototype.closest && window.NodeList && NodeList.prototype.forEach ) || document.write( '<script src="http://localhost/scan/wordpress/wp-content/themes/twentytwentyone/assets/js/polyfills.js?ver=1.4"></scr' + 'ipt>' ); </script> <script src='http://localhost/scan/wordpress/wp-content/themes/twentytwentyone/assets/js/responsive-embeds.js?ver=1.4' id='twenty-twenty-one-responsive-embeds-script-js'></script> <script src='http://localhost/scan/wordpress/wp-includes/js/wp-embed.min.js?ver=5.8' id='wp-embed-js'></script> <script> /(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",(function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())}),!1); </script> </body> </html>Evidence X-Powered-By: PHP/7.4.33Solution Ensure that your web server, application server, load balancer, etc. is configured to suppress "X-Powered-By" headers.
-
X-Content-Type-Options Header Missing (1)
GET http://localhost/scan/wordpress/wp-content/themes/twentytwentyone/assets/js/responsive-embeds.js?ver=1.4
Alert tags Alert description The Anti-MIME-Sniffing header X-Content-Type-Options was not set to 'nosniff'. This allows older versions of Internet Explorer and Chrome to perform MIME-sniffing on the response body, potentially causing the response body to be interpreted and displayed as a content type other than the declared content type. Current (early 2014) and legacy versions of Firefox will use the declared content type (if one is set), rather than performing MIME-sniffing.
Other info This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type.
At "High" threshold this scan rule will not alert on client or server error responses.
Request Request line and header section (361 bytes)
GET http://localhost/scan/wordpress/wp-content/themes/twentytwentyone/assets/js/responsive-embeds.js?ver=1.4 HTTP/1.1 host: localhost User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:136.0) Gecko/20100101 Firefox/136.0 Accept: */* Accept-Language: en-CA,en-US;q=0.7,en;q=0.3 Connection: keep-alive Referer: http://localhost/scan/wordpress/Request body (0 bytes)
Response Status line and header section (353 bytes)
HTTP/1.1 200 OK Date: Sat, 19 Apr 2025 15:16:05 GMT Server: Apache/2.4.54 (Unix) OpenSSL/1.1.1s PHP/7.4.33 mod_perl/2.0.12 Perl/v5.34.1 Last-Modified: Tue, 20 Jul 2021 16:52:26 GMT ETag: "467-5c790e0e6e680" Accept-Ranges: bytes Content-Length: 1127 Keep-Alive: timeout=5, max=99 Connection: Keep-Alive Content-Type: application/x-javascriptResponse body (1127 bytes)
/** * File responsive-embeds.js. * * Make embeds responsive so they don't overflow their container. */ /** * Add max-width & max-height to <iframe> elements, depending on their width & height props. * * @since Twenty Twenty-One 1.0 * * @return {void} */ function twentytwentyoneResponsiveEmbeds() { var proportion, parentWidth; // Loop iframe elements. document.querySelectorAll( 'iframe' ).forEach( function( iframe ) { // Only continue if the iframe has a width & height defined. if ( iframe.width && iframe.height ) { // Calculate the proportion/ratio based on the width & height. proportion = parseFloat( iframe.width ) / parseFloat( iframe.height ); // Get the parent element's width. parentWidth = parseFloat( window.getComputedStyle( iframe.parentElement, null ).width.replace( 'px', '' ) ); // Set the max-width & height. iframe.style.maxWidth = '100%'; iframe.style.maxHeight = Math.round( parentWidth / proportion ).toString() + 'px'; } } ); } // Run on initial load. twentytwentyoneResponsiveEmbeds(); // Run on resize. window.onresize = twentytwentyoneResponsiveEmbeds;Parameter x-content-type-optionsSolution Ensure that the application/web server sets the Content-Type header appropriately, and that it sets the X-Content-Type-Options header to 'nosniff' for all web pages.
If possible, ensure that the end user uses a standards-compliant and modern web browser that does not perform MIME-sniffing at all, or that can be directed by the web application/web server to not perform MIME-sniffing.
-
-
-
Risk=Low, Confidence=Low (1)
-
http://localhost (1)
-
Timestamp Disclosure - Unix (1)
GET http://localhost/dashboard/phpinfo.php
Alert tags Alert description A timestamp was disclosed by the application/web server. - Unix
Other info 1745075864, which evaluates to: 2025-04-19 11:17:44.
Request Request line and header section (278 bytes)
GET http://localhost/dashboard/phpinfo.php HTTP/1.1 host: localhost user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 pragma: no-cache cache-control: no-cache referer: http://localhost/dashboard/Request body (0 bytes)
Response Status line and header section (230 bytes)
HTTP/1.1 200 OK Date: Sat, 19 Apr 2025 15:17:44 GMT Server: Apache/2.4.54 (Unix) OpenSSL/1.1.1s PHP/7.4.33 mod_perl/2.0.12 Perl/v5.34.1 X-Powered-By: PHP/7.4.33 Content-Type: text/html; charset=UTF-8 content-length: 85637Response body (85637 bytes)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"><head> <style type="text/css"> body {background-color: #fff; color: #222; font-family: sans-serif;} pre {margin: 0; font-family: monospace;} a:link {color: #009; text-decoration: none; background-color: #fff;} a:hover {text-decoration: underline;} table {border-collapse: collapse; border: 0; width: 934px; box-shadow: 1px 2px 3px #ccc;} .center {text-align: center;} .center table {margin: 1em auto; text-align: left;} .center th {text-align: center !important;} td, th {border: 1px solid #666; font-size: 75%; vertical-align: baseline; padding: 4px 5px;} th {position: sticky; top: 0; background: inherit;} h1 {font-size: 150%;} h2 {font-size: 125%;} .p {text-align: left;} .e {background-color: #ccf; width: 300px; font-weight: bold;} .h {background-color: #99c; font-weight: bold;} .v {background-color: #ddd; max-width: 300px; overflow-x: auto; word-wrap: break-word;} .v i {color: #999;} img {float: right; border: 0;} hr {width: 934px; background-color: #ccc; border: 0; height: 1px;} </style> <title>PHP 7.4.33 - phpinfo()</title><meta name="ROBOTS" content="NOINDEX,NOFOLLOW,NOARCHIVE" /></head> <body><div class="center"> <table> <tr class="h"><td> <a href="http://www.php.net/"><img border="0" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHkAAABACAYAAAA+j9gsAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAD4BJREFUeNrsnXtwXFUdx8/dBGihmE21QCrQDY6oZZykon/gY5qizjgM2KQMfzFAOioOA5KEh+j4R9oZH7zT6MAMKrNphZFSQreKHRgZmspLHSCJ2Co6tBtJk7Zps7tJs5t95F5/33PvWU4293F29ybdlPzaM3df2XPv+Zzf4/zOuWc1tkjl+T0HQ3SQC6SBSlD6WKN4rusGm9F1ps/o5mPriOf8dd0YoNfi0nt4ntB1PT4zYwzQkf3kR9/sW4xtpS0CmE0SyPUFUJXFMIxZcM0jAZ4xrKMudQT7963HBF0n6EaUjkP0vI9K9OEHWqJLkNW1s8mC2WgVTwGAqWTafJzTWTKZmQuZ/k1MpAi2+eys6mpWfVaAPzcILu8EVKoCAaYFtPxrAXo8qyNwzZc7gSgzgN9Hx0Ecn3j8xr4lyHOhNrlpaJIgptM5DjCdzrJ0Jmce6bWFkOpqs0MErA4gXIBuAmY53gFmOPCcdaTXCbq+n16PPLXjewMfGcgEttECeouTpk5MplhyKsPBTiXNYyULtwIW7Cx1vlwuJyDLR9L0mQiVPb27fhA54yBbGttMpc1OWwF1cmKaH2FSF7vAjGezOZZJZ9j0dIZlMhnuRiToMO0c+N4X7oksasgEt9XS2KZCHzoem2Ixq5zpAuDTqTR14FMslZyepeEI4Ogj26n0vLj33uiigExgMWRpt+CGCsEePZqoePM738BPTaJzT7CpU0nu1yXpAXCC3VeRkCW4bfJYFZo6dmJyQTW2tvZc1nb719iyZWc5fmZ6Osu6H3uVzit52oBnMll2YizGxk8muFZLAshb/YKtzQdcaO3Y2CQ7eiy+YNGvLN+4+nJetm3bxhKJxJz316xZw1pbW9kLew+w1944XBEaPj6eYCeOx1gqNe07bK1MwIDbKcOFOR49GuePT5fcfOMX2drPXcQ0zf7y2tvbWVdXF/v1k2+yQ4dPVpQ5P0Um/NjoCX6UBMFZR6k+u7qMYVBYDIEqBW7eXAfPZX19zp2/oaGBHysNMGTFinPZik9fWggbI5Omb13zUDeB3lLsdwaK/YPeyAFU0i8Aw9/2Dwyx4SPjFQEYUlf3MTYw4Jx7CIVCbHR0oqIDNMD+FMG+ZE0dO/tsHlvAWnYS6H4qjfMC+Zld/wg92/tuv2WeeYT87j+H2aFDxysGLuSy+o/z49DQkONnmpqa2MjRyoYsZOXKGnb5Z+vZqlUrxUsAvI9At/oK+elnBpoNw+Dai9TekSMxDrgSh0KrSYshTprc2NhoRf1JtlikqirAVl98AddsSavDBDrsC+QdT7/TSoB344tzOZ39+70RbporVerqasyw1MEnC8iV6I9VTDi0uqbmfPFSq2W+gyUHXuEdb3WR5rab5jnD3i/BNMN8ChNaqsTiKa55KmBWX+Tuj0XQdQVF307nhTH0CPls+O0UPbaT5TQG/8qX68u6LpV67LQ6dNknaYgaYyPDx2TzvYGCsnhRkH8b/rsF2GDj1MCInkvxvRjOuCUlipWD/zrKx7ZOwBF0vfSSM2ShyaqAAOC1Nw+zt9/5YNbrN1zfwIdpfgnqebv/A6pnWAn4qlW1HPgHQ6OeoG3N9RO/+StMdDtmV2LxJPfBpQCGfwTgrVu38jFrKaW2tpZt2LCBdXR0sEgkwhv21u9cxQsyW3ZB1+DgoOM54btU6tu8eTPr6elhy5fr7IZNDey+e76e9/fCLcAllHpdKKinpaUlX8+111xB9VzNrYxqUAY/XVVVJYMOekLu2fFGM8VWYQRYiYkU9bD4vPlHFYnH4/zvkb1CgwACHgMoUpdyw3sFXcXUh4YHaNSHDqaxdL5jwVTXBpeXVY9oF3RcUQ+O09NT7Cayfld+4RJlP42gTIq8w66Qf/X4a6FTSSMMDcaE/NhYecMM+MdyG90OAhodWoAGkTUaSZByO5WdiA4GqwStrrM6k5vFKEXQserr63l7oR5V0NBojKctaSZtbneErOtGmFxwkGewjk0UzpCUlJSIRqMcjN8CkHLDqyRByq0PEGBBhDmdj7rQVujAaLfrrlk7xyW5gUaxpEtOmOQDr0e799NYmDVBi0+OT7FcbsaXxEQk8qprEBQMBm0vVKUBRcNjskFE8W71lSt79uzhda1d6w4ZGTUUp3NWAQ3TvW/fPvbVq+rZH/ceULOcF1/I06CY3QJohCCzNJnYdgEwwvpUKuNbUsLNpO3evZtfSGHp7+/nS2pw3LLFPVWLoA5yHQUtXvXFYjH+vU4F5yOibzsRUL38MTqC3XWh8GCWziMcDjt2BNEZUIfoUOpJkwvziT3S5ua8Jj/4yD5E0yERbPkhKv4RF4mhkN1wCMHN2rWfYZ2dnWz9+vXchNkJzBoaQ8Bxqg91wWo41YdO2dzczD+3bt06Rw0rBG4nOF8oi9M0Jsw9OgLqQ124BifLgeuHyVbN0NXUrODBmDWxgRR0pNrUYqMNgDOZGZbNzvgCuc4j0kX+GPJ2//CcMagQmKkbrm/knwVEp++SIXulM1+nhj9AY207QRDnpsnye24WA59DkuPlV/5j+z5eB2hE0W1tbTyQdNJmDpksRzFp2E9csFJAboRvDvz8gZdJgw2ek55KZphfAv+Inu8UdKnmkEUHQK93EjEZ4Rbkifq8JiactEpYAy9Nli2Gm6CjIZPn1qlKFWizleOG3BIwdKNZ+KRMxr9VHKvr1NKLXo2BhlAVFRPq1qlWW6MBr3NWyY2rTGXO5ySJlN9uDuiGsV7XTVPtl8CHYGizf/9+V5Om0hAwVV4ahuU8qia03HP26kyqFkMOTudDzjs/P/QKBUiBYa5ZNucfZJUkCG/0IhpCxYyqBF3lnLOII8q1GKqdStQ3rTh5MStwXX5O/nE1metGQzPHUH6JatA1OppQ8u1eUbpX44tO4GY5vM5Z9sduFgOfG1GwUOK6VFzaSAmrWCSfzGCuuT/O+bi6QwRdTtqXN2keJ4/ejgkJ5HedRARkbkGe6ARulgMWQ+Wc3cDAWohhoZdcue7ifJ7crfP6Me8dELd0Mv8U2begC2k9SHd3t+NnNm7cqKwRbiYUkykqvlZlmOYVLIq5bHRep46JzotOc9BhuFc0ZHGLph+CJIaXr1FZSIfxsdBiN1+LpALEK2By61Aqs0rwtV7DNBU3BMCYixYTLU6C8bM5hBwum0k1mesBpmPtlj+qXFenFsAgCVLon9DYeIxUnmh05HCdBIkCVRP6ussiepVZJZXIutCHwt2I0YGY2Kiz3AIyeG5aLNooVULQBbHy1/nAK2oEtEanheil+GO3aFg0FnwSilNC4q6OrXzywc0XCy1WMaFu/tgrCBLRuWpHuP+n1zqmRXFN0GAnwKgHeW1E1C/86UDJHFKptATZMPZTafbLXHtN3OPixKRC4ev4GwB2Gy6JxhQNEYul+KoKp79RMaGqKzy9ovzt27c7pidVZtYAGJMYOP7u6bdK1mLI1GQ+/ogSZBahwKuLO2jSZt0odw65xrUhAMNrZskLsGiIXz72F3bTjV+ixvtbWcMQr3NWCbog5VyXAIy63PLrqpJITIqHkcD9P7suSiYbG53wvTLKDbr8WBbjZqIF4F3PD3ItRn1eQd5CBF3lCM5RAIYfVp0/dgZ8SvbJ2/l8MmlvNw+8qJTjm+drWQwaAXO9KMuWncc1GBMXKkGeV/pU5ZxFIsTvzovOCu3HvDnOE7NTu3rLr+PE8fy6+IEX9947YM4n/+LbPT/88R8QqoYAuVSDrZLFKcYso2AcLBIeGDPu6h3M+yqvIE/4Y6w4LdUfi+jcr86L75KvC9+PcbVfd1hCi6U7Innwk1/+Q5rcoetsdyBg3s9aCmivBsNFifGfG9zCJUFiztmpEXAbqhMgr6SLWBPu9R1enRfm1ktrC6cVYWH+/Mqg43x6sYK1edaCex7vkRZHZkF+6P6NkXvvi/TpLNBUaqTtdcsoLtIrVTcem2EHDh7m2uq0ikMINBvafOmazzt+BkGMW9CF70DndPsOaJqb38Y1oXjdCYHOiqwbPofrKid6thMAlnxxPtMy6w4K0ubNhq73U5wd5PtVleCTd+50D2CEafLloqixyv0ufMcOGq64CVaMYN2119gfAdPpuscKOxWgCMDwxfm0pvzBhx9siRLoFt3ca7Ikf+x2yygaYzHdTSi7IT9y8fMJ2Lpdhg+ZCPA2+f05d1A88mBLHzQaoA1dL6ohVLJGi+1uQj8XQMyHIMgaGT6eDxuozMkD294LRaB7CPI27DLHQSskSFRvGa30O/zndF4fF0DMhwa//9//iZ2DcILqN7xBHn1oUweNn7eJ3WO9QHvdMlrMsphKEj8XQPgpuHVVMtGOgF0hC9CGTqbb2kHOzXx73aKiuiymEv2x22ICMYYeWSALBQ7RQ0fkoZIr4DnRtS3ohzf1dNzTG9d0PcwMLahZO8UyKTMm38wteratSVtkplq4oWj0PcfrEinPhYg14H+hvdIwCVs1bvb6O+UBMYFGl90d0LRGLRDgoHEUwYnXDniQStocTVUwfPLaKQGA/RoWOmkvtnsaG8unK+PWMKlH5e+Lznp03N27RdO0TkxmYNZKszYBlyfI3RpjsQkmMOo8ls4Wsx1EKcEVAEvayyNoeRzsO2RI+93PNRLesGYtNpBhL4l/prlgZz5ob0mbtZVFhWC301d0EuQgAHPgS7D9hssTHKyMbRfLptF213NBDRuoaqxNA2yh2VUBDnxJ1M1yRW6gOgt2x64gqXK7ht1yOWyW1+wl7bYXvhUygQXgit4KuVDuBGzSbA2bmmtayNzpRgJOGu7XosHFChZzvrGTiUKt5UMiVsmbmtsCb3+2lZmwm3hFNsA/CiYdKyfhYx3Aws8urp8nsJM72naGCG8zYwZMecjk/WHVVRbsMwU6tBVQsWJS2sNDlrgVTO0RE/vzKQtuN2+/85k5PxlUaL75D3BZwKss+JUqSFRAO/F7Eqlkmj+2gbrgYE8rZFluu+P3pOGsyWCG/Y9/GR8exC+vYfc5flxgzRdDGsDEz/8AJsxwQcBUKPCtmKOMFJO8OKMgF8r3b3sKkAm69TN+2OZCAm5ID/g9XPypwX29ufWgudq0urrKes/8nPkxgy1bdg6z/or/SFc2mzV/xs+6HwySTmdYJp2dpaWKEregYrVfn9/B0xkD2U6+e+sOaHqImTfLrycUOIZM1hJwC3oemPXbi/y5PnsrJ136bUa8pxu69BklmANWwDRkgR1wmwVaglyi3Nz6JLQ+ZG5NxQsgNdAhmIfJN7wxgoWg9fxzPQ+c/g9YAIXgeUKCyipJO4uR/wswAOIwB/5IgxvbAAAAAElFTkSuQmCC" alt="PHP logo" /></a><h1 class="p">PHP Version 7.4.33</h1> </td></tr> </table> <table> <tr><td class="e">System </td><td class="v">Darwin Divyaprabhas-MacBook-Air.local 24.3.0 Darwin Kernel Version 24.3.0: Thu Jan 2 20:23:36 PST 2025; root:xnu-11215.81.4~3/RELEASE_ARM64_T8112 x86_64 </td></tr> <tr><td class="e">Build Date </td><td class="v">Nov 22 2022 00:56:59 </td></tr> <tr><td class="e">Configure Command </td><td class="v"> './configure' '--prefix=/Applications/XAMPP/xamppfiles' '--with-apxs2=/Applications/XAMPP/xamppfiles/bin/apxs' '--with-config-file-path=/Applications/XAMPP/xamppfiles/etc' '--with-mysql=mysqlnd' '--enable-inline-optimization' '--disable-debug' '--enable-bcmath' '--enable-calendar' '--enable-ctype' '--enable-ftp' '--enable-gd-native-ttf' '--enable-magic-quotes' '--enable-shmop' '--disable-sigchild' '--enable-sysvsem' '--enable-sysvshm' '--enable-wddx' '--with-gdbm=/Applications/XAMPP/xamppfiles' '--with-jpeg-dir=/Applications/XAMPP/xamppfiles' '--with-png-dir=/Applications/XAMPP/xamppfiles' '--with-freetype-dir=/Applications/XAMPP/xamppfiles' '--with-zlib=yes' '--with-zlib-dir=/Applications/XAMPP/xamppfiles' '--with-openssl=/Applications/XAMPP/xamppfiles' '--with-xsl=/Applications/XAMPP/xamppfiles' '--with-ldap=/Applications/XAMPP/xamppfiles' '--with-gd' '--with-imap=/bitnami/xamppunixinstaller74stack-osx-x64/src/imap-2007e' '--with-imap-ssl' '--with-gettext=/Applications/XAMPP/xamppfiles' '--with-mssql=shared,/Applications/XAMPP/xamppfiles' '--with-pdo-dblib=shared,/Applications/XAMPP/xamppfiles' '--with-sybase-ct=/Applications/XAMPP/xamppfiles' '--with-mysql-sock=/Applications/XAMPP/xamppfiles/var/mysql/mysql.sock' '--with-mcrypt=/Applications/XAMPP/xamppfiles' '--with-mhash=/Applications/XAMPP/xamppfiles' '--enable-sockets' '--enable-mbstring=all' '--with-curl=/Applications/XAMPP/xamppfiles' '--enable-mbregex' '--enable-zend-multibyte' '--enable-exif' '--with-bz2=/Applications/XAMPP/xamppfiles' '--with-sqlite=shared,/Applications/XAMPP/xamppfiles' '--with-sqlite3=/Applications/XAMPP/xamppfiles' '--with-libxml-dir=/Applications/XAMPP/xamppfiles' '--enable-soap' '--with-xmlrpc' '--enable-pcntl' '--with-mysqli=mysqlnd' '--with-pgsql=shared,/Applications/XAMPP/xamppfiles/' '--with-iconv=/usr' '--with-pdo-mysql=mysqlnd' '--with-pdo-pgsql=/Applications/XAMPP/xamppfiles/postgresql' '--with-pdo_sqlite=/Applications/XAMPP/xamppfiles' '--with-icu-dir=/Applications/XAMPP/xamppfiles' '--enable-fileinfo' '--enable-phar' '--enable-zip' '--enable-mbstring' '--disable-huge-code-pages' 'ac_cv_decimal_fp_supported=no' '--with-libzip' '--with-pear' '--enable-gd' '--with-jpeg' '--with-libwebp' '--with-freetype' '--with-zip' 'PKG_CONFIG_PATH=/Applications/XAMPP/xamppfiles/lib/pkgconfig' 'CFLAGS=-std=gnu99 -Qunused-arguments -UROCKSDB_SUPPORT_THREAD_LOCAL -U__MACH__ -I/Applications/XAMPP/xamppfiles/include/c-client -Qunused-arguments -I/Applications/XAMPP/xamppfiles/include/libpng -I/Applications/XAMPP/xamppfiles/include/freetype2 -O3 -L/Applications/XAMPP/xamppfiles/lib -I/Applications/XAMPP/xamppfiles/include -I/Applications/XAMPP/xamppfiles/include/ncurses -arch x86_64' 'LIBXML_CFLAGS=-I/usr/include/libxml2' 'LIBXML_LIBS=-L/usr/lib -lxml2' 'XSL_CFLAGS=-I/usr/include/libxslt' 'XSL_LIBS=-L/usr/lib -lxslt' </td></tr> <tr><td class="e">Server API </td><td class="v">Apache 2.0 Handler </td></tr> <tr><td class="e">Virtual Directory Support </td><td class="v">disabled </td></tr> <tr><td class="e">Configuration File (php.ini) Path </td><td class="v">/Applications/XAMPP/xamppfiles/etc </td></tr> <tr><td class="e">Loaded Configuration File </td><td class="v">/Applications/XAMPP/xamppfiles/etc/php.ini </td></tr> <tr><td class="e">Scan this dir for additional .ini files </td><td class="v">(none) </td></tr> <tr><td class="e">Additional .ini files parsed </td><td class="v">(none) </td></tr> <tr><td class="e">PHP API </td><td class="v">20190902 </td></tr> <tr><td class="e">PHP Extension </td><td class="v">20190902 </td></tr> <tr><td class="e">Zend Extension </td><td class="v">320190902 </td></tr> <tr><td class="e">Zend Extension Build </td><td class="v">API320190902,NTS </td></tr> <tr><td class="e">PHP Extension Build </td><td class="v">API20190902,NTS </td></tr> <tr><td class="e">Debug Build </td><td class="v">no </td></tr> <tr><td class="e">Thread Safety </td><td class="v">disabled </td></tr> <tr><td class="e">Zend Signal Handling </td><td class="v">enabled </td></tr> <tr><td class="e">Zend Memory Manager </td><td class="v">enabled </td></tr> <tr><td class="e">Zend Multibyte Support </td><td class="v">provided by mbstring </td></tr> <tr><td class="e">IPv6 Support </td><td class="v">enabled </td></tr> <tr><td class="e">DTrace Support </td><td class="v">disabled </td></tr> <tr><td class="e">Registered PHP Streams</td><td class="v">https, ftps, compress.zlib, compress.bzip2, php, file, glob, data, http, ftp, phar, zip</td></tr> <tr><td class="e">Registered Stream Socket Transports</td><td class="v">tcp, udp, unix, udg, ssl, tls, tlsv1.0, tlsv1.1, tlsv1.2, tlsv1.3</td></tr> <tr><td class="e">Registered Stream Filters</td><td class="v">zlib.*, bzip2.*, convert.iconv.*, string.rot13, string.toupper, string.tolower, string.strip_tags, convert.*, consumed, dechunk</td></tr> </table> <table> <tr class="v"><td> <a href="http://www.zend.com/"><img border="0" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPoAAAAvCAYAAADKH9ehAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAEWJJREFUeNrsXQl0VNUZvjNJSAgEAxHCGsNitSBFxB1l0boUW1pp3VAUrKLWKgUPUlEB13K0Yq1alaXWuh5EadWK1F0s1gJaoaCgQDRKBBJDVhKSzPR+zPfg5vLevCUzmZnwvnP+k8ybN3fevfff73/vBAJTHxc+khL5kr6T1ODk5nAgTRTWloghFVtEg/zfh2PkSvq9pJGSKiX9SdKittbJoD/PSYkrJD0vKeB4IsNNotfuUtHk/CM+IvijpF9KGiDpGEkLJZ3lC7qPeKKTpD9IWiDpUOfWPCi61ZeLvD2VIhTwp9QlTjK5NsIXdB/xxHmSpvD/OucWPSAyQw2+LfeG1SbXVra1Tqb785xUaNdMel0g7Iu5V1zPv6dJqpD0kKR/+ILuI55o8oeg1bFT0kWSOkraQxK+oPvw0TZR3ZY758foyQXf//ZxUFh0Q/GEfNf9gHkaJ6m7pHJJSyTt9tnXhxtBR2EGlnHCMbZMaHuHzX19JZ0u6VRJh0k6hM+BpMjnklZIelPSNhff3V5StkNlEWBMFm+3LcC+BW3GuZP2GvfmiEiCCMUzxZIKRGSt9zeML/fdGAW9JB3O8c6SlMZ+b5f0qaQiF7EpnieXY1auvZfG7zhSUk8RSS428F7M5xfsh1eAV/vxOzoq16sklZBqbdpo5H2qDPRQXoP3Ki0+20FSFyrZUgt+Rt/7KH2vZb8/t/iMG2Sy/0dI6sbvgHGoV8a3xErQb5Q0iTfHCplkzlkW7w+VNF3ST7QJUzFK0pVkDFiw+yV95uC7r5Z0k3CW2ApwIkrJ9B9IelfSh2SIlqC/pDFUZAVk0rQoMhk2GYswx+AtWvMKPtcyEckW37pPwsIHNAuBniDpYhEpBMmJwvibJL0gIlVh39r0C8UlczkXQ/mM6OtEzuf3RfPVAxUY47f5PStcGKPxpOMldbbxiBptPMavJX1PuQ/P/olyz12S7rD4PLyqBTQ8gyXVSOot6VK+dxR53wyl7POjkv7pkpcwpleJSCHP4eQjM0BB/ZuG4Hl9EO8mQx4ZQ0FfL+k+k+t4wNlULpkO24IGnSzpQklzKPDRAMvZ1eXz9uXfH/Pvx5Ie44C5zYQXUgDPj6LEnMCQ3AFkjjupjGF9/kJmxPw1oiquz+6dalXcCRSmYxwK0kDSRI71azb3Y+6GiMi6P/5ey3F3YpExjxdQoG61uX8gBetkh2OWFkUIVGUT1pS9yosZNu1nkl8uZH+mikhxkx1wz7mkB0WkXsKJFw1ZuSWKotY9wjNJS6mUy41JK5P0c2qCnBgIeQWZvEK7Dnf6WUljTT5TS7d0KwezkJShdWIeGeuKKJo7FktUQylcl0i6RtL/HH4OjP+wB0UTLTGHfubRDWyi1g7SaoZQ495z9w7RpaHKqHEfLeklEyWzk+7dl3TTu1KQCpV7+pBB4IWstFFAgvOpJnTL6DoW0xPbw3k/nIYkW+kbmHeXhUEABklazrBDBdzTDfyuBo5DPq1eoUk7ZbSk70l6n3MZjUdCDpQvMF/rezn7/hX7Xs8wsj/7rsrWdQxnZtrwwENUosJkDDZxTjOUkEH1ds6lzJyDZzGScRsonGNcMCIG+WgRKTRQ8Su2p7uRi/mlKjZKekREChS2KIOcTvfqp3RZDlM+cxnfv8Thc75Pt8kqo92VzNTbxBqcQlceivAdByHDIxbvFTMOLovyHAGGK3qc/jJDoDc4hpjABzBm4UAglBFqEAOqt8mB29ss4uJnNCHfSK/tVZMYEfMykt7Bcco1eDLDHCT8gmzzRdLHZL6wRSgzg6GIgVl8Xj2uhPA+oQn53yTdK2mVMC8NzuJ8zaSyM/ApxyzWCFJRvUQ3eQ29BTNFcRgt+FTl2g30zDZZtD/ZRMifE5ES6Y9MxqAHQ7XZikI9nd97j5p1f83GZTPr6Crt2sOcOB1zTYT8HrqjVRZx4wbSAt47SXn/YsZV9zp4zuvJgNGQRaszmoN1rBY6IH4dHiVHcA5dZd2zeIbPv8ZBkghYTQFTx/h1WvSz6c3kM5ewGG8Prvxc5DZWS2u+dypnM5Y3sIJMXmbxfXW0misZN56oxITnWsyl2fg+6+C+zWTefMWr68RwaYF271htHBZqCsKqL28wB/ACjYShrE9nUjfWmEU33A7woqbR4k5UlNk4yoYOzOHvtGs30KO1QgnlZC2VohGOIGn7WEvW0ZdoMeCHfBgdo8X++m3V+s2wEHKzJMblJom92+ne2SHDwT1gknUispPpJLrrVZqwLxTmy5F5jOdVS72F/b6UwlbrcEytrD00+a8l/ZUM82jEZd8peu8uNYS8JxNWqis5IYqQCy1rPUULh8Y7fOYal3zzmPb6aJN7zlf+32bBV9ESclNE85WUX4j4oNbl/fM1b2eoxX3jyXNqiDTP4Xe8Rm9ItfSjvAr6DM0d+o5MXW/CuHO0a7eZTLYT3KF9LktYZ/WdCI+IkoV+lFZ6l3J9OF14HdM0F3MrhXxFjJmqhh5FBera24XqxaCqL0UosK97Z2ku+yJaEqf4D62ByoROcjZuN78Xaa9zTBSzKvxvC+vlrmgWVPU2h4j4FCO5lZ+vNBnpYHHfOOX/PfR83eApTaGM8CLop5l88WSLWAOu4AiNme5owcBO1xhlLGO/eGAFkyYqrtFe5zKzqU7KBE5o/BAIiv7VJSK7qV4GhEF1XtSk0YseWl6lWYI+cXj6pigJLkH3Vk0qfebxe4q0JGOGSDxCWn/Nchk9qJgMfGKS87LDes1IHeVW0LszgaC6sPMYE5lBt4CzRcuy4lVMLKlWfWwcJ+YpxtcGjtOYfzRjTgNIlv0rnpyCveeHNFSJ/jUlonH/3nNYqyOU28qYhHOLbzVPqFc81JQDKxnQ5twLdmjfmQzlxU6eoZ/mma3y8D3VonlhUr6bElhMwJ81RseSxW+jfOYULdYGAw5s4WBtpeU0ijKwxnp/HCfn70piCNlMFEUU8/WpmnZe1Bq80r96m5yMkIwx9nnNHTWFs114q0ArM1HsiUY7j5/rKFIThdrrzR7agHyoy9vd3Ag64uEfKa+xjIKlLqtTUBB7FWgJrQ9joFl1d2cQ2wzHaeDXa6/ztO9Wx+OT+FrzSAKuV12ptOZp+ljnaVawk8uxDpnMZXYCGB3PXqe5sl7QQ5ubhhQR9B4mQpvjIR+gJgrbOxV0rK/rVUyXmyRWdI2a2YLEhVP3BwmN9sJ9BtQpKkxiSDOrUeUhaeQaPevKzKQ3oIVTSGatcynoRl29sIkh440a8pURNoz00Ab4Ts1obxCps1FKl8k5IpKbcmsgu6nz6ETQC+iSqoKKOPmVJBmYnDjHX4EozB9s7TgwykkyYS13URAHpmstYIloOP/HEi6Wx5a4+DwSpH2V18tTyHUPm3iQeS1s09ai4/0ntVgNRQmzHTRulGwaQNnei3FgHqPcMBEJlXrNioAaE8AcupKBd7ElBu1uTxCzg+dmKB4TahiQNX/OxssAb00Uzdeci4S3FYhEQdfkWCrc1cI2K+2EDhsP1OUxZGUnOWTmcgphV0UgZ4jUR1hLlBiuJfqJpb61CXimOrq8RqiEeu6TU3iMwdzYgWhUnWHDDKr0ptLar6USqmOfYYiGMMTUN/KgziGVTo+pNJHBBfF0zVAQc6N2DUL+tcO2Yc1Rk2ss+yBmOko43yCSCljJXAWA7PD4eAt6MBy2yiNACRvVVN05t40pPLYPsT+zlRDpOLG/Jt8OSGKhmnBpivV7q/Y6JkucVgkyWKb52rVZwl0tvNDi+AzRvKjfK1Dnjvpd1FhPEc1LBVsbqENXN35cFaPY2BIVGdlWYZKqgPPj/RythNtpcNycpoOxwAae0bGwhAkAQg01cfiDWDRqZtHhCqFQ5FAtOXKXh/Yh6Ci2N5YMUDW2SHg/N3scn02N++cnMIZCBdwS9gtApRxqDc6OlzWtSrdc8cJGlzP5fzZDri1tQNixISWL/5fSQvcVzfe/wzXfSG8Kuw03pHB/t5KMik+EYJ1EC1d0zCw6fofqRI2ZJwpvyxN4uPs0q/6UR2szyESobxatf3aa7jvfrT0DGPNpYV3H3CI0BYLGllQdy7TX14rUP/zzDHpuRp0EPLnJvH68Qij/RXnyIyku5Ea+5S3NO7s01q77eMY1qqY8T7Qs+4qtq+o2UWhjZO6HuWhjJBlZXWbAHvbFSTAxqMW+RbuG3VfviAP36tshujINh6Tr3kE0BNMl5x8Qq6+mVTdwrMlzpRrGaGPzVpw9NDNFngjoFZZzRCS/FRPXHRZT31X2MgfYTQYX1WE1moaaQJfKEFTs/camkXnUwt9YtNWPiuc67VmRlb0yiRgS/cAe7is0QXuTAm9kikM2DNc5OkeGRaMU8tq0TJHbUCOtezMeRfITiSv1PLLbGE5gb/NOB/1AuR1KlLETDltidyR4XIPasyEnc6eIbRa9kfNifFeXJOAnVJBiKfFCvobcLKccLHWojHJpIPH3iXQlpoNLrdcH44sucvmQOHHjZ9rDrGdbixVmbk/XGy4mtiKuoQDjmQpFJLs6wuSZvqKmL0ky6zOZLry+420UKUaue5ooyeqy9+iopgM989cp1Dcp16bSU1tOJbyFyjedTID5wOk6OAUFFXUDKFRLkmBM3xH7fzIJwPLsxexDMWP2b8g38DqN45ywCuH0VNuv+XmjwOYCjtUakbg6AkGlNoQGBMB5A9g8hh2g7zFE2U4F35FxfHfmwwbxcz3Yl32C/oAwPwDAS6UXdpOhXPZ27Trc9R/SLTla0zzGoXl2QAexnLVZJB/CZMpV7HthfL4lJIrb54u+tdv3/rCiSbw+k88yM9ZxXgKwlHmZycq13iSr0KeMHmUZw6r1VICrLT4D5fy4wq/5DAvfjaWC9oAd9KxwTNUJynUjL+EqpwSTME1zOWMBuIxmZ7p9RCsNq+NmdxW09I1MdNkJeYZNHsIt0qKEO2Z4kvmHadS+Xqv2cqzc93rpuhdl54tg2DISuJljBW3uZjMHrAPqHOYK6zPIM23G2+14Rts4cyLbdxo3Y667UskOo/W/m/PwRhQBwZFkT2vXzDbTtLMZCyfP1155bbfDrpjKZoYH41bO+d97jmEgMPVxFMF0iHESIkiNtDhKuwV058cw0dBZNP+lFsSU/6VWf0E4P/x+IF2eJnokr4uW/2jAKPYjjRb7Cxef70c3qsCl0im1Gj/Uu2eF6sWo0rUiTQq7zS+pYjywnXYwcyOZfI4mKgHj9N2ttHqbRfSlQXhjw5XXy4S7ZbzOovkxVRsphHp8ia3HlyleZS1zHcvoVrdjuNFdEe7edGHzSbpSria/WZ3+cxYV5DCx/4w7FUfyfTW0WO+i7x2YrzKUXZFw/sut+OxJDGkHUxEZPwgCquQcIgxZR9oXekDQk8FF60bqwocupaIoEz6EmaC3C+0Ro6Wgp4eb2tpPJqN+4xXFXQ3TfUfCc5PDNnLZDpLIV1NADKyjZa87mHgmWX57bYdIfIY3pdCGf43xQUXI62kBn3fZxi4SPC8crIjDQ4yzFAaz/XcPJn7xf03VRzIB5Z7qCbBzPQi5jga2E9bCD+ELug8ficEZCk/Cmj8Ro3aLtLxDR1/QffhIHNRTUZCf+S5G7SJBp2b7G31B9+EjcVAFEInZQ2LU7jiN1zf4gu7DR+KwTvkfO9bGx6BNnEQ8XXmN5cT3fEH34SNxwN4A9dgknIEwyWNbeRTwV7WYHBVwFQfbwKb7vOUjiYAiKVT1PczXqCLD/n5UbuLcNxTKoCgExSFNmsFCHI6iJBQFnUbqqbWPHyFceDAOrC/oPpIN+FVaVLrNUa6dLPbvoEQdO4pd1OUylBVkCutsOkqosbNvwcE6qL6g+0hG3MY4ejots1pT3kE4P9QDdfuLKeDfHswD6gu6j2TF2yQcLoqEGurre9EdP1QTfmxJRdn0NlrvD+jmY69Egz+UQvxfgAEALJ4EcRDa/toAAAAASUVORK5CYII=" alt="Zend logo" /></a> This program makes use of the Zend Scripting Language Engine:<br />Zend Engine v3.4.0, Copyright (c) Zend Technologies<br /></td></tr> </table> <hr /> <h1>Configuration</h1> <h2><a name="module_apache2handler">apache2handler</a></h2> <table> <tr><td class="e">Apache Version </td><td class="v">Apache/2.4.54 (Unix) OpenSSL/1.1.1s PHP/7.4.33 mod_perl/2.0.12 Perl/v5.34.1 </td></tr> <tr><td class="e">Apache API Version </td><td class="v">20120211 </td></tr> <tr><td class="e">Server Administrator </td><td class="v">you@example.com </td></tr> <tr><td class="e">Hostname:Port </td><td class="v">localhost:0 </td></tr> <tr><td class="e">User/Group </td><td class="v">daemon(1)/1 </td></tr> <tr><td class="e">Max Requests </td><td class="v">Per Child: 0 - Keep Alive: on - Max Per Connection: 100 </td></tr> <tr><td class="e">Timeouts </td><td class="v">Connection: 300 - Keep-Alive: 5 </td></tr> <tr><td class="e">Virtual Server </td><td class="v">No </td></tr> <tr><td class="e">Server Root </td><td class="v">/Applications/XAMPP/xamppfiles </td></tr> <tr><td class="e">Loaded Modules </td><td class="v">core mod_so http_core prefork mod_authn_file mod_authn_dbm mod_authn_anon mod_authn_dbd mod_authn_socache mod_authn_core mod_authz_host mod_authz_groupfile mod_authz_user mod_authz_dbm mod_authz_owner mod_authz_dbd mod_authz_core mod_authnz_ldap mod_access_compat mod_auth_basic mod_auth_form mod_auth_digest mod_allowmethods mod_file_cache mod_cache mod_cache_disk mod_socache_shmcb mod_socache_dbm mod_socache_memcache mod_dbd mod_bucketeer mod_dumpio mod_echo mod_case_filter mod_case_filter_in mod_buffer mod_ratelimit mod_reqtimeout mod_ext_filter mod_request mod_include mod_filter mod_substitute mod_sed mod_charset_lite mod_deflate mod_mime util_ldap mod_log_config mod_log_debug mod_logio mod_env mod_mime_magic mod_cern_meta mod_expires mod_headers mod_usertrack mod_unique_id mod_setenvif mod_version mod_remoteip mod_proxy mod_proxy_connect mod_proxy_ftp mod_proxy_http mod_proxy_fcgi mod_proxy_scgi mod_proxy_ajp mod_proxy_balancer mod_proxy_express mod_session mod_session_cookie mod_session_dbd mod_slotmem_shm mod_ssl mod_lbmethod_byrequests mod_lbmethod_bytraffic mod_lbmethod_bybusyness mod_lbmethod_heartbeat mod_unixd mod_dav mod_status mod_autoindex mod_info mod_suexec mod_cgi mod_cgid mod_dav_fs mod_vhost_alias mod_negotiation mod_dir mod_actions mod_speling mod_userdir mod_alias mod_rewrite mod_php7 mod_perl </td></tr> </table> <table> <tr class="h"><th>Directive</th><th>Local Value</th><th>Master Value</th></tr> <tr><td class="e">engine</td><td class="v">1</td><td class="v">1</td></tr> <tr><td class="e">last_modified</td><td class="v">0</td><td class="v">0</td></tr> <tr><td class="e">xbithack</td><td class="v">0</td><td class="v">0</td></tr> </table> <h2>Apache Environment</h2> <table> <tr class="h"><th>Variable</th><th>Value</th></tr> <tr><td class="e">UNIQUE_ID </td><td class="v">aAO-mJoA_PMSTnkkS24HyQAAAA0 </td></tr> <tr><td class="e">HTTP_HOST </td><td class="v">localhost </td></tr> <tr><td class="e">HTTP_USER_AGENT </td><td class="v">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 </td></tr> <tr><td class="e">HTTP_PRAGMA </td><td class="v">no-cache </td></tr> <tr><td class="e">HTTP_CACHE_CONTROL </td><td class="v">no-cache </td></tr> <tr><td class="e">HTTP_REFERER </td><td class="v">http://localhost/dashboard/ </td></tr> <tr><td class="e">PATH </td><td class="v">/Users/divyaprabharajendran/Downloads/sonar-scanner-7.0.2.4839-macosx-aarch64/bin:/Applications/XAMPP/xamppfiles/bin:/opt/homebrew/opt/libiconv/bin:/opt/openjdk@17/bin:/opt/anaconda3/bin:/opt/anaconda3/condabin:/opt/homebrew/bin:/Library/Frameworks/Python.framework/Versions/3.12/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/divyaprabharajendran/library/Android/sdk/platform-tools:/Users/divyaprabharajendran/library/Android/sdk/emulator:/Users/divyaprabharajendran/.composer/vendor/bin </td></tr> <tr><td class="e">DYLD_LIBRARY_PATH </td><td class="v">/Applications/XAMPP/xamppfiles/lib </td></tr> <tr><td class="e">SERVER_SIGNATURE </td><td class="v"><i>no value</i> </td></tr> <tr><td class="e">SERVER_SOFTWARE </td><td class="v">Apache/2.4.54 (Unix) OpenSSL/1.1.1s PHP/7.4.33 mod_perl/2.0.12 Perl/v5.34.1 </td></tr> <tr><td class="e">SERVER_NAME </td><td class="v">localhost </td></tr> <tr><td class="e">SERVER_ADDR </td><td class="v">127.0.0.1 </td></tr> <tr><td class="e">SERVER_PORT </td><td class="v">80 </td></tr> <tr><td class="e">REMOTE_ADDR </td><td class="v">127.0.0.1 </td></tr> <tr><td class="e">DOCUMENT_ROOT </td><td class="v">/Applications/XAMPP/xamppfiles/htdocs </td></tr> <tr><td class="e">REQUEST_SCHEME </td><td class="v">http </td></tr> <tr><td class="e">CONTEXT_PREFIX </td><td class="v"><i>no value</i> </td></tr> <tr><td class="e">CONTEXT_DOCUMENT_ROOT </td><td class="v">/Applications/XAMPP/xamppfiles/htdocs </td></tr> <tr><td class="e">SERVER_ADMIN </td><td class="v">you@example.com </td></tr> <tr><td class="e">SCRIPT_FILENAME </td><td class="v">/Applications/XAMPP/xamppfiles/htdocs/dashboard/phpinfo.php </td></tr> <tr><td class="e">REMOTE_PORT </td><td class="v">50514 </td></tr> <tr><td class="e">GATEWAY_INTERFACE </td><td class="v">CGI/1.1 </td></tr> <tr><td class="e">SERVER_PROTOCOL </td><td class="v">HTTP/1.1 </td></tr> <tr><td class="e">REQUEST_METHOD </td><td class="v">GET </td></tr> <tr><td class="e">QUERY_STRING </td><td class="v"><i>no value</i> </td></tr> <tr><td class="e">REQUEST_URI </td><td class="v">/dashboard/phpinfo.php </td></tr> <tr><td class="e">SCRIPT_NAME </td><td class="v">/dashboard/phpinfo.php </td></tr> </table> <h2>HTTP Headers Information</h2> <table> <tr class="h"><th colspan="2">HTTP Request Headers</th></tr> <tr><td class="e">HTTP Request </td><td class="v">GET /dashboard/phpinfo.php HTTP/1.1 </td></tr> <tr><td class="e">host </td><td class="v">localhost </td></tr> <tr><td class="e">user-agent </td><td class="v">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 </td></tr> <tr><td class="e">pragma </td><td class="v">no-cache </td></tr> <tr><td class="e">cache-control </td><td class="v">no-cache </td></tr> <tr><td class="e">referer </td><td class="v">http://localhost/dashboard/ </td></tr> <tr class="h"><th colspan="2">HTTP Response Headers</th></tr> <tr><td class="e">X-Powered-By </td><td class="v">PHP/7.4.33 </td></tr> </table> <h2><a name="module_bcmath">bcmath</a></h2> <table> <tr><td class="e">BCMath support </td><td class="v">enabled </td></tr> </table> <table> <tr class="h"><th>Directive</th><th>Local Value</th><th>Master Value</th></tr> <tr><td class="e">bcmath.scale</td><td class="v">0</td><td class="v">0</td></tr> </table> <h2><a name="module_bz2">bz2</a></h2> <table> <tr><td class="e">BZip2 Support </td><td class="v">Enabled </td></tr> <tr><td class="e">Stream Wrapper support </td><td class="v">compress.bzip2:// </td></tr> <tr><td class="e">Stream Filter support </td><td class="v">bzip2.decompress, bzip2.compress </td></tr> <tr><td class="e">BZip2 Version </td><td class="v">1.0.6, 6-Sept-2010 </td></tr> </table> <h2><a name="module_calendar">calendar</a></h2> <table> <tr><td class="e">Calendar support </td><td class="v">enabled </td></tr> </table> <h2><a name="module_core">Core</a></h2> <table> <tr><td class="e">PHP Version </td><td class="v">7.4.33 </td></tr> </table> <table> <tr class="h"><th>Directive</th><th>Local Value</th><th>Master Value</th></tr> <tr><td class="e">allow_url_fopen</td><td class="v">On</td><td class="v">On</td></tr> <tr><td class="e">allow_url_include</td><td class="v">Off</td><td class="v">Off</td></tr> <tr><td class="e">arg_separator.input</td><td class="v">&</td><td class="v">&</td></tr> <tr><td class="e">arg_separator.output</td><td class="v">&</td><td class="v">&</td></tr> <tr><td class="e">auto_append_file</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">auto_globals_jit</td><td class="v">On</td><td class="v">On</td></tr> <tr><td class="e">auto_prepend_file</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">browscap</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">default_charset</td><td class="v">UTF-8</td><td class="v">UTF-8</td></tr> <tr><td class="e">default_mimetype</td><td class="v">text/html</td><td class="v">text/html</td></tr> <tr><td class="e">disable_classes</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">disable_functions</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">display_errors</td><td class="v">On</td><td class="v">On</td></tr> <tr><td class="e">display_startup_errors</td><td class="v">On</td><td class="v">On</td></tr> <tr><td class="e">doc_root</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">docref_ext</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">docref_root</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">enable_dl</td><td class="v">Off</td><td class="v">Off</td></tr> <tr><td class="e">enable_post_data_reading</td><td class="v">On</td><td class="v">On</td></tr> <tr><td class="e">error_append_string</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">error_log</td><td class="v">/Applications/XAMPP/xamppfiles/logs/php_error_log</td><td class="v">/Applications/XAMPP/xamppfiles/logs/php_error_log</td></tr> <tr><td class="e">error_prepend_string</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">error_reporting</td><td class="v">22527</td><td class="v">22527</td></tr> <tr><td class="e">expose_php</td><td class="v">On</td><td class="v">On</td></tr> <tr><td class="e">extension_dir</td><td class="v">/Applications/XAMPP/xamppfiles/lib/php/extensions/no-debug-non-zts-20190902</td><td class="v">/Applications/XAMPP/xamppfiles/lib/php/extensions/no-debug-non-zts-20190902</td></tr> <tr><td class="e">file_uploads</td><td class="v">On</td><td class="v">On</td></tr> <tr><td class="e">hard_timeout</td><td class="v">2</td><td class="v">2</td></tr> <tr><td class="e">highlight.comment</td><td class="v"><font style="color: #FF8000">#FF8000</font></td><td class="v"><font style="color: #FF8000">#FF8000</font></td></tr> <tr><td class="e">highlight.default</td><td class="v"><font style="color: #0000BB">#0000BB</font></td><td class="v"><font style="color: #0000BB">#0000BB</font></td></tr> <tr><td class="e">highlight.html</td><td class="v"><font style="color: #000000">#000000</font></td><td class="v"><font style="color: #000000">#000000</font></td></tr> <tr><td class="e">highlight.keyword</td><td class="v"><font style="color: #007700">#007700</font></td><td class="v"><font style="color: #007700">#007700</font></td></tr> <tr><td class="e">highlight.string</td><td class="v"><font style="color: #DD0000">#DD0000</font></td><td class="v"><font style="color: #DD0000">#DD0000</font></td></tr> <tr><td class="e">html_errors</td><td class="v">On</td><td class="v">On</td></tr> <tr><td class="e">ignore_repeated_errors</td><td class="v">Off</td><td class="v">Off</td></tr> <tr><td class="e">ignore_repeated_source</td><td class="v">Off</td><td class="v">Off</td></tr> <tr><td class="e">ignore_user_abort</td><td class="v">Off</td><td class="v">Off</td></tr> <tr><td class="e">implicit_flush</td><td class="v">Off</td><td class="v">Off</td></tr> <tr><td class="e">include_path</td><td class="v">.:/Applications/XAMPP/xamppfiles/lib/php</td><td class="v">.:/Applications/XAMPP/xamppfiles/lib/php</td></tr> <tr><td class="e">input_encoding</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">internal_encoding</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">log_errors</td><td class="v">On</td><td class="v">On</td></tr> <tr><td class="e">log_errors_max_len</td><td class="v">1024</td><td class="v">1024</td></tr> <tr><td class="e">mail.add_x_header</td><td class="v">On</td><td class="v">On</td></tr> <tr><td class="e">mail.force_extra_parameters</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">mail.log</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">max_execution_time</td><td class="v">120</td><td class="v">120</td></tr> <tr><td class="e">max_file_uploads</td><td class="v">20</td><td class="v">20</td></tr> <tr><td class="e">max_input_nesting_level</td><td class="v">64</td><td class="v">64</td></tr> <tr><td class="e">max_input_time</td><td class="v">60</td><td class="v">60</td></tr> <tr><td class="e">max_input_vars</td><td class="v">1000</td><td class="v">1000</td></tr> <tr><td class="e">memory_limit</td><td class="v">512M</td><td class="v">512M</td></tr> <tr><td class="e">open_basedir</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">output_buffering</td><td class="v">4096</td><td class="v">4096</td></tr> <tr><td class="e">output_encoding</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">output_handler</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">post_max_size</td><td class="v">40M</td><td class="v">40M</td></tr> <tr><td class="e">precision</td><td class="v">14</td><td class="v">14</td></tr> <tr><td class="e">realpath_cache_size</td><td class="v">4096K</td><td class="v">4096K</td></tr> <tr><td class="e">realpath_cache_ttl</td><td class="v">120</td><td class="v">120</td></tr> <tr><td class="e">register_argc_argv</td><td class="v">Off</td><td class="v">Off</td></tr> <tr><td class="e">report_memleaks</td><td class="v">On</td><td class="v">On</td></tr> <tr><td class="e">report_zend_debug</td><td class="v">On</td><td class="v">On</td></tr> <tr><td class="e">request_order</td><td class="v">GP</td><td class="v">GP</td></tr> <tr><td class="e">sendmail_from</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">sendmail_path</td><td class="v">/usr/sbin/sendmail -t -i</td><td class="v">/usr/sbin/sendmail -t -i</td></tr> <tr><td class="e">serialize_precision</td><td class="v">100</td><td class="v">100</td></tr> <tr><td class="e">short_open_tag</td><td class="v">On</td><td class="v">On</td></tr> <tr><td class="e">SMTP</td><td class="v">localhost</td><td class="v">localhost</td></tr> <tr><td class="e">smtp_port</td><td class="v">25</td><td class="v">25</td></tr> <tr><td class="e">sys_temp_dir</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">syslog.facility</td><td class="v">LOG_USER</td><td class="v">LOG_USER</td></tr> <tr><td class="e">syslog.filter</td><td class="v">no-ctrl</td><td class="v">no-ctrl</td></tr> <tr><td class="e">syslog.ident</td><td class="v">php</td><td class="v">php</td></tr> <tr><td class="e">track_errors</td><td class="v">On</td><td class="v">On</td></tr> <tr><td class="e">unserialize_callback_func</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">upload_max_filesize</td><td class="v">40M</td><td class="v">40M</td></tr> <tr><td class="e">upload_tmp_dir</td><td class="v">/Applications/XAMPP/xamppfiles/temp/</td><td class="v">/Applications/XAMPP/xamppfiles/temp/</td></tr> <tr><td class="e">user_dir</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">user_ini.cache_ttl</td><td class="v">300</td><td class="v">300</td></tr> <tr><td class="e">user_ini.filename</td><td class="v">.user.ini</td><td class="v">.user.ini</td></tr> <tr><td class="e">variables_order</td><td class="v">GPCS</td><td class="v">GPCS</td></tr> <tr><td class="e">xmlrpc_error_number</td><td class="v">0</td><td class="v">0</td></tr> <tr><td class="e">xmlrpc_errors</td><td class="v">Off</td><td class="v">Off</td></tr> <tr><td class="e">zend.assertions</td><td class="v">1</td><td class="v">1</td></tr> <tr><td class="e">zend.detect_unicode</td><td class="v">On</td><td class="v">On</td></tr> <tr><td class="e">zend.enable_gc</td><td class="v">On</td><td class="v">On</td></tr> <tr><td class="e">zend.exception_ignore_args</td><td class="v">Off</td><td class="v">Off</td></tr> <tr><td class="e">zend.multibyte</td><td class="v">Off</td><td class="v">Off</td></tr> <tr><td class="e">zend.script_encoding</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">zend.signal_check</td><td class="v">Off</td><td class="v">Off</td></tr> </table> <h2><a name="module_ctype">ctype</a></h2> <table> <tr><td class="e">ctype functions </td><td class="v">enabled </td></tr> </table> <h2><a name="module_curl">curl</a></h2> <table> <tr><td class="e">cURL support </td><td class="v">enabled </td></tr> <tr><td class="e">cURL Information </td><td class="v">7.53.1 </td></tr> <tr><td class="e">Age </td><td class="v">3 </td></tr> <tr><td class="e">Features </td></tr> <tr><td class="e">AsynchDNS </td><td class="v">No </td></tr> <tr><td class="e">CharConv </td><td class="v">No </td></tr> <tr><td class="e">Debug </td><td class="v">No </td></tr> <tr><td class="e">GSS-Negotiate </td><td class="v">No </td></tr> <tr><td class="e">IDN </td><td class="v">No </td></tr> <tr><td class="e">IPv6 </td><td class="v">Yes </td></tr> <tr><td class="e">krb4 </td><td class="v">No </td></tr> <tr><td class="e">Largefile </td><td class="v">Yes </td></tr> <tr><td class="e">libz </td><td class="v">Yes </td></tr> <tr><td class="e">NTLM </td><td class="v">Yes </td></tr> <tr><td class="e">NTLMWB </td><td class="v">Yes </td></tr> <tr><td class="e">SPNEGO </td><td class="v">No </td></tr> <tr><td class="e">SSL </td><td class="v">Yes </td></tr> <tr><td class="e">SSPI </td><td class="v">No </td></tr> <tr><td class="e">TLS-SRP </td><td class="v">Yes </td></tr> <tr><td class="e">HTTP2 </td><td class="v">No </td></tr> <tr><td class="e">GSSAPI </td><td class="v">No </td></tr> <tr><td class="e">KERBEROS5 </td><td class="v">No </td></tr> <tr><td class="e">UNIX_SOCKETS </td><td class="v">Yes </td></tr> <tr><td class="e">PSL </td><td class="v">No </td></tr> <tr><td class="e">HTTPS_PROXY </td><td class="v">Yes </td></tr> <tr><td class="e">Protocols </td><td class="v">dict, file, ftp, ftps, gopher, http, https, imap, imaps, ldap, ldaps, pop3, pop3s, rtsp, smb, smbs, smtp, smtps, telnet, tftp </td></tr> <tr><td class="e">Host </td><td class="v">x86_64-apple-darwin14.5.0 </td></tr> <tr><td class="e">SSL Version </td><td class="v">OpenSSL/1.1.1s </td></tr> <tr><td class="e">ZLib Version </td><td class="v">1.2.11 </td></tr> </table> <table> <tr class="h"><th>Directive</th><th>Local Value</th><th>Master Value</th></tr> <tr><td class="e">curl.cainfo</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> </table> <h2><a name="module_date">date</a></h2> <table> <tr><td class="e">date/time support </td><td class="v">enabled </td></tr> <tr><td class="e">timelib version </td><td class="v">2018.04 </td></tr> <tr><td class="e">"Olson" Timezone Database Version </td><td class="v">2022.1 </td></tr> <tr><td class="e">Timezone Database </td><td class="v">internal </td></tr> <tr><td class="e">Default timezone </td><td class="v">Europe/Berlin </td></tr> </table> <table> <tr class="h"><th>Directive</th><th>Local Value</th><th>Master Value</th></tr> <tr><td class="e">date.default_latitude</td><td class="v">31.7667</td><td class="v">31.7667</td></tr> <tr><td class="e">date.default_longitude</td><td class="v">35.2333</td><td class="v">35.2333</td></tr> <tr><td class="e">date.sunrise_zenith</td><td class="v">90.583333</td><td class="v">90.583333</td></tr> <tr><td class="e">date.sunset_zenith</td><td class="v">90.583333</td><td class="v">90.583333</td></tr> <tr><td class="e">date.timezone</td><td class="v">Europe/Berlin</td><td class="v">Europe/Berlin</td></tr> </table> <h2><a name="module_dba">dba</a></h2> <table> <tr><td class="e">DBA support </td><td class="v">enabled </td></tr> <tr><td class="e">Supported handlers </td><td class="v">gdbm cdb cdb_make inifile flatfile </td></tr> </table> <table> <tr class="h"><th>Directive</th><th>Local Value</th><th>Master Value</th></tr> <tr><td class="e">dba.default_handler</td><td class="v">flatfile</td><td class="v">flatfile</td></tr> </table> <h2><a name="module_dom">dom</a></h2> <table> <tr><td class="e">DOM/XML </td><td class="v">enabled </td></tr> <tr><td class="e">DOM/XML API Version </td><td class="v">20031129 </td></tr> <tr><td class="e">libxml Version </td><td class="v">2.9.0 </td></tr> <tr><td class="e">HTML Support </td><td class="v">enabled </td></tr> <tr><td class="e">XPath Support </td><td class="v">enabled </td></tr> <tr><td class="e">XPointer Support </td><td class="v">enabled </td></tr> <tr><td class="e">Schema Support </td><td class="v">enabled </td></tr> <tr><td class="e">RelaxNG Support </td><td class="v">enabled </td></tr> </table> <h2><a name="module_exif">exif</a></h2> <table> <tr><td class="e">EXIF Support </td><td class="v">enabled </td></tr> <tr><td class="e">Supported EXIF Version </td><td class="v">0220 </td></tr> <tr><td class="e">Supported filetypes </td><td class="v">JPEG, TIFF </td></tr> <tr><td class="e">Multibyte decoding support using mbstring </td><td class="v">enabled </td></tr> <tr><td class="e">Extended EXIF tag formats </td><td class="v">Canon, Casio, Fujifilm, Nikon, Olympus, Samsung, Panasonic, DJI, Sony, Pentax, Minolta, Sigma, Foveon, Kyocera, Ricoh, AGFA, Epson </td></tr> </table> <table> <tr class="h"><th>Directive</th><th>Local Value</th><th>Master Value</th></tr> <tr><td class="e">exif.decode_jis_intel</td><td class="v">JIS</td><td class="v">JIS</td></tr> <tr><td class="e">exif.decode_jis_motorola</td><td class="v">JIS</td><td class="v">JIS</td></tr> <tr><td class="e">exif.decode_unicode_intel</td><td class="v">UCS-2LE</td><td class="v">UCS-2LE</td></tr> <tr><td class="e">exif.decode_unicode_motorola</td><td class="v">UCS-2BE</td><td class="v">UCS-2BE</td></tr> <tr><td class="e">exif.encode_jis</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">exif.encode_unicode</td><td class="v">ISO-8859-15</td><td class="v">ISO-8859-15</td></tr> </table> <h2><a name="module_fileinfo">fileinfo</a></h2> <table> <tr><td class="e">fileinfo support </td><td class="v">enabled </td></tr> <tr><td class="e">libmagic </td><td class="v">537 </td></tr> </table> <h2><a name="module_filter">filter</a></h2> <table> <tr><td class="e">Input Validation and Filtering </td><td class="v">enabled </td></tr> </table> <table> <tr class="h"><th>Directive</th><th>Local Value</th><th>Master Value</th></tr> <tr><td class="e">filter.default</td><td class="v">unsafe_raw</td><td class="v">unsafe_raw</td></tr> <tr><td class="e">filter.default_flags</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> </table> <h2><a name="module_ftp">ftp</a></h2> <table> <tr><td class="e">FTP support </td><td class="v">enabled </td></tr> <tr><td class="e">FTPS support </td><td class="v">enabled </td></tr> </table> <h2><a name="module_gd">gd</a></h2> <table> <tr><td class="e">GD Support </td><td class="v">enabled </td></tr> <tr><td class="e">GD Version </td><td class="v">bundled (2.1.0 compatible) </td></tr> <tr><td class="e">FreeType Support </td><td class="v">enabled </td></tr> <tr><td class="e">FreeType Linkage </td><td class="v">with freetype </td></tr> <tr><td class="e">FreeType Version </td><td class="v">2.4.8 </td></tr> <tr><td class="e">GIF Read Support </td><td class="v">enabled </td></tr> <tr><td class="e">GIF Create Support </td><td class="v">enabled </td></tr> <tr><td class="e">JPEG Support </td><td class="v">enabled </td></tr> <tr><td class="e">libJPEG Version </td><td class="v">9 compatible </td></tr> <tr><td class="e">PNG Support </td><td class="v">enabled </td></tr> <tr><td class="e">libPNG Version </td><td class="v">1.6.37 </td></tr> <tr><td class="e">WBMP Support </td><td class="v">enabled </td></tr> <tr><td class="e">XBM Support </td><td class="v">enabled </td></tr> <tr><td class="e">BMP Support </td><td class="v">enabled </td></tr> <tr><td class="e">TGA Read Support </td><td class="v">enabled </td></tr> </table> <table> <tr class="h"><th>Directive</th><th>Local Value</th><th>Master Value</th></tr> <tr><td class="e">gd.jpeg_ignore_warning</td><td class="v">1</td><td class="v">1</td></tr> </table> <h2><a name="module_gettext">gettext</a></h2> <table> <tr><td class="e">GetText Support </td><td class="v">enabled </td></tr> </table> <h2><a name="module_hash">hash</a></h2> <table> <tr><td class="e">hash support </td><td class="v">enabled </td></tr> <tr><td class="e">Hashing Engines </td><td class="v">md2 md4 md5 sha1 sha224 sha256 sha384 sha512/224 sha512/256 sha512 sha3-224 sha3-256 sha3-384 sha3-512 ripemd128 ripemd160 ripemd256 ripemd320 whirlpool tiger128,3 tiger160,3 tiger192,3 tiger128,4 tiger160,4 tiger192,4 snefru snefru256 gost gost-crypto adler32 crc32 crc32b crc32c fnv132 fnv1a32 fnv164 fnv1a64 joaat haval128,3 haval160,3 haval192,3 haval224,3 haval256,3 haval128,4 haval160,4 haval192,4 haval224,4 haval256,4 haval128,5 haval160,5 haval192,5 haval224,5 haval256,5 </td></tr> </table> <table> <tr><td class="e">MHASH support </td><td class="v">Enabled </td></tr> <tr><td class="e">MHASH API Version </td><td class="v">Emulated Support </td></tr> </table> <h2><a name="module_iconv">iconv</a></h2> <table> <tr><td class="e">iconv support </td><td class="v">enabled </td></tr> <tr><td class="e">iconv implementation </td><td class="v">libiconv </td></tr> <tr><td class="e">iconv library version </td><td class="v">1.11 </td></tr> </table> <table> <tr class="h"><th>Directive</th><th>Local Value</th><th>Master Value</th></tr> <tr><td class="e">iconv.input_encoding</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">iconv.internal_encoding</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">iconv.output_encoding</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> </table> <h2><a name="module_imap">imap</a></h2> <table> <tr><td class="e">IMAP c-Client Version </td><td class="v">2007e </td></tr> <tr><td class="e">SSL Support </td><td class="v">enabled </td></tr> </table> <table> <tr class="h"><th>Directive</th><th>Local Value</th><th>Master Value</th></tr> <tr><td class="e">imap.enable_insecure_rsh</td><td class="v">Off</td><td class="v">Off</td></tr> </table> <h2><a name="module_json">json</a></h2> <table> <tr><td class="e">json support </td><td class="v">enabled </td></tr> </table> <h2><a name="module_ldap">ldap</a></h2> <table> <tr><td class="e">LDAP Support </td><td class="v">enabled </td></tr> <tr><td class="e">Total Links </td><td class="v">0/unlimited </td></tr> <tr><td class="e">API Version </td><td class="v">3001 </td></tr> <tr><td class="e">Vendor Name </td><td class="v">OpenLDAP </td></tr> <tr><td class="e">Vendor Version </td><td class="v">20448 </td></tr> </table> <table> <tr class="h"><th>Directive</th><th>Local Value</th><th>Master Value</th></tr> <tr><td class="e">ldap.max_links</td><td class="v">Unlimited</td><td class="v">Unlimited</td></tr> </table> <h2><a name="module_libxml">libxml</a></h2> <table> <tr><td class="e">libXML support </td><td class="v">active </td></tr> <tr><td class="e">libXML Compiled Version </td><td class="v">2.9.0 </td></tr> <tr><td class="e">libXML Loaded Version </td><td class="v">20913 </td></tr> <tr><td class="e">libXML streams </td><td class="v">enabled </td></tr> </table> <h2><a name="module_mbstring">mbstring</a></h2> <table> <tr><td class="e">Multibyte Support </td><td class="v">enabled </td></tr> <tr><td class="e">Multibyte string engine </td><td class="v">libmbfl </td></tr> <tr><td class="e">HTTP input encoding translation </td><td class="v">disabled </td></tr> <tr><td class="e">libmbfl version </td><td class="v">1.3.2 </td></tr> </table> <table> <tr class="h"><th>mbstring extension makes use of "streamable kanji code filter and converter", which is distributed under the GNU Lesser General Public License version 2.1.</th></tr> </table> <table> <tr><td class="e">Multibyte (japanese) regex support </td><td class="v">enabled </td></tr> <tr><td class="e">Multibyte regex (oniguruma) version </td><td class="v">6.9.4 </td></tr> </table> <table> <tr class="h"><th>Directive</th><th>Local Value</th><th>Master Value</th></tr> <tr><td class="e">mbstring.detect_order</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">mbstring.encoding_translation</td><td class="v">Off</td><td class="v">Off</td></tr> <tr><td class="e">mbstring.func_overload</td><td class="v">0</td><td class="v">0</td></tr> <tr><td class="e">mbstring.http_input</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">mbstring.http_output</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">mbstring.http_output_conv_mimetypes</td><td class="v">^(text/|application/xhtml\+xml)</td><td class="v">^(text/|application/xhtml\+xml)</td></tr> <tr><td class="e">mbstring.internal_encoding</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">mbstring.language</td><td class="v">neutral</td><td class="v">neutral</td></tr> <tr><td class="e">mbstring.regex_retry_limit</td><td class="v">1000000</td><td class="v">1000000</td></tr> <tr><td class="e">mbstring.regex_stack_limit</td><td class="v">100000</td><td class="v">100000</td></tr> <tr><td class="e">mbstring.strict_detection</td><td class="v">Off</td><td class="v">Off</td></tr> <tr><td class="e">mbstring.substitute_character</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> </table> <h2><a name="module_mysqli">mysqli</a></h2> <table> <tr class="h"><th>MysqlI Support</th><th>enabled</th></tr> <tr><td class="e">Client API library version </td><td class="v">mysqlnd 7.4.33 </td></tr> <tr><td class="e">Active Persistent Links </td><td class="v">0 </td></tr> <tr><td class="e">Inactive Persistent Links </td><td class="v">0 </td></tr> <tr><td class="e">Active Links </td><td class="v">0 </td></tr> </table> <table> <tr class="h"><th>Directive</th><th>Local Value</th><th>Master Value</th></tr> <tr><td class="e">mysqli.allow_local_infile</td><td class="v">Off</td><td class="v">Off</td></tr> <tr><td class="e">mysqli.allow_persistent</td><td class="v">On</td><td class="v">On</td></tr> <tr><td class="e">mysqli.default_host</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">mysqli.default_port</td><td class="v">3306</td><td class="v">3306</td></tr> <tr><td class="e">mysqli.default_pw</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">mysqli.default_socket</td><td class="v">/Applications/XAMPP/xamppfiles/var/mysql/mysql.sock</td><td class="v">/Applications/XAMPP/xamppfiles/var/mysql/mysql.sock</td></tr> <tr><td class="e">mysqli.default_user</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">mysqli.max_links</td><td class="v">Unlimited</td><td class="v">Unlimited</td></tr> <tr><td class="e">mysqli.max_persistent</td><td class="v">Unlimited</td><td class="v">Unlimited</td></tr> <tr><td class="e">mysqli.reconnect</td><td class="v">Off</td><td class="v">Off</td></tr> <tr><td class="e">mysqli.rollback_on_cached_plink</td><td class="v">Off</td><td class="v">Off</td></tr> </table> <h2><a name="module_mysqlnd">mysqlnd</a></h2> <table> <tr class="h"><th>mysqlnd</th><th>enabled</th></tr> <tr><td class="e">Version </td><td class="v">mysqlnd 7.4.33 </td></tr> <tr><td class="e">Compression </td><td class="v">supported </td></tr> <tr><td class="e">core SSL </td><td class="v">supported </td></tr> <tr><td class="e">extended SSL </td><td class="v">supported </td></tr> <tr><td class="e">Command buffer size </td><td class="v">4096 </td></tr> <tr><td class="e">Read buffer size </td><td class="v">32768 </td></tr> <tr><td class="e">Read timeout </td><td class="v">86400 </td></tr> <tr><td class="e">Collecting statistics </td><td class="v">Yes </td></tr> <tr><td class="e">Collecting memory statistics </td><td class="v">Yes </td></tr> <tr><td class="e">Tracing </td><td class="v">n/a </td></tr> <tr><td class="e">Loaded plugins </td><td class="v">mysqlnd,debug_trace,auth_plugin_mysql_native_password,auth_plugin_mysql_clear_password,auth_plugin_caching_sha2_password,auth_plugin_sha256_password </td></tr> <tr><td class="e">API Extensions </td><td class="v">mysqli,pdo_mysql </td></tr> </table> <h2><a name="module_openssl">openssl</a></h2> <table> <tr><td class="e">OpenSSL support </td><td class="v">enabled </td></tr> <tr><td class="e">OpenSSL Library Version </td><td class="v">OpenSSL 1.1.1s 1 Nov 2022 </td></tr> <tr><td class="e">OpenSSL Header Version </td><td class="v">OpenSSL 1.1.1s 1 Nov 2022 </td></tr> <tr><td class="e">Openssl default config </td><td class="v">/Applications/XAMPP/xamppfiles/share/openssl/openssl.cnf </td></tr> </table> <table> <tr class="h"><th>Directive</th><th>Local Value</th><th>Master Value</th></tr> <tr><td class="e">openssl.cafile</td><td class="v">/Applications/XAMPP/xamppfiles/share/curl/curl-ca-bundle.crt</td><td class="v">/Applications/XAMPP/xamppfiles/share/curl/curl-ca-bundle.crt</td></tr> <tr><td class="e">openssl.capath</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> </table> <h2><a name="module_pcre">pcre</a></h2> <table> <tr><td class="e">PCRE (Perl Compatible Regular Expressions) Support </td><td class="v">enabled </td></tr> <tr><td class="e">PCRE Library Version </td><td class="v">10.35 2020-05-09 </td></tr> <tr><td class="e">PCRE Unicode Version </td><td class="v">13.0.0 </td></tr> <tr><td class="e">PCRE JIT Support </td><td class="v">enabled </td></tr> <tr><td class="e">PCRE JIT Target </td><td class="v">x86 64bit (little endian + unaligned) </td></tr> </table> <table> <tr class="h"><th>Directive</th><th>Local Value</th><th>Master Value</th></tr> <tr><td class="e">pcre.backtrack_limit</td><td class="v">1000000</td><td class="v">1000000</td></tr> <tr><td class="e">pcre.jit</td><td class="v">1</td><td class="v">1</td></tr> <tr><td class="e">pcre.recursion_limit</td><td class="v">100000</td><td class="v">100000</td></tr> </table> <h2><a name="module_pdo">PDO</a></h2> <table> <tr class="h"><th>PDO support</th><th>enabled</th></tr> <tr><td class="e">PDO drivers </td><td class="v">mysql, pgsql, sqlite </td></tr> </table> <h2><a name="module_pdo_mysql">pdo_mysql</a></h2> <table> <tr class="h"><th>PDO Driver for MySQL</th><th>enabled</th></tr> <tr><td class="e">Client API version </td><td class="v">mysqlnd 7.4.33 </td></tr> </table> <table> <tr class="h"><th>Directive</th><th>Local Value</th><th>Master Value</th></tr> <tr><td class="e">pdo_mysql.default_socket</td><td class="v">/Applications/XAMPP/xamppfiles/var/mysql/mysql.sock</td><td class="v">/Applications/XAMPP/xamppfiles/var/mysql/mysql.sock</td></tr> </table> <h2><a name="module_pdo_pgsql">pdo_pgsql</a></h2> <table> <tr><td class="e">PDO Driver for PostgreSQL </td><td class="v">enabled </td></tr> <tr><td class="e">PostgreSQL(libpq) Version </td><td class="v">14.3 </td></tr> </table> <h2><a name="module_pdo_sqlite">pdo_sqlite</a></h2> <table> <tr class="h"><th>PDO Driver for SQLite 3.x</th><th>enabled</th></tr> <tr><td class="e">SQLite Library </td><td class="v">3.38.5 </td></tr> </table> <h2><a name="module_phar">Phar</a></h2> <table> <tr class="h"><th>Phar: PHP Archive support</th><th>enabled</th></tr> <tr><td class="e">Phar API version </td><td class="v">1.1.1 </td></tr> <tr><td class="e">Phar-based phar archives </td><td class="v">enabled </td></tr> <tr><td class="e">Tar-based phar archives </td><td class="v">enabled </td></tr> <tr><td class="e">ZIP-based phar archives </td><td class="v">enabled </td></tr> <tr><td class="e">gzip compression </td><td class="v">enabled </td></tr> <tr><td class="e">bzip2 compression </td><td class="v">enabled </td></tr> <tr><td class="e">OpenSSL support </td><td class="v">enabled </td></tr> </table> <table> <tr class="v"><td> Phar based on pear/PHP_Archive, original concept by Davey Shafik.<br />Phar fully realized by Gregory Beaver and Marcus Boerger.<br />Portions of tar implementation Copyright (c) 2003-2009 Tim Kientzle.</td></tr> </table> <table> <tr class="h"><th>Directive</th><th>Local Value</th><th>Master Value</th></tr> <tr><td class="e">phar.cache_list</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">phar.readonly</td><td class="v">On</td><td class="v">On</td></tr> <tr><td class="e">phar.require_hash</td><td class="v">On</td><td class="v">On</td></tr> </table> <h2><a name="module_posix">posix</a></h2> <table> <tr><td class="e">POSIX support </td><td class="v">enabled </td></tr> </table> <h2><a name="module_reflection">Reflection</a></h2> <table> <tr><td class="e">Reflection </td><td class="v">enabled </td></tr> </table> <h2><a name="module_session">session</a></h2> <table> <tr><td class="e">Session Support </td><td class="v">enabled </td></tr> <tr><td class="e">Registered save handlers </td><td class="v">files user </td></tr> <tr><td class="e">Registered serializer handlers </td><td class="v">php_serialize php php_binary </td></tr> </table> <table> <tr class="h"><th>Directive</th><th>Local Value</th><th>Master Value</th></tr> <tr><td class="e">session.auto_start</td><td class="v">Off</td><td class="v">Off</td></tr> <tr><td class="e">session.cache_expire</td><td class="v">180</td><td class="v">180</td></tr> <tr><td class="e">session.cache_limiter</td><td class="v">nocache</td><td class="v">nocache</td></tr> <tr><td class="e">session.cookie_domain</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">session.cookie_httponly</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">session.cookie_lifetime</td><td class="v">0</td><td class="v">0</td></tr> <tr><td class="e">session.cookie_path</td><td class="v">/</td><td class="v">/</td></tr> <tr><td class="e">session.cookie_samesite</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">session.cookie_secure</td><td class="v">0</td><td class="v">0</td></tr> <tr><td class="e">session.gc_divisor</td><td class="v">1000</td><td class="v">1000</td></tr> <tr><td class="e">session.gc_maxlifetime</td><td class="v">1440</td><td class="v">1440</td></tr> <tr><td class="e">session.gc_probability</td><td class="v">1</td><td class="v">1</td></tr> <tr><td class="e">session.lazy_write</td><td class="v">On</td><td class="v">On</td></tr> <tr><td class="e">session.name</td><td class="v">PHPSESSID</td><td class="v">PHPSESSID</td></tr> <tr><td class="e">session.referer_check</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">session.save_handler</td><td class="v">files</td><td class="v">files</td></tr> <tr><td class="e">session.save_path</td><td class="v">/Applications/XAMPP/xamppfiles/temp/</td><td class="v">/Applications/XAMPP/xamppfiles/temp/</td></tr> <tr><td class="e">session.serialize_handler</td><td class="v">php</td><td class="v">php</td></tr> <tr><td class="e">session.sid_bits_per_character</td><td class="v">4</td><td class="v">4</td></tr> <tr><td class="e">session.sid_length</td><td class="v">32</td><td class="v">32</td></tr> <tr><td class="e">session.upload_progress.cleanup</td><td class="v">On</td><td class="v">On</td></tr> <tr><td class="e">session.upload_progress.enabled</td><td class="v">On</td><td class="v">On</td></tr> <tr><td class="e">session.upload_progress.freq</td><td class="v">1%</td><td class="v">1%</td></tr> <tr><td class="e">session.upload_progress.min_freq</td><td class="v">1</td><td class="v">1</td></tr> <tr><td class="e">session.upload_progress.name</td><td class="v">PHP_SESSION_UPLOAD_PROGRESS</td><td class="v">PHP_SESSION_UPLOAD_PROGRESS</td></tr> <tr><td class="e">session.upload_progress.prefix</td><td class="v">upload_progress_</td><td class="v">upload_progress_</td></tr> <tr><td class="e">session.use_cookies</td><td class="v">1</td><td class="v">1</td></tr> <tr><td class="e">session.use_only_cookies</td><td class="v">1</td><td class="v">1</td></tr> <tr><td class="e">session.use_strict_mode</td><td class="v">0</td><td class="v">0</td></tr> <tr><td class="e">session.use_trans_sid</td><td class="v">0</td><td class="v">0</td></tr> </table> <h2><a name="module_shmop">shmop</a></h2> <table> <tr><td class="e">shmop support </td><td class="v">enabled </td></tr> </table> <h2><a name="module_simplexml">SimpleXML</a></h2> <table> <tr><td class="e">SimpleXML support </td><td class="v">enabled </td></tr> <tr><td class="e">Schema support </td><td class="v">enabled </td></tr> </table> <h2><a name="module_soap">soap</a></h2> <table> <tr><td class="e">Soap Client </td><td class="v">enabled </td></tr> <tr><td class="e">Soap Server </td><td class="v">enabled </td></tr> </table> <table> <tr class="h"><th>Directive</th><th>Local Value</th><th>Master Value</th></tr> <tr><td class="e">soap.wsdl_cache</td><td class="v">1</td><td class="v">1</td></tr> <tr><td class="e">soap.wsdl_cache_dir</td><td class="v">/tmp</td><td class="v">/tmp</td></tr> <tr><td class="e">soap.wsdl_cache_enabled</td><td class="v">1</td><td class="v">1</td></tr> <tr><td class="e">soap.wsdl_cache_limit</td><td class="v">5</td><td class="v">5</td></tr> <tr><td class="e">soap.wsdl_cache_ttl</td><td class="v">86400</td><td class="v">86400</td></tr> </table> <h2><a name="module_sockets">sockets</a></h2> <table> <tr><td class="e">Sockets Support </td><td class="v">enabled </td></tr> </table> <h2><a name="module_spl">SPL</a></h2> <table> <tr class="h"><th>SPL support</th><th>enabled</th></tr> <tr><td class="e">Interfaces </td><td class="v">OuterIterator, RecursiveIterator, SeekableIterator, SplObserver, SplSubject </td></tr> <tr><td class="e">Classes </td><td class="v">AppendIterator, ArrayIterator, ArrayObject, BadFunctionCallException, BadMethodCallException, CachingIterator, CallbackFilterIterator, DirectoryIterator, DomainException, EmptyIterator, FilesystemIterator, FilterIterator, GlobIterator, InfiniteIterator, InvalidArgumentException, IteratorIterator, LengthException, LimitIterator, LogicException, MultipleIterator, NoRewindIterator, OutOfBoundsException, OutOfRangeException, OverflowException, ParentIterator, RangeException, RecursiveArrayIterator, RecursiveCachingIterator, RecursiveCallbackFilterIterator, RecursiveDirectoryIterator, RecursiveFilterIterator, RecursiveIteratorIterator, RecursiveRegexIterator, RecursiveTreeIterator, RegexIterator, RuntimeException, SplDoublyLinkedList, SplFileInfo, SplFileObject, SplFixedArray, SplHeap, SplMinHeap, SplMaxHeap, SplObjectStorage, SplPriorityQueue, SplQueue, SplStack, SplTempFileObject, UnderflowException, UnexpectedValueException </td></tr> </table> <h2><a name="module_sqlite3">sqlite3</a></h2> <table> <tr class="h"><th>SQLite3 support</th><th>enabled</th></tr> <tr><td class="e">SQLite Library </td><td class="v">3.38.5 </td></tr> </table> <table> <tr class="h"><th>Directive</th><th>Local Value</th><th>Master Value</th></tr> <tr><td class="e">sqlite3.defensive</td><td class="v">1</td><td class="v">1</td></tr> <tr><td class="e">sqlite3.extension_dir</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> </table> <h2><a name="module_standard">standard</a></h2> <table> <tr><td class="e">Dynamic Library Support </td><td class="v">enabled </td></tr> <tr><td class="e">Path to sendmail </td><td class="v">/usr/sbin/sendmail -t -i </td></tr> </table> <table> <tr class="h"><th>Directive</th><th>Local Value</th><th>Master Value</th></tr> <tr><td class="e">assert.active</td><td class="v">1</td><td class="v">1</td></tr> <tr><td class="e">assert.bail</td><td class="v">0</td><td class="v">0</td></tr> <tr><td class="e">assert.callback</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">assert.exception</td><td class="v">0</td><td class="v">0</td></tr> <tr><td class="e">assert.quiet_eval</td><td class="v">0</td><td class="v">0</td></tr> <tr><td class="e">assert.warning</td><td class="v">1</td><td class="v">1</td></tr> <tr><td class="e">auto_detect_line_endings</td><td class="v">0</td><td class="v">0</td></tr> <tr><td class="e">default_socket_timeout</td><td class="v">60</td><td class="v">60</td></tr> <tr><td class="e">from</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">session.trans_sid_hosts</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">session.trans_sid_tags</td><td class="v">a=href,area=href,frame=src,form=</td><td class="v">a=href,area=href,frame=src,form=</td></tr> <tr><td class="e">unserialize_max_depth</td><td class="v">4096</td><td class="v">4096</td></tr> <tr><td class="e">url_rewriter.hosts</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> <tr><td class="e">url_rewriter.tags</td><td class="v">a=href,area=href,frame=src,input=src,form=fakeentry</td><td class="v">a=href,area=href,frame=src,input=src,form=fakeentry</td></tr> <tr><td class="e">user_agent</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> </table> <h2><a name="module_sysvsem">sysvsem</a></h2> <table> <tr><td class="e">sysvsem support </td><td class="v">enabled </td></tr> </table> <h2><a name="module_sysvshm">sysvshm</a></h2> <table> <tr><td class="e">sysvshm support </td><td class="v">enabled </td></tr> </table> <h2><a name="module_tokenizer">tokenizer</a></h2> <table> <tr><td class="e">Tokenizer Support </td><td class="v">enabled </td></tr> </table> <h2><a name="module_xml">xml</a></h2> <table> <tr><td class="e">XML Support </td><td class="v">active </td></tr> <tr><td class="e">XML Namespace Support </td><td class="v">active </td></tr> <tr><td class="e">libxml2 Version </td><td class="v">2.9.0 </td></tr> </table> <h2><a name="module_xmlreader">xmlreader</a></h2> <table> <tr><td class="e">XMLReader </td><td class="v">enabled </td></tr> </table> <h2><a name="module_xmlrpc">xmlrpc</a></h2> <table> <tr><td class="e">core library version </td><td class="v">xmlrpc-epi v. 0.51 </td></tr> <tr><td class="e">author </td><td class="v">Dan Libby </td></tr> <tr><td class="e">homepage </td><td class="v">http://xmlrpc-epi.sourceforge.net </td></tr> <tr><td class="e">open sourced by </td><td class="v">Epinions.com </td></tr> </table> <h2><a name="module_xmlwriter">xmlwriter</a></h2> <table> <tr><td class="e">XMLWriter </td><td class="v">enabled </td></tr> </table> <h2><a name="module_xsl">xsl</a></h2> <table> <tr><td class="e">XSL </td><td class="v">enabled </td></tr> <tr><td class="e">libxslt Version </td><td class="v">1.1.35 </td></tr> <tr><td class="e">libxslt compiled against libxml Version </td><td class="v">2.9.13 </td></tr> </table> <h2><a name="module_zip">zip</a></h2> <table> <tr><td class="e">Zip </td><td class="v">enabled </td></tr> <tr><td class="e">Zip version </td><td class="v">1.15.6 </td></tr> <tr><td class="e">Libzip headers version </td><td class="v">1.5.1 </td></tr> <tr><td class="e">Libzip library version </td><td class="v">1.5.1 </td></tr> </table> <h2><a name="module_zlib">zlib</a></h2> <table> <tr class="h"><th>ZLib Support</th><th>enabled</th></tr> <tr><td class="e">Stream Wrapper </td><td class="v">compress.zlib:// </td></tr> <tr><td class="e">Stream Filter </td><td class="v">zlib.inflate, zlib.deflate </td></tr> <tr><td class="e">Compiled Version </td><td class="v">1.2.11 </td></tr> <tr><td class="e">Linked Version </td><td class="v">1.2.11 </td></tr> </table> <table> <tr class="h"><th>Directive</th><th>Local Value</th><th>Master Value</th></tr> <tr><td class="e">zlib.output_compression</td><td class="v">Off</td><td class="v">Off</td></tr> <tr><td class="e">zlib.output_compression_level</td><td class="v">-1</td><td class="v">-1</td></tr> <tr><td class="e">zlib.output_handler</td><td class="v"><i>no value</i></td><td class="v"><i>no value</i></td></tr> </table> <h2>Additional Modules</h2> <table> <tr class="h"><th>Module Name</th></tr> </table> <h2>Environment</h2> <table> <tr class="h"><th>Variable</th><th>Value</th></tr> <tr><td class="e">TERM </td><td class="v">xterm-256color </td></tr> <tr><td class="e">SHELL </td><td class="v">/bin/sh </td></tr> <tr><td class="e">de </td><td class="v">false </td></tr> <tr><td class="e">USER </td><td class="v">root </td></tr> <tr><td class="e">SUDO_USER </td><td class="v">divyaprabharajendran </td></tr> <tr><td class="e">SUDO_UID </td><td class="v">501 </td></tr> <tr><td class="e">SSH_AUTH_SOCK </td><td class="v">/private/tmp/com.apple.launchd.7EWaPzLG4t/Listeners </td></tr> <tr><td class="e">GETTEXT </td><td class="v">/Applications/XAMPP/xamppfiles/bin/gettext </td></tr> <tr><td class="e">PATH </td><td class="v">/Users/divyaprabharajendran/Downloads/sonar-scanner-7.0.2.4839-macosx-aarch64/bin:/Applications/XAMPP/xamppfiles/bin:/opt/homebrew/opt/libiconv/bin:/opt/openjdk@17/bin:/opt/anaconda3/bin:/opt/anaconda3/condabin:/opt/homebrew/bin:/Library/Frameworks/Python.framework/Versions/3.12/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/divyaprabharajendran/library/Android/sdk/platform-tools:/Users/divyaprabharajendran/library/Android/sdk/emulator:/Users/divyaprabharajendran/.composer/vendor/bin </td></tr> <tr><td class="e">MAIL </td><td class="v">/var/mail/root </td></tr> <tr><td class="e">PWD </td><td class="v">/Users/divyaprabharajendran </td></tr> <tr><td class="e">LANG </td><td class="v">en_CA.UTF-8 </td></tr> <tr><td class="e">XAMPP_ROOT </td><td class="v">/Applications/XAMPP/xamppfiles </td></tr> <tr><td class="e">XAMPP_OS </td><td class="v">Mac OS X </td></tr> <tr><td class="e">HOME </td><td class="v">/Users/divyaprabharajendran </td></tr> <tr><td class="e">SUDO_COMMAND </td><td class="v">/Applications/XAMPP/xamppfiles/xampp start </td></tr> <tr><td class="e">SHLVL </td><td class="v">2 </td></tr> <tr><td class="e">DYLD_LIBRARY_PATH </td><td class="v">/Applications/XAMPP/xamppfiles/lib </td></tr> <tr><td class="e">LOGNAME </td><td class="v">root </td></tr> <tr><td class="e">TEXTDOMAIN </td><td class="v">xampp </td></tr> <tr><td class="e">DISPLAY </td><td class="v">/private/tmp/com.apple.launchd.81gglOjbwQ/org.xquartz:0 </td></tr> <tr><td class="e">SUDO_GID </td><td class="v">20 </td></tr> <tr><td class="e">_ </td><td class="v">/Applications/XAMPP/xamppfiles/bin/httpd </td></tr> <tr><td class="e">__CF_USER_TEXT_ENCODING </td><td class="v">0x0:0:0 </td></tr> </table> <h2>PHP Variables</h2> <table> <tr class="h"><th>Variable</th><th>Value</th></tr> <tr><td class="e">$_SERVER['UNIQUE_ID']</td><td class="v">aAO-mJoA_PMSTnkkS24HyQAAAA0</td></tr> <tr><td class="e">$_SERVER['HTTP_HOST']</td><td class="v">localhost</td></tr> <tr><td class="e">$_SERVER['HTTP_USER_AGENT']</td><td class="v">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36</td></tr> <tr><td class="e">$_SERVER['HTTP_PRAGMA']</td><td class="v">no-cache</td></tr> <tr><td class="e">$_SERVER['HTTP_CACHE_CONTROL']</td><td class="v">no-cache</td></tr> <tr><td class="e">$_SERVER['HTTP_REFERER']</td><td class="v">http://localhost/dashboard/</td></tr> <tr><td class="e">$_SERVER['PATH']</td><td class="v">/Users/divyaprabharajendran/Downloads/sonar-scanner-7.0.2.4839-macosx-aarch64/bin:/Applications/XAMPP/xamppfiles/bin:/opt/homebrew/opt/libiconv/bin:/opt/openjdk@17/bin:/opt/anaconda3/bin:/opt/anaconda3/condabin:/opt/homebrew/bin:/Library/Frameworks/Python.framework/Versions/3.12/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/divyaprabharajendran/library/Android/sdk/platform-tools:/Users/divyaprabharajendran/library/Android/sdk/emulator:/Users/divyaprabharajendran/.composer/vendor/bin</td></tr> <tr><td class="e">$_SERVER['DYLD_LIBRARY_PATH']</td><td class="v">/Applications/XAMPP/xamppfiles/lib</td></tr> <tr><td class="e">$_SERVER['SERVER_SIGNATURE']</td><td class="v"><i>no value</i></td></tr> <tr><td class="e">$_SERVER['SERVER_SOFTWARE']</td><td class="v">Apache/2.4.54 (Unix) OpenSSL/1.1.1s PHP/7.4.33 mod_perl/2.0.12 Perl/v5.34.1</td></tr> <tr><td class="e">$_SERVER['SERVER_NAME']</td><td class="v">localhost</td></tr> <tr><td class="e">$_SERVER['SERVER_ADDR']</td><td class="v">127.0.0.1</td></tr> <tr><td class="e">$_SERVER['SERVER_PORT']</td><td class="v">80</td></tr> <tr><td class="e">$_SERVER['REMOTE_ADDR']</td><td class="v">127.0.0.1</td></tr> <tr><td class="e">$_SERVER['DOCUMENT_ROOT']</td><td class="v">/Applications/XAMPP/xamppfiles/htdocs</td></tr> <tr><td class="e">$_SERVER['REQUEST_SCHEME']</td><td class="v">http</td></tr> <tr><td class="e">$_SERVER['CONTEXT_PREFIX']</td><td class="v"><i>no value</i></td></tr> <tr><td class="e">$_SERVER['CONTEXT_DOCUMENT_ROOT']</td><td class="v">/Applications/XAMPP/xamppfiles/htdocs</td></tr> <tr><td class="e">$_SERVER['SERVER_ADMIN']</td><td class="v">you@example.com</td></tr> <tr><td class="e">$_SERVER['SCRIPT_FILENAME']</td><td class="v">/Applications/XAMPP/xamppfiles/htdocs/dashboard/phpinfo.php</td></tr> <tr><td class="e">$_SERVER['REMOTE_PORT']</td><td class="v">50514</td></tr> <tr><td class="e">$_SERVER['GATEWAY_INTERFACE']</td><td class="v">CGI/1.1</td></tr> <tr><td class="e">$_SERVER['SERVER_PROTOCOL']</td><td class="v">HTTP/1.1</td></tr> <tr><td class="e">$_SERVER['REQUEST_METHOD']</td><td class="v">GET</td></tr> <tr><td class="e">$_SERVER['QUERY_STRING']</td><td class="v"><i>no value</i></td></tr> <tr><td class="e">$_SERVER['REQUEST_URI']</td><td class="v">/dashboard/phpinfo.php</td></tr> <tr><td class="e">$_SERVER['SCRIPT_NAME']</td><td class="v">/dashboard/phpinfo.php</td></tr> <tr><td class="e">$_SERVER['PHP_SELF']</td><td class="v">/dashboard/phpinfo.php</td></tr> <tr><td class="e">$_SERVER['REQUEST_TIME_FLOAT']</td><td class="v">1745075864.9441</td></tr> <tr><td class="e">$_SERVER['REQUEST_TIME']</td><td class="v">1745075864</td></tr> </table> <hr /> <h1>PHP Credits</h1> <table> <tr class="h"><th>PHP Group</th></tr> <tr><td class="e">Thies C. Arntzen, Stig Bakken, Shane Caraveo, Andi Gutmans, Rasmus Lerdorf, Sam Ruby, Sascha Schumann, Zeev Suraski, Jim Winstead, Andrei Zmievski </td></tr> </table> <table> <tr class="h"><th>Language Design & Concept</th></tr> <tr><td class="e">Andi Gutmans, Rasmus Lerdorf, Zeev Suraski, Marcus Boerger </td></tr> </table> <table> <tr class="h"><th colspan="2">PHP Authors</th></tr> <tr class="h"><th>Contribution</th><th>Authors</th></tr> <tr><td class="e">Zend Scripting Language Engine </td><td class="v">Andi Gutmans, Zeev Suraski, Stanislav Malyshev, Marcus Boerger, Dmitry Stogov, Xinchen Hui, Nikita Popov </td></tr> <tr><td class="e">Extension Module API </td><td class="v">Andi Gutmans, Zeev Suraski, Andrei Zmievski </td></tr> <tr><td class="e">UNIX Build and Modularization </td><td class="v">Stig Bakken, Sascha Schumann, Jani Taskinen, Peter Kokot </td></tr> <tr><td class="e">Windows Support </td><td class="v">Shane Caraveo, Zeev Suraski, Wez Furlong, Pierre-Alain Joye, Anatol Belski, Kalle Sommer Nielsen </td></tr> <tr><td class="e">Server API (SAPI) Abstraction Layer </td><td class="v">Andi Gutmans, Shane Caraveo, Zeev Suraski </td></tr> <tr><td class="e">Streams Abstraction Layer </td><td class="v">Wez Furlong, Sara Golemon </td></tr> <tr><td class="e">PHP Data Objects Layer </td><td class="v">Wez Furlong, Marcus Boerger, Sterling Hughes, George Schlossnagle, Ilia Alshanetsky </td></tr> <tr><td class="e">Output Handler </td><td class="v">Zeev Suraski, Thies C. Arntzen, Marcus Boerger, Michael Wallner </td></tr> <tr><td class="e">Consistent 64 bit support </td><td class="v">Anthony Ferrara, Anatol Belski </td></tr> </table> <table> <tr class="h"><th colspan="2">SAPI Modules</th></tr> <tr class="h"><th>Contribution</th><th>Authors</th></tr> <tr><td class="e">Apache 2.0 Handler </td><td class="v">Ian Holsman, Justin Erenkrantz (based on Apache 2.0 Filter code) </td></tr> <tr><td class="e">CGI / FastCGI </td><td class="v">Rasmus Lerdorf, Stig Bakken, Shane Caraveo, Dmitry Stogov </td></tr> <tr><td class="e">CLI </td><td class="v">Edin Kadribasic, Marcus Boerger, Johannes Schlueter, Moriyoshi Koizumi, Xinchen Hui </td></tr> <tr><td class="e">Embed </td><td class="v">Edin Kadribasic </td></tr> <tr><td class="e">FastCGI Process Manager </td><td class="v">Andrei Nigmatulin, dreamcat4, Antony Dovgal, Jerome Loyet </td></tr> <tr><td class="e">litespeed </td><td class="v">George Wang </td></tr> <tr><td class="e">phpdbg </td><td class="v">Felipe Pena, Joe Watkins, Bob Weinand </td></tr> </table> <table> <tr class="h"><th colspan="2">Module Authors</th></tr> <tr class="h"><th>Module</th><th>Authors</th></tr> <tr><td class="e">BC Math </td><td class="v">Andi Gutmans </td></tr> <tr><td class="e">Bzip2 </td><td class="v">Sterling Hughes </td></tr> <tr><td class="e">Calendar </td><td class="v">Shane Caraveo, Colin Viebrock, Hartmut Holzgraefe, Wez Furlong </td></tr> <tr><td class="e">COM and .Net </td><td class="v">Wez Furlong </td></tr> <tr><td class="e">ctype </td><td class="v">Hartmut Holzgraefe </td></tr> <tr><td class="e">cURL </td><td class="v">Sterling Hughes </td></tr> <tr><td class="e">Date/Time Support </td><td class="v">Derick Rethans </td></tr> <tr><td class="e">DB-LIB (MS SQL, Sybase) </td><td class="v">Wez Furlong, Frank M. Kromann, Adam Baratz </td></tr> <tr><td class="e">DBA </td><td class="v">Sascha Schumann, Marcus Boerger </td></tr> <tr><td class="e">DOM </td><td class="v">Christian Stocker, Rob Richards, Marcus Boerger </td></tr> <tr><td class="e">enchant </td><td class="v">Pierre-Alain Joye, Ilia Alshanetsky </td></tr> <tr><td class="e">EXIF </td><td class="v">Rasmus Lerdorf, Marcus Boerger </td></tr> <tr><td class="e">FFI </td><td class="v">Dmitry Stogov </td></tr> <tr><td class="e">fileinfo </td><td class="v">Ilia Alshanetsky, Pierre Alain Joye, Scott MacVicar, Derick Rethans, Anatol Belski </td></tr> <tr><td class="e">Firebird driver for PDO </td><td class="v">Ard Biesheuvel </td></tr> <tr><td class="e">FTP </td><td class="v">Stefan Esser, Andrew Skalski </td></tr> <tr><td class="e">GD imaging </td><td class="v">Rasmus Lerdorf, Stig Bakken, Jim Winstead, Jouni Ahto, Ilia Alshanetsky, Pierre-Alain Joye, Marcus Boerger </td></tr> <tr><td class="e">GetText </td><td class="v">Alex Plotnick </td></tr> <tr><td class="e">GNU GMP support </td><td class="v">Stanislav Malyshev </td></tr> <tr><td class="e">Iconv </td><td class="v">Rui Hirokawa, Stig Bakken, Moriyoshi Koizumi </td></tr> <tr><td class="e">IMAP </td><td class="v">Rex Logan, Mark Musone, Brian Wang, Kaj-Michael Lang, Antoni Pamies Olive, Rasmus Lerdorf, Andrew Skalski, Chuck Hagenbuch, Daniel R Kalowsky </td></tr> <tr><td class="e">Input Filter </td><td class="v">Rasmus Lerdorf, Derick Rethans, Pierre-Alain Joye, Ilia Alshanetsky </td></tr> <tr><td class="e">Internationalization </td><td class="v">Ed Batutis, Vladimir Iordanov, Dmitry Lakhtyuk, Stanislav Malyshev, Vadim Savchuk, Kirti Velankar </td></tr> <tr><td class="e">JSON </td><td class="v">Jakub Zelenka, Omar Kilani, Scott MacVicar </td></tr> <tr><td class="e">LDAP </td><td class="v">Amitay Isaacs, Eric Warnke, Rasmus Lerdorf, Gerrit Thomson, Stig Venaas </td></tr> <tr><td class="e">LIBXML </td><td class="v">Christian Stocker, Rob Richards, Marcus Boerger, Wez Furlong, Shane Caraveo </td></tr> <tr><td class="e">Multibyte String Functions </td><td class="v">Tsukada Takuya, Rui Hirokawa </td></tr> <tr><td class="e">MySQL driver for PDO </td><td class="v">George Schlossnagle, Wez Furlong, Ilia Alshanetsky, Johannes Schlueter </td></tr> <tr><td class="e">MySQLi </td><td class="v">Zak Greant, Georg Richter, Andrey Hristov, Ulf Wendel </td></tr> <tr><td class="e">MySQLnd </td><td class="v">Andrey Hristov, Ulf Wendel, Georg Richter, Johannes Schlüter </td></tr> <tr><td class="e">OCI8 </td><td class="v">Stig Bakken, Thies C. Arntzen, Andy Sautins, David Benson, Maxim Maletsky, Harald Radi, Antony Dovgal, Andi Gutmans, Wez Furlong, Christopher Jones, Oracle Corporation </td></tr> <tr><td class="e">ODBC driver for PDO </td><td class="v">Wez Furlong </td></tr> <tr><td class="e">ODBC </td><td class="v">Stig Bakken, Andreas Karajannis, Frank M. Kromann, Daniel R. Kalowsky </td></tr> <tr><td class="e">Opcache </td><td class="v">Andi Gutmans, Zeev Suraski, Stanislav Malyshev, Dmitry Stogov, Xinchen Hui </td></tr> <tr><td class="e">OpenSSL </td><td class="v">Stig Venaas, Wez Furlong, Sascha Kettler, Scott MacVicar </td></tr> <tr><td class="e">Oracle (OCI) driver for PDO </td><td class="v">Wez Furlong </td></tr> <tr><td class="e">pcntl </td><td class="v">Jason Greene, Arnaud Le Blanc </td></tr> <tr><td class="e">Perl Compatible Regexps </td><td class="v">Andrei Zmievski </td></tr> <tr><td class="e">PHP Archive </td><td class="v">Gregory Beaver, Marcus Boerger </td></tr> <tr><td class="e">PHP Data Objects </td><td class="v">Wez Furlong, Marcus Boerger, Sterling Hughes, George Schlossnagle, Ilia Alshanetsky </td></tr> <tr><td class="e">PHP hash </td><td class="v">Sara Golemon, Rasmus Lerdorf, Stefan Esser, Michael Wallner, Scott MacVicar </td></tr> <tr><td class="e">Posix </td><td class="v">Kristian Koehntopp </td></tr> <tr><td class="e">PostgreSQL driver for PDO </td><td class="v">Edin Kadribasic, Ilia Alshanetsky </td></tr> <tr><td class="e">PostgreSQL </td><td class="v">Jouni Ahto, Zeev Suraski, Yasuo Ohgaki, Chris Kings-Lynne </td></tr> <tr><td class="e">Pspell </td><td class="v">Vlad Krupin </td></tr> <tr><td class="e">Readline </td><td class="v">Thies C. Arntzen </td></tr> <tr><td class="e">Reflection </td><td class="v">Marcus Boerger, Timm Friebe, George Schlossnagle, Andrei Zmievski, Johannes Schlueter </td></tr> <tr><td class="e">Sessions </td><td class="v">Sascha Schumann, Andrei Zmievski </td></tr> <tr><td class="e">Shared Memory Operations </td><td class="v">Slava Poliakov, Ilia Alshanetsky </td></tr> <tr><td class="e">SimpleXML </td><td class="v">Sterling Hughes, Marcus Boerger, Rob Richards </td></tr> <tr><td class="e">SNMP </td><td class="v">Rasmus Lerdorf, Harrie Hazewinkel, Mike Jackson, Steven Lawrance, Johann Hanne, Boris Lytochkin </td></tr> <tr><td class="e">SOAP </td><td class="v">Brad Lafountain, Shane Caraveo, Dmitry Stogov </td></tr> <tr><td class="e">Sockets </td><td class="v">Chris Vandomelen, Sterling Hughes, Daniel Beulshausen, Jason Greene </td></tr> <tr><td class="e">Sodium </td><td class="v">Frank Denis </td></tr> <tr><td class="e">SPL </td><td class="v">Marcus Boerger, Etienne Kneuss </td></tr> <tr><td class="e">SQLite 3.x driver for PDO </td><td class="v">Wez Furlong </td></tr> <tr><td class="e">SQLite3 </td><td class="v">Scott MacVicar, Ilia Alshanetsky, Brad Dewar </td></tr> <tr><td class="e">System V Message based IPC </td><td class="v">Wez Furlong </td></tr> <tr><td class="e">System V Semaphores </td><td class="v">Tom May </td></tr> <tr><td class="e">System V Shared Memory </td><td class="v">Christian Cartus </td></tr> <tr><td class="e">tidy </td><td class="v">John Coggeshall, Ilia Alshanetsky </td></tr> <tr><td class="e">tokenizer </td><td class="v">Andrei Zmievski, Johannes Schlueter </td></tr> <tr><td class="e">XML </td><td class="v">Stig Bakken, Thies C. Arntzen, Sterling Hughes </td></tr> <tr><td class="e">XMLReader </td><td class="v">Rob Richards </td></tr> <tr><td class="e">xmlrpc </td><td class="v">Dan Libby </td></tr> <tr><td class="e">XMLWriter </td><td class="v">Rob Richards, Pierre-Alain Joye </td></tr> <tr><td class="e">XSL </td><td class="v">Christian Stocker, Rob Richards </td></tr> <tr><td class="e">Zip </td><td class="v">Pierre-Alain Joye, Remi Collet </td></tr> <tr><td class="e">Zlib </td><td class="v">Rasmus Lerdorf, Stefan Roehrich, Zeev Suraski, Jade Nicoletti, Michael Wallner </td></tr> </table> <table> <tr class="h"><th colspan="2">PHP Documentation</th></tr> <tr><td class="e">Authors </td><td class="v">Mehdi Achour, Friedhelm Betz, Antony Dovgal, Nuno Lopes, Hannes Magnusson, Philip Olson, Georg Richter, Damien Seguy, Jakub Vrana, Adam Harvey </td></tr> <tr><td class="e">Editor </td><td class="v">Peter Cowburn </td></tr> <tr><td class="e">User Note Maintainers </td><td class="v">Daniel P. Brown, Thiago Henrique Pojda </td></tr> <tr><td class="e">Other Contributors </td><td class="v">Previously active authors, editors and other contributors are listed in the manual. </td></tr> </table> <table> <tr class="h"><th>PHP Quality Assurance Team</th></tr> <tr><td class="e">Ilia Alshanetsky, Joerg Behrens, Antony Dovgal, Stefan Esser, Moriyoshi Koizumi, Magnus Maatta, Sebastian Nohn, Derick Rethans, Melvyn Sopacua, Pierre-Alain Joye, Dmitry Stogov, Felipe Pena, David Soria Parra, Stanislav Malyshev, Julien Pauli, Stephen Zarkos, Anatol Belski, Remi Collet, Ferenc Kovacs </td></tr> </table> <table> <tr class="h"><th colspan="2">Websites and Infrastructure team</th></tr> <tr><td class="e">PHP Websites Team </td><td class="v">Rasmus Lerdorf, Hannes Magnusson, Philip Olson, Lukas Kahwe Smith, Pierre-Alain Joye, Kalle Sommer Nielsen, Peter Cowburn, Adam Harvey, Ferenc Kovacs, Levi Morrison </td></tr> <tr><td class="e">Event Maintainers </td><td class="v">Damien Seguy, Daniel P. Brown </td></tr> <tr><td class="e">Network Infrastructure </td><td class="v">Daniel P. Brown </td></tr> <tr><td class="e">Windows Infrastructure </td><td class="v">Alex Schoenmaker </td></tr> </table> <h2>PHP License</h2> <table> <tr class="v"><td> <p> This program is free software; you can redistribute it and/or modify it under the terms of the PHP License as published by the PHP Group and included in the distribution in the file: LICENSE </p> <p>This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. </p> <p>If you did not receive a copy of the PHP license, or have any questions about PHP licensing, please contact license@php.net. </p> </td></tr> </table> </div></body></html>Evidence 1745075864Solution Manually confirm that the timestamp data is not sensitive, and that the data cannot be aggregated to disclose exploitable patterns.
-
-
-
Risk=Informational, Confidence=High (6)
-
http://localhost (6)
-
CSP: X-Content-Security-Policy (1)
GET http://localhost/phpmyadmin/
Alert tags Alert description Content Security Policy (CSP) is an added layer of security that helps to detect and mitigate certain types of attacks. Including (but not limited to) Cross Site Scripting (XSS), and data injection attacks. These attacks are used for everything from data theft to site defacement or distribution of malware. CSP provides a set of standard HTTP headers that allow website owners to declare approved sources of content that browsers should be allowed to load on that page — covered types are JavaScript, CSS, HTML frames, fonts, images and embeddable objects such as Java applets, ActiveX, audio and video files.
Other info The header X-Content-Security-Policy was found on this response. While it is a good sign that CSP is implemented to some degree the policy specified in this header has not been analyzed by ZAP. To ensure full support by modern browsers ensure that the Content-Security-Policy header is defined and attached to responses.
Request Request line and header section (268 bytes)
GET http://localhost/phpmyadmin/ HTTP/1.1 host: localhost user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 pragma: no-cache cache-control: no-cache referer: http://localhost/dashboard/Request body (0 bytes)
Response Status line and header section (1561 bytes)
HTTP/1.1 200 OK Date: Sat, 19 Apr 2025 15:17:44 GMT Server: Apache/2.4.54 (Unix) OpenSSL/1.1.1s PHP/7.4.33 mod_perl/2.0.12 Perl/v5.34.1 X-Powered-By: PHP/7.4.33 Set-Cookie: phpMyAdmin=610f86c60f00a8f4dc92fe660c217e62; path=/phpmyadmin/; HttpOnly; SameSite=Strict Expires: Sat, 19 Apr 2025 15:17:45 +0000 Cache-Control: no-store, no-cache, must-revalidate, pre-check=0, post-check=0, max-age=0 Last-Modified: Sat, 19 Apr 2025 15:17:45 +0000 Set-Cookie: phpMyAdmin=610f86c60f00a8f4dc92fe660c217e62; path=/phpmyadmin/; HttpOnly; SameSite=Strict Set-Cookie: pma_lang=en; expires=Mon, 19-May-2025 15:17:45 GMT; Max-Age=2592000; path=/phpmyadmin/; HttpOnly; SameSite=Strict X-ob_mode: 1 X-Frame-Options: DENY Referrer-Policy: no-referrer Content-Security-Policy: default-src 'self' ;script-src 'self' 'unsafe-inline' 'unsafe-eval' ;style-src 'self' 'unsafe-inline' ;img-src 'self' data: *.tile.openstreetmap.org;object-src 'none'; X-Content-Security-Policy: default-src 'self' ;options inline-script eval-script;referrer no-referrer;img-src 'self' data: *.tile.openstreetmap.org;object-src 'none'; X-WebKit-CSP: default-src 'self' ;script-src 'self' 'unsafe-inline' 'unsafe-eval';referrer no-referrer;style-src 'self' 'unsafe-inline' ;img-src 'self' data: *.tile.openstreetmap.org;object-src 'none'; X-XSS-Protection: 1; mode=block X-Content-Type-Options: nosniff X-Permitted-Cross-Domain-Policies: none X-Robots-Tag: noindex, nofollow Pragma: no-cache Vary: Accept-Encoding Content-Type: text/html; charset=utf-8 content-length: 145988Response body (145988 bytes)
<!doctype html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="referrer" content="no-referrer"> <meta name="robots" content="noindex,nofollow"> <style id="cfs-style">html{display: none;}</style> <link rel="icon" href="favicon.ico" type="image/x-icon"> <link rel="shortcut icon" href="favicon.ico" type="image/x-icon"> <link rel="stylesheet" type="text/css" href="./themes/pmahomme/jquery/jquery-ui.css"> <link rel="stylesheet" type="text/css" href="js/vendor/codemirror/lib/codemirror.css?v=5.2.0"> <link rel="stylesheet" type="text/css" href="js/vendor/codemirror/addon/hint/show-hint.css?v=5.2.0"> <link rel="stylesheet" type="text/css" href="js/vendor/codemirror/addon/lint/lint.css?v=5.2.0"> <link rel="stylesheet" type="text/css" href="./themes/pmahomme/css/theme.css?v=5.2.0"> <title>localhost / localhost | phpMyAdmin 5.2.0</title> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery.min.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery-migrate.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/sprintf.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/ajax.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/keyhandler.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery-ui.min.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/name-conflict-fixes.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/bootstrap/bootstrap.bundle.min.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/js.cookie.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery.validate.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery-ui-timepicker-addon.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery.debounce-1.0.6.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/menu_resizer.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/cross_framing_protection.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/messages.php?l=en&v=5.2.0&lang=en"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/config.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/doclinks.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/functions.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/navigation.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/indexes.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/common.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/page_settings.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/home.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/lib/codemirror.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/mode/sql/sql.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/addon/runmode/runmode.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/addon/hint/show-hint.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/addon/hint/sql-hint.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/addon/lint/lint.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/codemirror/addon/lint/sql-lint.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/tracekit.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/error_report.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/drag_drop_import.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/shortcuts_handler.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/console.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript"> // <![CDATA[ CommonParams.setAll({common_query:"lang=en",opendb_url:"index.php?route=/database/structure&lang=en",lang:"en",server:"1",table:"",db:"",token:"68796d444825575e6d2d604f364a4658",text_dir:"ltr",LimitChars:"50",pftext:"",confirm:true,LoginCookieValidity:"1440",session_gc_maxlifetime:"1440",logged_in:true,is_https:false,rootPath:"/phpmyadmin/",arg_separator:"&",version:"5.2.0",auth_type:"config",user:"root"}); var firstDayOfCalendar = '0'; var themeImagePath = '.\/themes\/pmahomme\/img\/'; var mysqlDocTemplate = '.\/url.php\u003Furl\u003Dhttps\u00253A\u00252F\u00252Fdev.mysql.com\u00252Fdoc\u00252Frefman\u00252F8.0\u00252Fen\u00252F\u002525s.html'; var maxInputVars = 1000; if ($.datepicker) { $.datepicker.regional[''].closeText = 'Done'; $.datepicker.regional[''].prevText = 'Prev'; $.datepicker.regional[''].nextText = 'Next'; $.datepicker.regional[''].currentText = 'Today'; $.datepicker.regional[''].monthNames = [ 'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December', ]; $.datepicker.regional[''].monthNamesShort = [ 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec', ]; $.datepicker.regional[''].dayNames = [ 'Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', ]; $.datepicker.regional[''].dayNamesShort = [ 'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', ]; $.datepicker.regional[''].dayNamesMin = [ 'Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa', ]; $.datepicker.regional[''].weekHeader = 'Wk'; $.datepicker.regional[''].showMonthAfterYear = false; $.datepicker.regional[''].yearSuffix = ''; $.extend($.datepicker._defaults, $.datepicker.regional['']); } if ($.timepicker) { $.timepicker.regional[''].timeText = 'Time'; $.timepicker.regional[''].hourText = 'Hour'; $.timepicker.regional[''].minuteText = 'Minute'; $.timepicker.regional[''].secondText = 'Second'; $.extend($.timepicker._defaults, $.timepicker.regional['']); } function extendingValidatorMessages () { $.extend($.validator.messages, { required: 'This\u0020field\u0020is\u0020required', remote: 'Please\u0020fix\u0020this\u0020field', email: 'Please\u0020enter\u0020a\u0020valid\u0020email\u0020address', url: 'Please\u0020enter\u0020a\u0020valid\u0020URL', date: 'Please\u0020enter\u0020a\u0020valid\u0020date', dateISO: 'Please\u0020enter\u0020a\u0020valid\u0020date\u0020\u0028\u0020ISO\u0020\u0029', number: 'Please\u0020enter\u0020a\u0020valid\u0020number', creditcard: 'Please\u0020enter\u0020a\u0020valid\u0020credit\u0020card\u0020number', digits: 'Please\u0020enter\u0020only\u0020digits', equalTo: 'Please\u0020enter\u0020the\u0020same\u0020value\u0020again', maxlength: $.validator.format('Please\u0020enter\u0020no\u0020more\u0020than\u0020\u007B0\u007D\u0020characters'), minlength: $.validator.format('Please\u0020enter\u0020at\u0020least\u0020\u007B0\u007D\u0020characters'), rangelength: $.validator.format('Please\u0020enter\u0020a\u0020value\u0020between\u0020\u007B0\u007D\u0020and\u0020\u007B1\u007D\u0020characters\u0020long'), range: $.validator.format('Please\u0020enter\u0020a\u0020value\u0020between\u0020\u007B0\u007D\u0020and\u0020\u007B1\u007D'), max: $.validator.format('Please\u0020enter\u0020a\u0020value\u0020less\u0020than\u0020or\u0020equal\u0020to\u0020\u007B0\u007D'), min: $.validator.format('Please\u0020enter\u0020a\u0020value\u0020greater\u0020than\u0020or\u0020equal\u0020to\u0020\u007B0\u007D'), validationFunctionForDateTime: $.validator.format('Please\u0020enter\u0020a\u0020valid\u0020date\u0020or\u0020time'), validationFunctionForHex: $.validator.format('Please\u0020enter\u0020a\u0020valid\u0020HEX\u0020input'), validationFunctionForMd5: $.validator.format('This\u0020column\u0020can\u0020not\u0020contain\u0020a\u002032\u0020chars\u0020value'), validationFunctionForAesDesEncrypt: $.validator.format('These\u0020functions\u0020are\u0020meant\u0020to\u0020return\u0020a\u0020binary\u0020result\u003B\u0020to\u0020avoid\u0020inconsistent\u0020results\u0020you\u0020should\u0020store\u0020it\u0020in\u0020a\u0020BINARY,\u0020VARBINARY,\u0020or\u0020BLOB\u0020column.') }); } ConsoleEnterExecutes=false AJAX.scriptHandler .add('vendor/jquery/jquery.min.js', 0) .add('vendor/jquery/jquery-migrate.js', 0) .add('vendor/sprintf.js', 1) .add('ajax.js', 0) .add('keyhandler.js', 1) .add('vendor/jquery/jquery-ui.min.js', 0) .add('name-conflict-fixes.js', 1) .add('vendor/bootstrap/bootstrap.bundle.min.js', 1) .add('vendor/js.cookie.js', 1) .add('vendor/jquery/jquery.validate.js', 0) .add('vendor/jquery/jquery-ui-timepicker-addon.js', 0) .add('vendor/jquery/jquery.debounce-1.0.6.js', 0) .add('menu_resizer.js', 1) .add('cross_framing_protection.js', 0) .add('messages.php', 0) .add('config.js', 1) .add('doclinks.js', 1) .add('functions.js', 1) .add('navigation.js', 1) .add('indexes.js', 1) .add('common.js', 1) .add('page_settings.js', 1) .add('home.js', 1) .add('vendor/codemirror/lib/codemirror.js', 0) .add('vendor/codemirror/mode/sql/sql.js', 0) .add('vendor/codemirror/addon/runmode/runmode.js', 0) .add('vendor/codemirror/addon/hint/show-hint.js', 0) .add('vendor/codemirror/addon/hint/sql-hint.js', 0) .add('vendor/codemirror/addon/lint/lint.js', 0) .add('codemirror/addon/lint/sql-lint.js', 0) .add('vendor/tracekit.js', 1) .add('error_report.js', 1) .add('drag_drop_import.js', 1) .add('shortcuts_handler.js', 1) .add('console.js', 1) ; $(function() { AJAX.fireOnload('vendor/sprintf.js'); AJAX.fireOnload('keyhandler.js'); AJAX.fireOnload('name-conflict-fixes.js'); AJAX.fireOnload('vendor/bootstrap/bootstrap.bundle.min.js'); AJAX.fireOnload('vendor/js.cookie.js'); AJAX.fireOnload('menu_resizer.js'); AJAX.fireOnload('config.js'); AJAX.fireOnload('doclinks.js'); AJAX.fireOnload('functions.js'); AJAX.fireOnload('navigation.js'); AJAX.fireOnload('indexes.js'); AJAX.fireOnload('common.js'); AJAX.fireOnload('page_settings.js'); AJAX.fireOnload('home.js'); AJAX.fireOnload('vendor/tracekit.js'); AJAX.fireOnload('error_report.js'); AJAX.fireOnload('drag_drop_import.js'); AJAX.fireOnload('shortcuts_handler.js'); AJAX.fireOnload('console.js'); }); // ]]> </script> <noscript><style>html{display:block}</style></noscript> </head> <body> <div id="pma_navigation" class="d-print-none" data-config-navigation-width="0"> <div id="pma_navigation_resizer"></div> <div id="pma_navigation_collapser"></div> <div id="pma_navigation_content"> <div id="pma_navigation_header"> <div id="pmalogo"> <a href="index.php?lang=en"> <img id="imgpmalogo" src="./themes/pmahomme/img/logo_left.png" alt="phpMyAdmin"> </a> </div> <div id="navipanellinks"> <a href="index.php?route=/&lang=en" title="Home"><img src="themes/dot.gif" title="Home" alt="Home" class="icon ic_b_home"></a> <a class="logout disableAjax" href="index.php?route=/logout&lang=en" title="Empty session data"><img src="themes/dot.gif" title="Empty session data" alt="Empty session data" class="icon ic_s_loggoff"></a> <a href="./doc/html/index.html" title="phpMyAdmin documentation" target="_blank" rel="noopener noreferrer"><img src="themes/dot.gif" title="phpMyAdmin documentation" alt="phpMyAdmin documentation" class="icon ic_b_docs"></a> <a href="./url.php?url=https%3A%2F%2Fmariadb.com%2Fkb%2Fen%2Fdocumentation%2F" title="MariaDB Documentation" target="_blank" rel="noopener noreferrer"><img src="themes/dot.gif" title="MariaDB Documentation" alt="MariaDB Documentation" class="icon ic_b_sqlhelp"></a> <a id="pma_navigation_settings_icon" href="#" title="Navigation panel settings"><img src="themes/dot.gif" title="Navigation panel settings" alt="Navigation panel settings" class="icon ic_s_cog"></a> <a id="pma_navigation_reload" href="#" title="Reload navigation panel"><img src="themes/dot.gif" title="Reload navigation panel" alt="Reload navigation panel" class="icon ic_s_reload"></a> </div> <img src="themes/dot.gif" title="Loading…" alt="Loading…" style="visibility: hidden; display:none" class="icon ic_ajax_clock_small throbber"> </div> <div id="pma_navigation_tree" class="list_container synced highlight autoexpand"> <div class="pma_quick_warp"> <div class="drop_list"><button title="Recent tables" class="drop_button btn">Recent</button><ul id="pma_recent_list"><li class="warp_link"> <a href="index.php?route=/table/recent-favorite&db=scan&table=wp_users&lang=en"> `scan`.`wp_users` </a> </li> <li class="warp_link"> <a href="index.php?route=/table/recent-favorite&db=attack&table=wp_users&lang=en"> `attack`.`wp_users` </a> </li> <li class="warp_link"> <a href="index.php?route=/table/recent-favorite&db=test&table=wp_users&lang=en"> `test`.`wp_users` </a> </li> </ul></div> <div class="drop_list"><button title="Favorite tables" class="drop_button btn">Favorites</button><ul id="pma_favorite_list"><li class="warp_link"> There are no favorite tables. </li> </ul></div> <div class="clearfloat"></div> </div> <div class="clearfloat"></div> <ul> <!-- CONTROLS START --> <li id="navigation_controls_outer"> <div id="navigation_controls"> <a href="#" id="pma_navigation_collapse" title="Collapse all"><img src="themes/dot.gif" title="Collapse all" alt="Collapse all" class="icon ic_s_collapseall"></a> <a href="#" id="pma_navigation_sync" title="Unlink from main panel"><img src="themes/dot.gif" title="Unlink from main panel" alt="Unlink from main panel" class="icon ic_s_link"></a> </div> </li> <!-- CONTROLS ENDS --> </ul> <div id='pma_navigation_tree_content'> <ul> <li class="first new_database italics"> <div class="block"> <i class="first"></i> </div> <div class="block second"> <a href="index.php?route=/server/databases&lang=en"><img src="themes/dot.gif" title="New" alt="New" class="icon ic_b_newdb"></a> </div> <a class="hover_show_full" href="index.php?route=/server/databases&lang=en" title="New">New</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.YXR0YWNr" data-vpath="cm9vdA==.YXR0YWNr" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=attack&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=attack&lang=en" title="Structure">attack</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.aW5mb3JtYXRpb25fc2NoZW1h" data-vpath="cm9vdA==.aW5mb3JtYXRpb25fc2NoZW1h" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=information_schema&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=information_schema&lang=en" title="Structure">information_schema</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.bXlzcWw=" data-vpath="cm9vdA==.bXlzcWw=" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=mysql&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=mysql&lang=en" title="Structure">mysql</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.cGVyZm9ybWFuY2Vfc2NoZW1h" data-vpath="cm9vdA==.cGVyZm9ybWFuY2Vfc2NoZW1h" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=performance_schema&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=performance_schema&lang=en" title="Structure">performance_schema</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.cGhwbXlhZG1pbg==" data-vpath="cm9vdA==.cGhwbXlhZG1pbg==" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=phpmyadmin&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=phpmyadmin&lang=en" title="Structure">phpmyadmin</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.c2Nhbg==" data-vpath="cm9vdA==.c2Nhbg==" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=scan&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=scan&lang=en" title="Structure">scan</a> <div class="clearfloat"></div> </li> <li class="last database"> <div class="block"> <i></i> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.dGVzdA==" data-vpath="cm9vdA==.dGVzdA==" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=test&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=test&lang=en" title="Structure">test</a> <div class="clearfloat"></div> </li> </ul> </div> </div> <div id="pma_navi_settings_container"> <div id="pma_navigation_settings"><div class="page_settings"><form method="post" action="index.php?route=%2F&server=1&lang=en" class="config-form disableAjax"> <input type="hidden" name="tab_hash" value=""> <input type="hidden" name="check_page_refresh" id="check_page_refresh" value=""> <input type="hidden" name="lang" value="en"><input type="hidden" name="token" value="68796d444825575e6d2d604f364a4658"> <input type="hidden" name="submit_save" value="Navi"> <ul class="nav nav-tabs" id="configFormDisplayTab" role="tablist"> <li class="nav-item" role="presentation"> <a class="nav-link active" id="Navi_panel-tab" href="#Navi_panel" data-bs-toggle="tab" role="tab" aria-controls="Navi_panel" aria-selected="true">Navigation panel</a> </li> <li class="nav-item" role="presentation"> <a class="nav-link" id="Navi_tree-tab" href="#Navi_tree" data-bs-toggle="tab" role="tab" aria-controls="Navi_tree" aria-selected="false">Navigation tree</a> </li> <li class="nav-item" role="presentation"> <a class="nav-link" id="Navi_servers-tab" href="#Navi_servers" data-bs-toggle="tab" role="tab" aria-controls="Navi_servers" aria-selected="false">Servers</a> </li> <li class="nav-item" role="presentation"> <a class="nav-link" id="Navi_databases-tab" href="#Navi_databases" data-bs-toggle="tab" role="tab" aria-controls="Navi_databases" aria-selected="false">Databases</a> </li> <li class="nav-item" role="presentation"> <a class="nav-link" id="Navi_tables-tab" href="#Navi_tables" data-bs-toggle="tab" role="tab" aria-controls="Navi_tables" aria-selected="false">Tables</a> </li> </ul> <div class="tab-content"> <div class="tab-pane fade show active" id="Navi_panel" role="tabpanel" aria-labelledby="Navi_panel-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Navigation panel</h5> <h6 class="card-subtitle mb-2 text-muted">Customize appearance of the navigation panel.</h6> <fieldset class="optbox"> <legend>Navigation panel</legend> <table class="table table-borderless"> <tr> <th> <label for="ShowDatabasesNavigationAsTree">Show databases navigation as tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_ShowDatabasesNavigationAsTree" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>In the navigation panel, replaces the database tree with a selector</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="ShowDatabasesNavigationAsTree" id="ShowDatabasesNavigationAsTree" checked> </span> <a class="restore-default hide" href="#ShowDatabasesNavigationAsTree" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationLinkWithMainPanel">Link with main panel</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationLinkWithMainPanel" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Link with main panel by highlighting the current database or table.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationLinkWithMainPanel" id="NavigationLinkWithMainPanel" checked> </span> <a class="restore-default hide" href="#NavigationLinkWithMainPanel" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationDisplayLogo">Display logo</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationDisplayLogo" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Show logo in navigation panel.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationDisplayLogo" id="NavigationDisplayLogo" checked> </span> <a class="restore-default hide" href="#NavigationDisplayLogo" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationLogoLink">Logo link URL</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationLogoLink" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>URL where logo in the navigation panel will point to.</small> </th> <td> <input type="text" name="NavigationLogoLink" id="NavigationLogoLink" value="index.php" class="w-75"> <a class="restore-default hide" href="#NavigationLogoLink" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationLogoLinkWindow">Logo link target</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationLogoLinkWindow" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Open the linked page in the main window (<code>main</code>) or in a new one (<code>new</code>).</small> </th> <td> <select name="NavigationLogoLinkWindow" id="NavigationLogoLinkWindow" class="w-75"> <option value="main" selected>main</option> <option value="new">new</option> </select> <a class="restore-default hide" href="#NavigationLogoLinkWindow" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreePointerEnable">Enable highlighting</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreePointerEnable" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Highlight server under the mouse cursor.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreePointerEnable" id="NavigationTreePointerEnable" checked> </span> <a class="restore-default hide" href="#NavigationTreePointerEnable" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="FirstLevelNavigationItems">Maximum items on first level</label> <span class="doc"> <a href="./doc/html/config.html#cfg_FirstLevelNavigationItems" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>The number of items that can be displayed on each page on the first level of the navigation tree.</small> </th> <td> <input type="number" name="FirstLevelNavigationItems" id="FirstLevelNavigationItems" value="100" class=""> <a class="restore-default hide" href="#FirstLevelNavigationItems" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeDisplayItemFilterMinimum">Minimum number of items to display the filter box</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDisplayItemFilterMinimum" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Defines the minimum number of items (tables, views, routines and events) to display a filter box.</small> </th> <td> <input type="number" name="NavigationTreeDisplayItemFilterMinimum" id="NavigationTreeDisplayItemFilterMinimum" value="30" class=""> <a class="restore-default hide" href="#NavigationTreeDisplayItemFilterMinimum" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NumRecentTables">Recently used tables</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NumRecentTables" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Maximum number of recently used tables; set 0 to disable.</small> </th> <td> <input type="number" name="NumRecentTables" id="NumRecentTables" value="10" class=""> <a class="restore-default hide" href="#NumRecentTables" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NumFavoriteTables">Favorite tables</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NumFavoriteTables" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Maximum number of favorite tables; set 0 to disable.</small> </th> <td> <input type="number" name="NumFavoriteTables" id="NumFavoriteTables" value="10" class=""> <a class="restore-default hide" href="#NumFavoriteTables" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationWidth">Navigation panel width</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationWidth" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Set to 0 to collapse navigation panel.</small> </th> <td> <input type="number" name="NavigationWidth" id="NavigationWidth" value="0" class="custom"> <a class="restore-default hide" href="#NavigationWidth" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> <div class="tab-pane fade" id="Navi_tree" role="tabpanel" aria-labelledby="Navi_tree-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Navigation tree</h5> <h6 class="card-subtitle mb-2 text-muted">Customize the navigation tree.</h6> <fieldset class="optbox"> <legend>Navigation tree</legend> <table class="table table-borderless"> <tr> <th> <label for="MaxNavigationItems">Maximum items in branch</label> <span class="doc"> <a href="./doc/html/config.html#cfg_MaxNavigationItems" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>The number of items that can be displayed on each page of the navigation tree.</small> </th> <td> <input type="number" name="MaxNavigationItems" id="MaxNavigationItems" value="50" class=""> <a class="restore-default hide" href="#MaxNavigationItems" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeEnableGrouping">Group items in the tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeEnableGrouping" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Group items in the navigation tree (determined by the separator defined in the Databases and Tables tabs above).</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeEnableGrouping" id="NavigationTreeEnableGrouping" checked> </span> <a class="restore-default hide" href="#NavigationTreeEnableGrouping" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeEnableExpansion">Enable navigation tree expansion</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeEnableExpansion" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to offer the possibility of tree expansion in the navigation panel.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeEnableExpansion" id="NavigationTreeEnableExpansion" checked> </span> <a class="restore-default hide" href="#NavigationTreeEnableExpansion" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowTables">Show tables in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowTables" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show tables under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowTables" id="NavigationTreeShowTables" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowTables" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowViews">Show views in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowViews" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show views under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowViews" id="NavigationTreeShowViews" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowViews" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowFunctions">Show functions in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowFunctions" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show functions under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowFunctions" id="NavigationTreeShowFunctions" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowFunctions" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowProcedures">Show procedures in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowProcedures" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show procedures under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowProcedures" id="NavigationTreeShowProcedures" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowProcedures" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowEvents">Show events in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowEvents" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show events under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowEvents" id="NavigationTreeShowEvents" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowEvents" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeAutoexpandSingleDb">Expand single database</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeAutoexpandSingleDb" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to expand single database in the navigation tree automatically.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeAutoexpandSingleDb" id="NavigationTreeAutoexpandSingleDb" checked> </span> <a class="restore-default hide" href="#NavigationTreeAutoexpandSingleDb" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> <div class="tab-pane fade" id="Navi_servers" role="tabpanel" aria-labelledby="Navi_servers-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Servers</h5> <h6 class="card-subtitle mb-2 text-muted">Servers display options.</h6> <fieldset class="optbox"> <legend>Servers</legend> <table class="table table-borderless"> <tr> <th> <label for="NavigationDisplayServers">Display servers selection</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationDisplayServers" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Display server choice at the top of the navigation panel.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationDisplayServers" id="NavigationDisplayServers" checked> </span> <a class="restore-default hide" href="#NavigationDisplayServers" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="DisplayServersList">Display servers as a list</label> <span class="doc"> <a href="./doc/html/config.html#cfg_DisplayServersList" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Show server listing as a list instead of a drop down.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="DisplayServersList" id="DisplayServersList"> </span> <a class="restore-default hide" href="#DisplayServersList" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> <div class="tab-pane fade" id="Navi_databases" role="tabpanel" aria-labelledby="Navi_databases-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Databases</h5> <h6 class="card-subtitle mb-2 text-muted">Databases display options.</h6> <fieldset class="optbox"> <legend>Databases</legend> <table class="table table-borderless"> <tr> <th> <label for="NavigationTreeDisplayDbFilterMinimum">Minimum number of databases to display the database filter box</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDisplayDbFilterMinimum" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> </th> <td> <input type="number" name="NavigationTreeDisplayDbFilterMinimum" id="NavigationTreeDisplayDbFilterMinimum" value="30" class=""> <a class="restore-default hide" href="#NavigationTreeDisplayDbFilterMinimum" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeDbSeparator">Database tree separator</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDbSeparator" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>String that separates databases into different tree levels.</small> </th> <td> <input type="text" size="25" name="NavigationTreeDbSeparator" id="NavigationTreeDbSeparator" value="_" class=""> <a class="restore-default hide" href="#NavigationTreeDbSeparator" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> <div class="tab-pane fade" id="Navi_tables" role="tabpanel" aria-labelledby="Navi_tables-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Tables</h5> <h6 class="card-subtitle mb-2 text-muted">Tables display options.</h6> <fieldset class="optbox"> <legend>Tables</legend> <table class="table table-borderless"> <tr> <th> <label for="NavigationTreeDefaultTabTable">Target for quick access icon</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDefaultTabTable" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> </th> <td> <select name="NavigationTreeDefaultTabTable" id="NavigationTreeDefaultTabTable" class="w-75"> <option value="structure" selected>Structure</option> <option value="sql">SQL</option> <option value="search">Search</option> <option value="insert">Insert</option> <option value="browse">Browse</option> </select> <a class="restore-default hide" href="#NavigationTreeDefaultTabTable" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeDefaultTabTable2">Target for second quick access icon</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDefaultTabTable2" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> </th> <td> <select name="NavigationTreeDefaultTabTable2" id="NavigationTreeDefaultTabTable2" class="w-75"> <option value="" selected></option> <option value="structure">Structure</option> <option value="sql">SQL</option> <option value="search">Search</option> <option value="insert">Insert</option> <option value="browse">Browse</option> </select> <a class="restore-default hide" href="#NavigationTreeDefaultTabTable2" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeTableSeparator">Table tree separator</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeTableSeparator" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>String that separates tables into different tree levels.</small> </th> <td> <input type="text" size="25" name="NavigationTreeTableSeparator" id="NavigationTreeTableSeparator" value="__" class=""> <a class="restore-default hide" href="#NavigationTreeTableSeparator" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeTableLevel">Maximum table tree depth</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeTableLevel" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> </th> <td> <input type="number" name="NavigationTreeTableLevel" id="NavigationTreeTableLevel" value="1" class=""> <a class="restore-default hide" href="#NavigationTreeTableLevel" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> </div> </form> <script type="text/javascript"> if (typeof configInlineParams === 'undefined' || !Array.isArray(configInlineParams)) { configInlineParams = []; } configInlineParams.push(function () { registerFieldValidator('FirstLevelNavigationItems', 'validatePositiveNumber', true); registerFieldValidator('NavigationTreeDisplayItemFilterMinimum', 'validatePositiveNumber', true); registerFieldValidator('NumRecentTables', 'validateNonNegativeNumber', true); registerFieldValidator('NumFavoriteTables', 'validateNonNegativeNumber', true); registerFieldValidator('NavigationWidth', 'validateNonNegativeNumber', true); registerFieldValidator('MaxNavigationItems', 'validatePositiveNumber', true); registerFieldValidator('NavigationTreeTableLevel', 'validatePositiveNumber', true); $.extend(Messages, { 'error_nan_p': 'Not\u0020a\u0020positive\u0020number\u0021', 'error_nan_nneg': 'Not\u0020a\u0020non\u002Dnegative\u0020number\u0021', 'error_incorrect_port': 'Not\u0020a\u0020valid\u0020port\u0020number\u0021', 'error_invalid_value': 'Incorrect\u0020value\u0021', 'error_value_lte': 'Value\u0020must\u0020be\u0020less\u0020than\u0020or\u0020equal\u0020to\u0020\u0025s\u0021', }); $.extend(defaultValues, { 'ShowDatabasesNavigationAsTree': true, 'NavigationLinkWithMainPanel': true, 'NavigationDisplayLogo': true, 'NavigationLogoLink': 'index.php', 'NavigationLogoLinkWindow': ['main'], 'NavigationTreePointerEnable': true, 'FirstLevelNavigationItems': '100', 'NavigationTreeDisplayItemFilterMinimum': '30', 'NumRecentTables': '10', 'NumFavoriteTables': '10', 'NavigationWidth': '240', 'MaxNavigationItems': '50', 'NavigationTreeEnableGrouping': true, 'NavigationTreeEnableExpansion': true, 'NavigationTreeShowTables': true, 'NavigationTreeShowViews': true, 'NavigationTreeShowFunctions': true, 'NavigationTreeShowProcedures': true, 'NavigationTreeShowEvents': true, 'NavigationTreeAutoexpandSingleDb': true, 'NavigationDisplayServers': true, 'DisplayServersList': false, 'NavigationTreeDisplayDbFilterMinimum': '30', 'NavigationTreeDbSeparator': '_', 'NavigationTreeDefaultTabTable': ['structure'], 'NavigationTreeDefaultTabTable2': [''], 'NavigationTreeTableSeparator': '__', 'NavigationTreeTableLevel': '1' }); }); if (typeof configScriptLoaded !== 'undefined' && configInlineParams) { loadInlineConfig(); } </script> </div></div> </div> </div> <div class="pma_drop_handler"> Drop files here </div> <div class="pma_sql_import_status"> <h2> SQL upload ( <span class="pma_import_count">0</span> ) <span class="close">x</span> <span class="minimize">-</span> </h2> <div></div> </div> </div> <div class="modal fade" id="unhideNavItemModal" tabindex="-1" aria-labelledby="unhideNavItemModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="unhideNavItemModalLabel">Show hidden navigation tree items.</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"></div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> </div> </div> </div> </div> <noscript> <div class="alert alert-danger" role="alert"> <img src="themes/dot.gif" title="" alt="" class="icon ic_s_error"> Javascript must be enabled past this point! </div> </noscript> <div id="floating_menubar" class="d-print-none"></div> <nav id="server-breadcrumb" aria-label="breadcrumb"> <ol class="breadcrumb breadcrumb-navbar"> <li class="breadcrumb-item"> <img src="themes/dot.gif" title="" alt="" class="icon ic_s_host"> <a href="index.php?route=/&lang=en" data-raw-text="localhost" draggable="false"> Server: localhost </a> </li> </ol> </nav> <div id="topmenucontainer" class="menucontainer"> <nav class="navbar navbar-expand-lg navbar-light bg-light"> <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-label="Toggle navigation" aria-controls="navbarNav" aria-expanded="false"> <span class="navbar-toggler-icon"></span> </button> <div class="collapse navbar-collapse" id="navbarNav"> <ul id="topmenu" class="navbar-nav"> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/databases&lang=en"> <img src="themes/dot.gif" title="Databases" alt="Databases" class="icon ic_s_db"> Databases </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/sql&lang=en"> <img src="themes/dot.gif" title="SQL" alt="SQL" class="icon ic_b_sql"> SQL </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/status&lang=en"> <img src="themes/dot.gif" title="Status" alt="Status" class="icon ic_s_status"> Status </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/privileges&viewing_mode=server&lang=en"> <img src="themes/dot.gif" title="User accounts" alt="User accounts" class="icon ic_s_rights"> User accounts </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/export&lang=en"> <img src="themes/dot.gif" title="Export" alt="Export" class="icon ic_b_export"> Export </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/import&lang=en"> <img src="themes/dot.gif" title="Import" alt="Import" class="icon ic_b_import"> Import </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/preferences/manage&lang=en"> <img src="themes/dot.gif" title="Settings" alt="Settings" class="icon ic_b_tblops"> Settings </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/replication&lang=en"> <img src="themes/dot.gif" title="Replication" alt="Replication" class="icon ic_s_replication"> Replication </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/variables&lang=en"> <img src="themes/dot.gif" title="Variables" alt="Variables" class="icon ic_s_vars"> Variables </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/collations&lang=en"> <img src="themes/dot.gif" title="Charsets" alt="Charsets" class="icon ic_s_asci"> Charsets </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/engines&lang=en"> <img src="themes/dot.gif" title="Engines" alt="Engines" class="icon ic_b_engine"> Engines </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/plugins&lang=en"> <img src="themes/dot.gif" title="Plugins" alt="Plugins" class="icon ic_b_plugin"> Plugins </a> </li> </ul> </div> </nav> </div> <span id="page_nav_icons" class="d-print-none"> <span id="lock_page_icon"></span> <span id="page_settings_icon"> <img src="themes/dot.gif" title="Page-related settings" alt="Page-related settings" class="icon ic_s_cog"> </span> <a id="goto_pagetop" href="#"><img src="themes/dot.gif" title="Click on the bar to scroll to top of page" alt="Click on the bar to scroll to top of page" class="icon ic_s_top"></a> </span> <div id="pma_console_container" class="d-print-none"> <div id="pma_console"> <div class="toolbar collapsed"> <div class="switch_button console_switch"> <img src="themes/dot.gif" title="SQL Query Console" alt="SQL Query Console" class="icon ic_console"> <span>Console</span> </div> <div class="button clear"> <span>Clear</span> </div> <div class="button history"> <span>History</span> </div> <div class="button options"> <span>Options</span> </div> <div class="button bookmarks"> <span>Bookmarks</span> </div> <div class="button debug hide"> <span>Debug SQL</span> </div> </div> <div class="content"> <div class="console_message_container"> <div class="message welcome"> <span id="instructions-0"> Press Ctrl+Enter to execute query </span> <span class="hide" id="instructions-1"> Press Enter to execute query </span> </div> </div><!-- console_message_container --> <div class="query_input"> <span class="console_query_input"></span> </div> </div><!-- message end --> <div class="mid_layer"></div> <div class="card" id="debug_console"> <div class="toolbar "> <div class="button order order_asc"> <span>ascending</span> </div> <div class="button order order_desc"> <span>descending</span> </div> <div class="text"> <span>Order:</span> </div> <div class="switch_button"> <span>Debug SQL</span> </div> <div class="button order_by sort_count"> <span>Count</span> </div> <div class="button order_by sort_exec"> <span>Execution order</span> </div> <div class="button order_by sort_time"> <span>Time taken</span> </div> <div class="text"> <span>Order by:</span> </div> <div class="button group_queries"> <span>Group queries</span> </div> <div class="button ungroup_queries"> <span>Ungroup queries</span> </div> </div> <div class="content debug"> <div class="message welcome"></div> <div class="debugLog"></div> </div> <!-- Content --> <div class="templates"> <div class="debug_query action_content"> <span class="action collapse"> Collapse </span> <span class="action expand"> Expand </span> <span class="action dbg_show_trace"> Show trace </span> <span class="action dbg_hide_trace"> Hide trace </span> <span class="text count hide"> Count </span> <span class="text time"> Time taken </span> </div> </div> <!-- Template --> </div> <!-- Debug SQL card --> <div class="card" id="pma_bookmarks"> <div class="toolbar "> <div class="switch_button"> <span>Bookmarks</span> </div> <div class="button refresh"> <span>Refresh</span> </div> <div class="button add"> <span>Add</span> </div> </div> <div class="content bookmark"> <div class="message welcome"> <span>No bookmarks</span> </div> </div> <div class="mid_layer"></div> <div class="card add"> <div class="toolbar "> <div class="switch_button"> <span>Add bookmark</span> </div> </div> <div class="content add_bookmark"> <div class="options"> <label> Label: <input type="text" name="label"> </label> <label> Target database: <input type="text" name="targetdb"> </label> <label> <input type="checkbox" name="shared">Share this bookmark </label> <button class="btn btn-primary" type="submit" name="submit">OK</button> </div> <!-- options --> <div class="query_input"> <span class="bookmark_add_input"></span> </div> </div> </div> <!-- Add bookmark card --> </div> <!-- Bookmarks card --> <div class="card" id="pma_console_options"> <div class="toolbar "> <div class="switch_button"> <span>Options</span> </div> <div class="button default"> <span>Set default</span> </div> </div> <div class="content"> <label> <input type="checkbox" name="always_expand">Always expand query messages </label> <br> <label> <input type="checkbox" name="start_history">Show query history at start </label> <br> <label> <input type="checkbox" name="current_query">Show current browsing query </label> <br> <label> <input type="checkbox" name="enter_executes"> Execute queries on Enter and insert new line with Shift+Enter. To make this permanent, view settings. </label> <br> <label> <input type="checkbox" name="dark_theme">Switch to dark theme </label> <br> </div> </div> <!-- Options card --> <div class="templates"> <div class="query_actions"> <span class="action collapse"> Collapse </span> <span class="action expand"> Expand </span> <span class="action requery"> Requery </span> <span class="action edit"> Edit </span> <span class="action explain"> Explain </span> <span class="action profiling"> Profiling </span> <span class="action bookmark"> Bookmark </span> <span class="text failed"> Query failed </span> <span class="text targetdb"> Database : <span></span> </span> <span class="text query_time"> Queried time : <span></span> </span> </div> </div> </div> <!-- #console end --> </div> <!-- #console_container end --> <div id="page_content"> <div class="modal fade" id="previewSqlModal" tabindex="-1" aria-labelledby="previewSqlModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="previewSqlModalLabel">Loading</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"></div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> </div> </div> </div> </div> <div class="modal fade" id="enumEditorModal" tabindex="-1" aria-labelledby="enumEditorModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="enumEditorModalLabel">ENUM/SET editor</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"></div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" id="enumEditorGoButton" data-bs-dismiss="modal">Go</button> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> </div> </div> </div> </div> <div class="modal fade" id="createViewModal" tabindex="-1" aria-labelledby="createViewModalLabel" aria-hidden="true"> <div class="modal-dialog modal-lg" id="createViewModalDialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="createViewModalLabel">Create view</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"></div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" id="createViewModalGoButton">Go</button> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> </div> </div> </div> </div> <div id="maincontainer"> <a class="hide" id="sync_favorite_tables" href="index.php?route=/database/structure/favorite-table&ajax_request=1&favorite_table=1&sync_favorite_tables=1&lang=en"></a> <div class="container-fluid"> <div class="row"> <div class="col-lg-7 col-12"> <div class="card mt-4"> <div class="card-header"> General settings </div> <ul class="list-group list-group-flush"> <li id="li_select_mysql_collation" class="list-group-item"> <form method="post" action="index.php?route=/collation-connection&lang=en" class="row row-cols-lg-auto align-items-center disableAjax"> <input type="hidden" name="lang" value="en"><input type="hidden" name="token" value="68796d444825575e6d2d604f364a4658"> <div class="col-12"> <label for="collationConnectionSelect" class="col-form-label"> <img src="themes/dot.gif" title="" alt="" class="icon ic_s_asci"> Server connection collation: <a href="./url.php?url=https%3A%2F%2Fdev.mysql.com%2Fdoc%2Frefman%2F8.0%2Fen%2Fcharset-connection.html" target="mysql_doc"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </label> </div> <div class="col-12"> <select lang="en" dir="ltr" name="collation_connection" id="collationConnectionSelect" class="form-select autosubmit"> <option value="">Collation</option> <option value=""></option> <optgroup label="armscii8" title="ARMSCII-8 Armenian"> <option value="armscii8_bin" title="Armenian, binary">armscii8_bin</option> <option value="armscii8_general_ci" title="Armenian, case-insensitive">armscii8_general_ci</option> <option value="armscii8_general_nopad_ci" title="Armenian, no-pad, case-insensitive">armscii8_general_nopad_ci</option> <option value="armscii8_nopad_bin" title="Armenian, no-pad, binary">armscii8_nopad_bin</option> </optgroup> <optgroup label="ascii" title="US ASCII"> <option value="ascii_bin" title="West European, binary">ascii_bin</option> <option value="ascii_general_ci" title="West European, case-insensitive">ascii_general_ci</option> <option value="ascii_general_nopad_ci" title="West European, no-pad, case-insensitive">ascii_general_nopad_ci</option> <option value="ascii_nopad_bin" title="West European, no-pad, binary">ascii_nopad_bin</option> </optgroup> <optgroup label="big5" title="Big5 Traditional Chinese"> <option value="big5_bin" title="Traditional Chinese, binary">big5_bin</option> <option value="big5_chinese_ci" title="Traditional Chinese, case-insensitive">big5_chinese_ci</option> <option value="big5_chinese_nopad_ci" title="Traditional Chinese, no-pad, case-insensitive">big5_chinese_nopad_ci</option> <option value="big5_nopad_bin" title="Traditional Chinese, no-pad, binary">big5_nopad_bin</option> </optgroup> <optgroup label="binary" title="Binary pseudo charset"> <option value="binary" title="Binary">binary</option> </optgroup> <optgroup label="cp1250" title="Windows Central European"> <option value="cp1250_bin" title="Central European, binary">cp1250_bin</option> <option value="cp1250_croatian_ci" title="Croatian, case-insensitive">cp1250_croatian_ci</option> <option value="cp1250_czech_cs" title="Czech, case-sensitive">cp1250_czech_cs</option> <option value="cp1250_general_ci" title="Central European, case-insensitive">cp1250_general_ci</option> <option value="cp1250_general_nopad_ci" title="Central European, no-pad, case-insensitive">cp1250_general_nopad_ci</option> <option value="cp1250_nopad_bin" title="Central European, no-pad, binary">cp1250_nopad_bin</option> <option value="cp1250_polish_ci" title="Polish, case-insensitive">cp1250_polish_ci</option> </optgroup> <optgroup label="cp1251" title="Windows Cyrillic"> <option value="cp1251_bin" title="Cyrillic, binary">cp1251_bin</option> <option value="cp1251_bulgarian_ci" title="Bulgarian, case-insensitive">cp1251_bulgarian_ci</option> <option value="cp1251_general_ci" title="Cyrillic, case-insensitive">cp1251_general_ci</option> <option value="cp1251_general_cs" title="Cyrillic, case-sensitive">cp1251_general_cs</option> <option value="cp1251_general_nopad_ci" title="Cyrillic, no-pad, case-insensitive">cp1251_general_nopad_ci</option> <option value="cp1251_nopad_bin" title="Cyrillic, no-pad, binary">cp1251_nopad_bin</option> <option value="cp1251_ukrainian_ci" title="Ukrainian, case-insensitive">cp1251_ukrainian_ci</option> </optgroup> <optgroup label="cp1256" title="Windows Arabic"> <option value="cp1256_bin" title="Arabic, binary">cp1256_bin</option> <option value="cp1256_general_ci" title="Arabic, case-insensitive">cp1256_general_ci</option> <option value="cp1256_general_nopad_ci" title="Arabic, no-pad, case-insensitive">cp1256_general_nopad_ci</option> <option value="cp1256_nopad_bin" title="Arabic, no-pad, binary">cp1256_nopad_bin</option> </optgroup> <optgroup label="cp1257" title="Windows Baltic"> <option value="cp1257_bin" title="Baltic, binary">cp1257_bin</option> <option value="cp1257_general_ci" title="Baltic, case-insensitive">cp1257_general_ci</option> <option value="cp1257_general_nopad_ci" title="Baltic, no-pad, case-insensitive">cp1257_general_nopad_ci</option> <option value="cp1257_lithuanian_ci" title="Lithuanian, case-insensitive">cp1257_lithuanian_ci</option> <option value="cp1257_nopad_bin" title="Baltic, no-pad, binary">cp1257_nopad_bin</option> </optgroup> <optgroup label="cp850" title="DOS West European"> <option value="cp850_bin" title="West European, binary">cp850_bin</option> <option value="cp850_general_ci" title="West European, case-insensitive">cp850_general_ci</option> <option value="cp850_general_nopad_ci" title="West European, no-pad, case-insensitive">cp850_general_nopad_ci</option> <option value="cp850_nopad_bin" title="West European, no-pad, binary">cp850_nopad_bin</option> </optgroup> <optgroup label="cp852" title="DOS Central European"> <option value="cp852_bin" title="Central European, binary">cp852_bin</option> <option value="cp852_general_ci" title="Central European, case-insensitive">cp852_general_ci</option> <option value="cp852_general_nopad_ci" title="Central European, no-pad, case-insensitive">cp852_general_nopad_ci</option> <option value="cp852_nopad_bin" title="Central European, no-pad, binary">cp852_nopad_bin</option> </optgroup> <optgroup label="cp866" title="DOS Russian"> <option value="cp866_bin" title="Russian, binary">cp866_bin</option> <option value="cp866_general_ci" title="Russian, case-insensitive">cp866_general_ci</option> <option value="cp866_general_nopad_ci" title="Russian, no-pad, case-insensitive">cp866_general_nopad_ci</option> <option value="cp866_nopad_bin" title="Russian, no-pad, binary">cp866_nopad_bin</option> </optgroup> <optgroup label="cp932" title="SJIS for Windows Japanese"> <option value="cp932_bin" title="Japanese, binary">cp932_bin</option> <option value="cp932_japanese_ci" title="Japanese, case-insensitive">cp932_japanese_ci</option> <option value="cp932_japanese_nopad_ci" title="Japanese, no-pad, case-insensitive">cp932_japanese_nopad_ci</option> <option value="cp932_nopad_bin" title="Japanese, no-pad, binary">cp932_nopad_bin</option> </optgroup> <optgroup label="dec8" title="DEC West European"> <option value="dec8_bin" title="West European, binary">dec8_bin</option> <option value="dec8_nopad_bin" title="West European, no-pad, binary">dec8_nopad_bin</option> <option value="dec8_swedish_ci" title="Swedish, case-insensitive">dec8_swedish_ci</option> <option value="dec8_swedish_nopad_ci" title="Swedish, no-pad, case-insensitive">dec8_swedish_nopad_ci</option> </optgroup> <optgroup label="eucjpms" title="UJIS for Windows Japanese"> <option value="eucjpms_bin" title="Japanese, binary">eucjpms_bin</option> <option value="eucjpms_japanese_ci" title="Japanese, case-insensitive">eucjpms_japanese_ci</option> <option value="eucjpms_japanese_nopad_ci" title="Japanese, no-pad, case-insensitive">eucjpms_japanese_nopad_ci</option> <option value="eucjpms_nopad_bin" title="Japanese, no-pad, binary">eucjpms_nopad_bin</option> </optgroup> <optgroup label="euckr" title="EUC-KR Korean"> <option value="euckr_bin" title="Korean, binary">euckr_bin</option> <option value="euckr_korean_ci" title="Korean, case-insensitive">euckr_korean_ci</option> <option value="euckr_korean_nopad_ci" title="Korean, no-pad, case-insensitive">euckr_korean_nopad_ci</option> <option value="euckr_nopad_bin" title="Korean, no-pad, binary">euckr_nopad_bin</option> </optgroup> <optgroup label="gb2312" title="GB2312 Simplified Chinese"> <option value="gb2312_bin" title="Simplified Chinese, binary">gb2312_bin</option> <option value="gb2312_chinese_ci" title="Simplified Chinese, case-insensitive">gb2312_chinese_ci</option> <option value="gb2312_chinese_nopad_ci" title="Simplified Chinese, no-pad, case-insensitive">gb2312_chinese_nopad_ci</option> <option value="gb2312_nopad_bin" title="Simplified Chinese, no-pad, binary">gb2312_nopad_bin</option> </optgroup> <optgroup label="gbk" title="GBK Simplified Chinese"> <option value="gbk_bin" title="Simplified Chinese, binary">gbk_bin</option> <option value="gbk_chinese_ci" title="Simplified Chinese, case-insensitive">gbk_chinese_ci</option> <option value="gbk_chinese_nopad_ci" title="Simplified Chinese, no-pad, case-insensitive">gbk_chinese_nopad_ci</option> <option value="gbk_nopad_bin" title="Simplified Chinese, no-pad, binary">gbk_nopad_bin</option> </optgroup> <optgroup label="geostd8" title="GEOSTD8 Georgian"> <option value="geostd8_bin" title="Georgian, binary">geostd8_bin</option> <option value="geostd8_general_ci" title="Georgian, case-insensitive">geostd8_general_ci</option> <option value="geostd8_general_nopad_ci" title="Georgian, no-pad, case-insensitive">geostd8_general_nopad_ci</option> <option value="geostd8_nopad_bin" title="Georgian, no-pad, binary">geostd8_nopad_bin</option> </optgroup> <optgroup label="greek" title="ISO 8859-7 Greek"> <option value="greek_bin" title="Greek, binary">greek_bin</option> <option value="greek_general_ci" title="Greek, case-insensitive">greek_general_ci</option> <option value="greek_general_nopad_ci" title="Greek, no-pad, case-insensitive">greek_general_nopad_ci</option> <option value="greek_nopad_bin" title="Greek, no-pad, binary">greek_nopad_bin</option> </optgroup> <optgroup label="hebrew" title="ISO 8859-8 Hebrew"> <option value="hebrew_bin" title="Hebrew, binary">hebrew_bin</option> <option value="hebrew_general_ci" title="Hebrew, case-insensitive">hebrew_general_ci</option> <option value="hebrew_general_nopad_ci" title="Hebrew, no-pad, case-insensitive">hebrew_general_nopad_ci</option> <option value="hebrew_nopad_bin" title="Hebrew, no-pad, binary">hebrew_nopad_bin</option> </optgroup> <optgroup label="hp8" title="HP West European"> <option value="hp8_bin" title="West European, binary">hp8_bin</option> <option value="hp8_english_ci" title="English, case-insensitive">hp8_english_ci</option> <option value="hp8_english_nopad_ci" title="English, no-pad, case-insensitive">hp8_english_nopad_ci</option> <option value="hp8_nopad_bin" title="West European, no-pad, binary">hp8_nopad_bin</option> </optgroup> <optgroup label="keybcs2" title="DOS Kamenicky Czech-Slovak"> <option value="keybcs2_bin" title="Czech-Slovak, binary">keybcs2_bin</option> <option value="keybcs2_general_ci" title="Czech-Slovak, case-insensitive">keybcs2_general_ci</option> <option value="keybcs2_general_nopad_ci" title="Czech-Slovak, no-pad, case-insensitive">keybcs2_general_nopad_ci</option> <option value="keybcs2_nopad_bin" title="Czech-Slovak, no-pad, binary">keybcs2_nopad_bin</option> </optgroup> <optgroup label="koi8r" title="KOI8-R Relcom Russian"> <option value="koi8r_bin" title="Russian, binary">koi8r_bin</option> <option value="koi8r_general_ci" title="Russian, case-insensitive">koi8r_general_ci</option> <option value="koi8r_general_nopad_ci" title="Russian, no-pad, case-insensitive">koi8r_general_nopad_ci</option> <option value="koi8r_nopad_bin" title="Russian, no-pad, binary">koi8r_nopad_bin</option> </optgroup> <optgroup label="koi8u" title="KOI8-U Ukrainian"> <option value="koi8u_bin" title="Ukrainian, binary">koi8u_bin</option> <option value="koi8u_general_ci" title="Ukrainian, case-insensitive">koi8u_general_ci</option> <option value="koi8u_general_nopad_ci" title="Ukrainian, no-pad, case-insensitive">koi8u_general_nopad_ci</option> <option value="koi8u_nopad_bin" title="Ukrainian, no-pad, binary">koi8u_nopad_bin</option> </optgroup> <optgroup label="latin1" title="cp1252 West European"> <option value="latin1_bin" title="West European, binary">latin1_bin</option> <option value="latin1_danish_ci" title="Danish, case-insensitive">latin1_danish_ci</option> <option value="latin1_general_ci" title="West European, case-insensitive">latin1_general_ci</option> <option value="latin1_general_cs" title="West European, case-sensitive">latin1_general_cs</option> <option value="latin1_german1_ci" title="German (dictionary order), case-insensitive">latin1_german1_ci</option> <option value="latin1_german2_ci" title="German (phone book order), case-insensitive">latin1_german2_ci</option> <option value="latin1_nopad_bin" title="West European, no-pad, binary">latin1_nopad_bin</option> <option value="latin1_spanish_ci" title="Spanish (modern), case-insensitive">latin1_spanish_ci</option> <option value="latin1_swedish_ci" title="Swedish, case-insensitive">latin1_swedish_ci</option> <option value="latin1_swedish_nopad_ci" title="Swedish, no-pad, case-insensitive">latin1_swedish_nopad_ci</option> </optgroup> <optgroup label="latin2" title="ISO 8859-2 Central European"> <option value="latin2_bin" title="Central European, binary">latin2_bin</option> <option value="latin2_croatian_ci" title="Croatian, case-insensitive">latin2_croatian_ci</option> <option value="latin2_czech_cs" title="Czech, case-sensitive">latin2_czech_cs</option> <option value="latin2_general_ci" title="Central European, case-insensitive">latin2_general_ci</option> <option value="latin2_general_nopad_ci" title="Central European, no-pad, case-insensitive">latin2_general_nopad_ci</option> <option value="latin2_hungarian_ci" title="Hungarian, case-insensitive">latin2_hungarian_ci</option> <option value="latin2_nopad_bin" title="Central European, no-pad, binary">latin2_nopad_bin</option> </optgroup> <optgroup label="latin5" title="ISO 8859-9 Turkish"> <option value="latin5_bin" title="Turkish, binary">latin5_bin</option> <option value="latin5_nopad_bin" title="Turkish, no-pad, binary">latin5_nopad_bin</option> <option value="latin5_turkish_ci" title="Turkish, case-insensitive">latin5_turkish_ci</option> <option value="latin5_turkish_nopad_ci" title="Turkish, no-pad, case-insensitive">latin5_turkish_nopad_ci</option> </optgroup> <optgroup label="latin7" title="ISO 8859-13 Baltic"> <option value="latin7_bin" title="Baltic, binary">latin7_bin</option> <option value="latin7_estonian_cs" title="Estonian, case-sensitive">latin7_estonian_cs</option> <option value="latin7_general_ci" title="Baltic, case-insensitive">latin7_general_ci</option> <option value="latin7_general_cs" title="Baltic, case-sensitive">latin7_general_cs</option> <option value="latin7_general_nopad_ci" title="Baltic, no-pad, case-insensitive">latin7_general_nopad_ci</option> <option value="latin7_nopad_bin" title="Baltic, no-pad, binary">latin7_nopad_bin</option> </optgroup> <optgroup label="macce" title="Mac Central European"> <option value="macce_bin" title="Central European, binary">macce_bin</option> <option value="macce_general_ci" title="Central European, case-insensitive">macce_general_ci</option> <option value="macce_general_nopad_ci" title="Central European, no-pad, case-insensitive">macce_general_nopad_ci</option> <option value="macce_nopad_bin" title="Central European, no-pad, binary">macce_nopad_bin</option> </optgroup> <optgroup label="macroman" title="Mac West European"> <option value="macroman_bin" title="West European, binary">macroman_bin</option> <option value="macroman_general_ci" title="West European, case-insensitive">macroman_general_ci</option> <option value="macroman_general_nopad_ci" title="West European, no-pad, case-insensitive">macroman_general_nopad_ci</option> <option value="macroman_nopad_bin" title="West European, no-pad, binary">macroman_nopad_bin</option> </optgroup> <optgroup label="sjis" title="Shift-JIS Japanese"> <option value="sjis_bin" title="Japanese, binary">sjis_bin</option> <option value="sjis_japanese_ci" title="Japanese, case-insensitive">sjis_japanese_ci</option> <option value="sjis_japanese_nopad_ci" title="Japanese, no-pad, case-insensitive">sjis_japanese_nopad_ci</option> <option value="sjis_nopad_bin" title="Japanese, no-pad, binary">sjis_nopad_bin</option> </optgroup> <optgroup label="swe7" title="7bit Swedish"> <option value="swe7_bin" title="Swedish, binary">swe7_bin</option> <option value="swe7_nopad_bin" title="Swedish, no-pad, binary">swe7_nopad_bin</option> <option value="swe7_swedish_ci" title="Swedish, case-insensitive">swe7_swedish_ci</option> <option value="swe7_swedish_nopad_ci" title="Swedish, no-pad, case-insensitive">swe7_swedish_nopad_ci</option> </optgroup> <optgroup label="tis620" title="TIS620 Thai"> <option value="tis620_bin" title="Thai, binary">tis620_bin</option> <option value="tis620_nopad_bin" title="Thai, no-pad, binary">tis620_nopad_bin</option> <option value="tis620_thai_ci" title="Thai, case-insensitive">tis620_thai_ci</option> <option value="tis620_thai_nopad_ci" title="Thai, no-pad, case-insensitive">tis620_thai_nopad_ci</option> </optgroup> <optgroup label="ucs2" title="UCS-2 Unicode"> <option value="ucs2_bin" title="Unicode, binary">ucs2_bin</option> <option value="ucs2_croatian_ci" title="Croatian, case-insensitive">ucs2_croatian_ci</option> <option value="ucs2_croatian_mysql561_ci" title="Croatian (MySQL 5.6.1), case-insensitive">ucs2_croatian_mysql561_ci</option> <option value="ucs2_czech_ci" title="Czech, case-insensitive">ucs2_czech_ci</option> <option value="ucs2_danish_ci" title="Danish, case-insensitive">ucs2_danish_ci</option> <option value="ucs2_esperanto_ci" title="Esperanto, case-insensitive">ucs2_esperanto_ci</option> <option value="ucs2_estonian_ci" title="Estonian, case-insensitive">ucs2_estonian_ci</option> <option value="ucs2_general_ci" title="Unicode, case-insensitive">ucs2_general_ci</option> <option value="ucs2_general_mysql500_ci" title="Unicode (MySQL 5.0.0), case-insensitive">ucs2_general_mysql500_ci</option> <option value="ucs2_general_nopad_ci" title="Unicode, no-pad, case-insensitive">ucs2_general_nopad_ci</option> <option value="ucs2_german2_ci" title="German (phone book order), case-insensitive">ucs2_german2_ci</option> <option value="ucs2_hungarian_ci" title="Hungarian, case-insensitive">ucs2_hungarian_ci</option> <option value="ucs2_icelandic_ci" title="Icelandic, case-insensitive">ucs2_icelandic_ci</option> <option value="ucs2_latvian_ci" title="Latvian, case-insensitive">ucs2_latvian_ci</option> <option value="ucs2_lithuanian_ci" title="Lithuanian, case-insensitive">ucs2_lithuanian_ci</option> <option value="ucs2_myanmar_ci" title="Burmese, case-insensitive">ucs2_myanmar_ci</option> <option value="ucs2_nopad_bin" title="Unicode, no-pad, binary">ucs2_nopad_bin</option> <option value="ucs2_persian_ci" title="Persian, case-insensitive">ucs2_persian_ci</option> <option value="ucs2_polish_ci" title="Polish, case-insensitive">ucs2_polish_ci</option> <option value="ucs2_roman_ci" title="West European, case-insensitive">ucs2_roman_ci</option> <option value="ucs2_romanian_ci" title="Romanian, case-insensitive">ucs2_romanian_ci</option> <option value="ucs2_sinhala_ci" title="Sinhalese, case-insensitive">ucs2_sinhala_ci</option> <option value="ucs2_slovak_ci" title="Slovak, case-insensitive">ucs2_slovak_ci</option> <option value="ucs2_slovenian_ci" title="Slovenian, case-insensitive">ucs2_slovenian_ci</option> <option value="ucs2_spanish2_ci" title="Spanish (traditional), case-insensitive">ucs2_spanish2_ci</option> <option value="ucs2_spanish_ci" title="Spanish (modern), case-insensitive">ucs2_spanish_ci</option> <option value="ucs2_swedish_ci" title="Swedish, case-insensitive">ucs2_swedish_ci</option> <option value="ucs2_thai_520_w2" title="Thai (UCA 5.2.0), multi-level">ucs2_thai_520_w2</option> <option value="ucs2_turkish_ci" title="Turkish, case-insensitive">ucs2_turkish_ci</option> <option value="ucs2_unicode_520_ci" title="Unicode (UCA 5.2.0), case-insensitive">ucs2_unicode_520_ci</option> <option value="ucs2_unicode_520_nopad_ci" title="Unicode (UCA 5.2.0), no-pad, case-insensitive">ucs2_unicode_520_nopad_ci</option> <option value="ucs2_unicode_ci" title="Unicode, case-insensitive">ucs2_unicode_ci</option> <option value="ucs2_unicode_nopad_ci" title="Unicode, no-pad, case-insensitive">ucs2_unicode_nopad_ci</option> <option value="ucs2_vietnamese_ci" title="Vietnamese, case-insensitive">ucs2_vietnamese_ci</option> </optgroup> <optgroup label="ujis" title="EUC-JP Japanese"> <option value="ujis_bin" title="Japanese, binary">ujis_bin</option> <option value="ujis_japanese_ci" title="Japanese, case-insensitive">ujis_japanese_ci</option> <option value="ujis_japanese_nopad_ci" title="Japanese, no-pad, case-insensitive">ujis_japanese_nopad_ci</option> <option value="ujis_nopad_bin" title="Japanese, no-pad, binary">ujis_nopad_bin</option> </optgroup> <optgroup label="utf16" title="UTF-16 Unicode"> <option value="utf16_bin" title="Unicode, binary">utf16_bin</option> <option value="utf16_croatian_ci" title="Croatian, case-insensitive">utf16_croatian_ci</option> <option value="utf16_croatian_mysql561_ci" title="Croatian (MySQL 5.6.1), case-insensitive">utf16_croatian_mysql561_ci</option> <option value="utf16_czech_ci" title="Czech, case-insensitive">utf16_czech_ci</option> <option value="utf16_danish_ci" title="Danish, case-insensitive">utf16_danish_ci</option> <option value="utf16_esperanto_ci" title="Esperanto, case-insensitive">utf16_esperanto_ci</option> <option value="utf16_estonian_ci" title="Estonian, case-insensitive">utf16_estonian_ci</option> <option value="utf16_general_ci" title="Unicode, case-insensitive">utf16_general_ci</option> <option value="utf16_general_nopad_ci" title="Unicode, no-pad, case-insensitive">utf16_general_nopad_ci</option> <option value="utf16_german2_ci" title="German (phone book order), case-insensitive">utf16_german2_ci</option> <option value="utf16_hungarian_ci" title="Hungarian, case-insensitive">utf16_hungarian_ci</option> <option value="utf16_icelandic_ci" title="Icelandic, case-insensitive">utf16_icelandic_ci</option> <option value="utf16_latvian_ci" title="Latvian, case-insensitive">utf16_latvian_ci</option> <option value="utf16_lithuanian_ci" title="Lithuanian, case-insensitive">utf16_lithuanian_ci</option> <option value="utf16_myanmar_ci" title="Burmese, case-insensitive">utf16_myanmar_ci</option> <option value="utf16_nopad_bin" title="Unicode, no-pad, binary">utf16_nopad_bin</option> <option value="utf16_persian_ci" title="Persian, case-insensitive">utf16_persian_ci</option> <option value="utf16_polish_ci" title="Polish, case-insensitive">utf16_polish_ci</option> <option value="utf16_roman_ci" title="West European, case-insensitive">utf16_roman_ci</option> <option value="utf16_romanian_ci" title="Romanian, case-insensitive">utf16_romanian_ci</option> <option value="utf16_sinhala_ci" title="Sinhalese, case-insensitive">utf16_sinhala_ci</option> <option value="utf16_slovak_ci" title="Slovak, case-insensitive">utf16_slovak_ci</option> <option value="utf16_slovenian_ci" title="Slovenian, case-insensitive">utf16_slovenian_ci</option> <option value="utf16_spanish2_ci" title="Spanish (traditional), case-insensitive">utf16_spanish2_ci</option> <option value="utf16_spanish_ci" title="Spanish (modern), case-insensitive">utf16_spanish_ci</option> <option value="utf16_swedish_ci" title="Swedish, case-insensitive">utf16_swedish_ci</option> <option value="utf16_thai_520_w2" title="Thai (UCA 5.2.0), multi-level">utf16_thai_520_w2</option> <option value="utf16_turkish_ci" title="Turkish, case-insensitive">utf16_turkish_ci</option> <option value="utf16_unicode_520_ci" title="Unicode (UCA 5.2.0), case-insensitive">utf16_unicode_520_ci</option> <option value="utf16_unicode_520_nopad_ci" title="Unicode (UCA 5.2.0), no-pad, case-insensitive">utf16_unicode_520_nopad_ci</option> <option value="utf16_unicode_ci" title="Unicode, case-insensitive">utf16_unicode_ci</option> <option value="utf16_unicode_nopad_ci" title="Unicode, no-pad, case-insensitive">utf16_unicode_nopad_ci</option> <option value="utf16_vietnamese_ci" title="Vietnamese, case-insensitive">utf16_vietnamese_ci</option> </optgroup> <optgroup label="utf16le" title="UTF-16LE Unicode"> <option value="utf16le_bin" title="Unicode, binary">utf16le_bin</option> <option value="utf16le_general_ci" title="Unicode, case-insensitive">utf16le_general_ci</option> <option value="utf16le_general_nopad_ci" title="Unicode, no-pad, case-insensitive">utf16le_general_nopad_ci</option> <option value="utf16le_nopad_bin" title="Unicode, no-pad, binary">utf16le_nopad_bin</option> </optgroup> <optgroup label="utf32" title="UTF-32 Unicode"> <option value="utf32_bin" title="Unicode, binary">utf32_bin</option> <option value="utf32_croatian_ci" title="Croatian, case-insensitive">utf32_croatian_ci</option> <option value="utf32_croatian_mysql561_ci" title="Croatian (MySQL 5.6.1), case-insensitive">utf32_croatian_mysql561_ci</option> <option value="utf32_czech_ci" title="Czech, case-insensitive">utf32_czech_ci</option> <option value="utf32_danish_ci" title="Danish, case-insensitive">utf32_danish_ci</option> <option value="utf32_esperanto_ci" title="Esperanto, case-insensitive">utf32_esperanto_ci</option> <option value="utf32_estonian_ci" title="Estonian, case-insensitive">utf32_estonian_ci</option> <option value="utf32_general_ci" title="Unicode, case-insensitive">utf32_general_ci</option> <option value="utf32_general_nopad_ci" title="Unicode, no-pad, case-insensitive">utf32_general_nopad_ci</option> <option value="utf32_german2_ci" title="German (phone book order), case-insensitive">utf32_german2_ci</option> <option value="utf32_hungarian_ci" title="Hungarian, case-insensitive">utf32_hungarian_ci</option> <option value="utf32_icelandic_ci" title="Icelandic, case-insensitive">utf32_icelandic_ci</option> <option value="utf32_latvian_ci" title="Latvian, case-insensitive">utf32_latvian_ci</option> <option value="utf32_lithuanian_ci" title="Lithuanian, case-insensitive">utf32_lithuanian_ci</option> <option value="utf32_myanmar_ci" title="Burmese, case-insensitive">utf32_myanmar_ci</option> <option value="utf32_nopad_bin" title="Unicode, no-pad, binary">utf32_nopad_bin</option> <option value="utf32_persian_ci" title="Persian, case-insensitive">utf32_persian_ci</option> <option value="utf32_polish_ci" title="Polish, case-insensitive">utf32_polish_ci</option> <option value="utf32_roman_ci" title="West European, case-insensitive">utf32_roman_ci</option> <option value="utf32_romanian_ci" title="Romanian, case-insensitive">utf32_romanian_ci</option> <option value="utf32_sinhala_ci" title="Sinhalese, case-insensitive">utf32_sinhala_ci</option> <option value="utf32_slovak_ci" title="Slovak, case-insensitive">utf32_slovak_ci</option> <option value="utf32_slovenian_ci" title="Slovenian, case-insensitive">utf32_slovenian_ci</option> <option value="utf32_spanish2_ci" title="Spanish (traditional), case-insensitive">utf32_spanish2_ci</option> <option value="utf32_spanish_ci" title="Spanish (modern), case-insensitive">utf32_spanish_ci</option> <option value="utf32_swedish_ci" title="Swedish, case-insensitive">utf32_swedish_ci</option> <option value="utf32_thai_520_w2" title="Thai (UCA 5.2.0), multi-level">utf32_thai_520_w2</option> <option value="utf32_turkish_ci" title="Turkish, case-insensitive">utf32_turkish_ci</option> <option value="utf32_unicode_520_ci" title="Unicode (UCA 5.2.0), case-insensitive">utf32_unicode_520_ci</option> <option value="utf32_unicode_520_nopad_ci" title="Unicode (UCA 5.2.0), no-pad, case-insensitive">utf32_unicode_520_nopad_ci</option> <option value="utf32_unicode_ci" title="Unicode, case-insensitive">utf32_unicode_ci</option> <option value="utf32_unicode_nopad_ci" title="Unicode, no-pad, case-insensitive">utf32_unicode_nopad_ci</option> <option value="utf32_vietnamese_ci" title="Vietnamese, case-insensitive">utf32_vietnamese_ci</option> </optgroup> <optgroup label="utf8" title="UTF-8 Unicode"> <option value="utf8_bin" title="Unicode, binary">utf8_bin</option> <option value="utf8_croatian_ci" title="Croatian, case-insensitive">utf8_croatian_ci</option> <option value="utf8_croatian_mysql561_ci" title="Croatian (MySQL 5.6.1), case-insensitive">utf8_croatian_mysql561_ci</option> <option value="utf8_czech_ci" title="Czech, case-insensitive">utf8_czech_ci</option> <option value="utf8_danish_ci" title="Danish, case-insensitive">utf8_danish_ci</option> <option value="utf8_esperanto_ci" title="Esperanto, case-insensitive">utf8_esperanto_ci</option> <option value="utf8_estonian_ci" title="Estonian, case-insensitive">utf8_estonian_ci</option> <option value="utf8_general_ci" title="Unicode, case-insensitive">utf8_general_ci</option> <option value="utf8_general_mysql500_ci" title="Unicode (MySQL 5.0.0), case-insensitive">utf8_general_mysql500_ci</option> <option value="utf8_general_nopad_ci" title="Unicode, no-pad, case-insensitive">utf8_general_nopad_ci</option> <option value="utf8_german2_ci" title="German (phone book order), case-insensitive">utf8_german2_ci</option> <option value="utf8_hungarian_ci" title="Hungarian, case-insensitive">utf8_hungarian_ci</option> <option value="utf8_icelandic_ci" title="Icelandic, case-insensitive">utf8_icelandic_ci</option> <option value="utf8_latvian_ci" title="Latvian, case-insensitive">utf8_latvian_ci</option> <option value="utf8_lithuanian_ci" title="Lithuanian, case-insensitive">utf8_lithuanian_ci</option> <option value="utf8_myanmar_ci" title="Burmese, case-insensitive">utf8_myanmar_ci</option> <option value="utf8_nopad_bin" title="Unicode, no-pad, binary">utf8_nopad_bin</option> <option value="utf8_persian_ci" title="Persian, case-insensitive">utf8_persian_ci</option> <option value="utf8_polish_ci" title="Polish, case-insensitive">utf8_polish_ci</option> <option value="utf8_roman_ci" title="West European, case-insensitive">utf8_roman_ci</option> <option value="utf8_romanian_ci" title="Romanian, case-insensitive">utf8_romanian_ci</option> <option value="utf8_sinhala_ci" title="Sinhalese, case-insensitive">utf8_sinhala_ci</option> <option value="utf8_slovak_ci" title="Slovak, case-insensitive">utf8_slovak_ci</option> <option value="utf8_slovenian_ci" title="Slovenian, case-insensitive">utf8_slovenian_ci</option> <option value="utf8_spanish2_ci" title="Spanish (traditional), case-insensitive">utf8_spanish2_ci</option> <option value="utf8_spanish_ci" title="Spanish (modern), case-insensitive">utf8_spanish_ci</option> <option value="utf8_swedish_ci" title="Swedish, case-insensitive">utf8_swedish_ci</option> <option value="utf8_thai_520_w2" title="Thai (UCA 5.2.0), multi-level">utf8_thai_520_w2</option> <option value="utf8_turkish_ci" title="Turkish, case-insensitive">utf8_turkish_ci</option> <option value="utf8_unicode_520_ci" title="Unicode (UCA 5.2.0), case-insensitive">utf8_unicode_520_ci</option> <option value="utf8_unicode_520_nopad_ci" title="Unicode (UCA 5.2.0), no-pad, case-insensitive">utf8_unicode_520_nopad_ci</option> <option value="utf8_unicode_ci" title="Unicode, case-insensitive">utf8_unicode_ci</option> <option value="utf8_unicode_nopad_ci" title="Unicode, no-pad, case-insensitive">utf8_unicode_nopad_ci</option> <option value="utf8_vietnamese_ci" title="Vietnamese, case-insensitive">utf8_vietnamese_ci</option> </optgroup> <optgroup label="utf8mb4" title="UTF-8 Unicode"> <option value="utf8mb4_bin" title="Unicode (UCA 4.0.0), binary">utf8mb4_bin</option> <option value="utf8mb4_croatian_ci" title="Croatian (UCA 4.0.0), case-insensitive">utf8mb4_croatian_ci</option> <option value="utf8mb4_croatian_mysql561_ci" title="Croatian (MySQL 5.6.1), case-insensitive">utf8mb4_croatian_mysql561_ci</option> <option value="utf8mb4_czech_ci" title="Czech (UCA 4.0.0), case-insensitive">utf8mb4_czech_ci</option> <option value="utf8mb4_danish_ci" title="Danish (UCA 4.0.0), case-insensitive">utf8mb4_danish_ci</option> <option value="utf8mb4_esperanto_ci" title="Esperanto (UCA 4.0.0), case-insensitive">utf8mb4_esperanto_ci</option> <option value="utf8mb4_estonian_ci" title="Estonian (UCA 4.0.0), case-insensitive">utf8mb4_estonian_ci</option> <option value="utf8mb4_general_ci" title="Unicode (UCA 4.0.0), case-insensitive">utf8mb4_general_ci</option> <option value="utf8mb4_general_nopad_ci" title="Unicode (UCA 4.0.0), no-pad, case-insensitive">utf8mb4_general_nopad_ci</option> <option value="utf8mb4_german2_ci" title="German (phone book order) (UCA 4.0.0), case-insensitive">utf8mb4_german2_ci</option> <option value="utf8mb4_hungarian_ci" title="Hungarian (UCA 4.0.0), case-insensitive">utf8mb4_hungarian_ci</option> <option value="utf8mb4_icelandic_ci" title="Icelandic (UCA 4.0.0), case-insensitive">utf8mb4_icelandic_ci</option> <option value="utf8mb4_latvian_ci" title="Latvian (UCA 4.0.0), case-insensitive">utf8mb4_latvian_ci</option> <option value="utf8mb4_lithuanian_ci" title="Lithuanian (UCA 4.0.0), case-insensitive">utf8mb4_lithuanian_ci</option> <option value="utf8mb4_myanmar_ci" title="Burmese (UCA 4.0.0), case-insensitive">utf8mb4_myanmar_ci</option> <option value="utf8mb4_nopad_bin" title="Unicode (UCA 4.0.0), no-pad, binary">utf8mb4_nopad_bin</option> <option value="utf8mb4_persian_ci" title="Persian (UCA 4.0.0), case-insensitive">utf8mb4_persian_ci</option> <option value="utf8mb4_polish_ci" title="Polish (UCA 4.0.0), case-insensitive">utf8mb4_polish_ci</option> <option value="utf8mb4_roman_ci" title="West European (UCA 4.0.0), case-insensitive">utf8mb4_roman_ci</option> <option value="utf8mb4_romanian_ci" title="Romanian (UCA 4.0.0), case-insensitive">utf8mb4_romanian_ci</option> <option value="utf8mb4_sinhala_ci" title="Sinhalese (UCA 4.0.0), case-insensitive">utf8mb4_sinhala_ci</option> <option value="utf8mb4_slovak_ci" title="Slovak (UCA 4.0.0), case-insensitive">utf8mb4_slovak_ci</option> <option value="utf8mb4_slovenian_ci" title="Slovenian (UCA 4.0.0), case-insensitive">utf8mb4_slovenian_ci</option> <option value="utf8mb4_spanish2_ci" title="Spanish (traditional) (UCA 4.0.0), case-insensitive">utf8mb4_spanish2_ci</option> <option value="utf8mb4_spanish_ci" title="Spanish (modern) (UCA 4.0.0), case-insensitive">utf8mb4_spanish_ci</option> <option value="utf8mb4_swedish_ci" title="Swedish (UCA 4.0.0), case-insensitive">utf8mb4_swedish_ci</option> <option value="utf8mb4_thai_520_w2" title="Thai (UCA 5.2.0), multi-level">utf8mb4_thai_520_w2</option> <option value="utf8mb4_turkish_ci" title="Turkish (UCA 4.0.0), case-insensitive">utf8mb4_turkish_ci</option> <option value="utf8mb4_unicode_520_ci" title="Unicode (UCA 5.2.0), case-insensitive">utf8mb4_unicode_520_ci</option> <option value="utf8mb4_unicode_520_nopad_ci" title="Unicode (UCA 5.2.0), no-pad, case-insensitive">utf8mb4_unicode_520_nopad_ci</option> <option value="utf8mb4_unicode_ci" title="Unicode (UCA 4.0.0), case-insensitive" selected>utf8mb4_unicode_ci</option> <option value="utf8mb4_unicode_nopad_ci" title="Unicode (UCA 4.0.0), no-pad, case-insensitive">utf8mb4_unicode_nopad_ci</option> <option value="utf8mb4_vietnamese_ci" title="Vietnamese (UCA 4.0.0), case-insensitive">utf8mb4_vietnamese_ci</option> </optgroup> </select> </div> </form> </li> <li id="li_user_preferences" class="list-group-item"> <a href="index.php?route=/preferences/manage&lang=en"> <span class="text-nowrap"><img src="themes/dot.gif" title="More settings" alt="More settings" class="icon ic_b_tblops"> More settings</span> </a> </li> </ul> </div> <div class="card mt-4"> <div class="card-header"> Appearance settings </div> <ul class="list-group list-group-flush"> <li id="li_select_lang" class="list-group-item"> <form method="get" action="index.php?route=/&lang=en" class="row row-cols-lg-auto align-items-center disableAjax"> <input type="hidden" name="db" value=""><input type="hidden" name="table" value=""><input type="hidden" name="lang" value="en"><input type="hidden" name="token" value="68796d444825575e6d2d604f364a4658"> <div class="col-12"> <label for="languageSelect" class="col-form-label text-nowrap"> <img src="themes/dot.gif" title="" alt="" class="icon ic_s_lang"> Language <a href="./doc/html/faq.html#faq7-2" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </label> </div> <div class="col-12"> <select name="lang" class="form-select autosubmit w-auto" lang="en" dir="ltr" id="languageSelect"> <option value="sq">Shqip - Albanian</option> <option value="ar">العربية - Arabic</option> <option value="hy">Հայերէն - Armenian</option> <option value="az">Azərbaycanca - Azerbaijani</option> <option value="bn">বাংলা - Bangla</option> <option value="be">Беларуская - Belarusian</option> <option value="bg">Български - Bulgarian</option> <option value="ca">Català - Catalan</option> <option value="zh_cn">中文 - Chinese simplified</option> <option value="zh_tw">中文 - Chinese traditional</option> <option value="cs">Čeština - Czech</option> <option value="da">Dansk - Danish</option> <option value="nl">Nederlands - Dutch</option> <option value="en" selected>English</option> <option value="en_gb">English (United Kingdom)</option> <option value="et">Eesti - Estonian</option> <option value="fi">Suomi - Finnish</option> <option value="fr">Français - French</option> <option value="gl">Galego - Galician</option> <option value="de">Deutsch - German</option> <option value="el">Ελληνικά - Greek</option> <option value="he">עברית - Hebrew</option> <option value="hu">Magyar - Hungarian</option> <option value="id">Bahasa Indonesia - Indonesian</option> <option value="ia">Interlingua</option> <option value="it">Italiano - Italian</option> <option value="ja">日本語 - Japanese</option> <option value="kk">Қазақ - Kazakh</option> <option value="ko">한국어 - Korean</option> <option value="nb">Norsk - Norwegian</option> <option value="pl">Polski - Polish</option> <option value="pt">Português - Portuguese</option> <option value="pt_br">Português (Brasil) - Portuguese (Brazil)</option> <option value="ro">Română - Romanian</option> <option value="ru">Русский - Russian</option> <option value="si">සිංහල - Sinhala</option> <option value="sk">Slovenčina - Slovak</option> <option value="sl">Slovenščina - Slovenian</option> <option value="es">Español - Spanish</option> <option value="sv">Svenska - Swedish</option> <option value="tr">Türkçe - Turkish</option> <option value="uk">Українська - Ukrainian</option> <option value="vi">Tiếng Việt - Vietnamese</option> </select> </div> </form> </li> <li id="li_select_theme" class="list-group-item"> <form method="post" action="index.php?route=/themes/set&lang=en" class="row row-cols-lg-auto align-items-center disableAjax"> <input type="hidden" name="lang" value="en"><input type="hidden" name="token" value="68796d444825575e6d2d604f364a4658"> <div class="col-12"> <label for="themeSelect" class="col-form-label"> <span class="text-nowrap"><img src="themes/dot.gif" title="Theme" alt="Theme" class="icon ic_s_theme"> Theme</span> </label> </div> <div class="col-12"> <div class="input-group"> <select name="set_theme" class="form-select autosubmit" lang="en" dir="ltr" id="themeSelect"> <option value="bootstrap">Bootstrap</option> <option value="metro">Metro</option> <option value="original">Original</option> <option value="pmahomme" selected>pmahomme</option> </select> <button type="button" class="btn btn-outline-secondary" data-bs-toggle="modal" data-bs-target="#themesModal"> View all </button> </div> </div> </form> </li> </ul> </div> </div> <div class="col-lg-5 col-12"> <div class="card mt-4"> <div class="card-header"> Database server </div> <ul class="list-group list-group-flush"> <li class="list-group-item"> Server: Localhost via UNIX socket </li> <li class="list-group-item"> Server type: MariaDB </li> <li class="list-group-item"> Server connection: <span class="">SSL is not being used</span> <a href="./doc/html/setup.html#ssl" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </li> <li class="list-group-item"> Server version: 10.4.27-MariaDB - Source distribution </li> <li class="list-group-item"> Protocol version: 10 </li> <li class="list-group-item"> User: root@localhost </li> <li class="list-group-item"> Server charset: <span lang="en" dir="ltr"> UTF-8 Unicode (utf8mb4) </span> </li> </ul> </div> <div class="card mt-4"> <div class="card-header"> Web server </div> <ul class="list-group list-group-flush"> <li class="list-group-item"> Apache/2.4.54 (Unix) OpenSSL/1.1.1s PHP/7.4.33 mod_perl/2.0.12 Perl/v5.34.1 </li> <li class="list-group-item" id="li_mysql_client_version"> Database client version: libmysql - mysqlnd 7.4.33 </li> <li class="list-group-item"> PHP extension: mysqli <a href="./url.php?url=https%3A%2F%2Fwww.php.net%2Fmanual%2Fen%2Fbook.mysqli.php" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> curl <a href="./url.php?url=https%3A%2F%2Fwww.php.net%2Fmanual%2Fen%2Fbook.curl.php" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> mbstring <a href="./url.php?url=https%3A%2F%2Fwww.php.net%2Fmanual%2Fen%2Fbook.mbstring.php" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </li> <li class="list-group-item"> PHP version: 7.4.33 </li> </ul> </div> <div class="card mt-4"> <div class="card-header"> phpMyAdmin </div> <ul class="list-group list-group-flush"> <li id="li_pma_version" class="list-group-item jsversioncheck"> Version information: <span class="version">5.2.0</span> </li> <li class="list-group-item"> <a href="./doc/html/index.html" target="_blank" rel="noopener noreferrer"> Documentation </a> </li> <li class="list-group-item"> <a href="./url.php?url=https%3A%2F%2Fwww.phpmyadmin.net%2F" target="_blank" rel="noopener noreferrer"> Official Homepage </a> </li> <li class="list-group-item"> <a href="./url.php?url=https%3A%2F%2Fwww.phpmyadmin.net%2Fcontribute%2F" target="_blank" rel="noopener noreferrer"> Contribute </a> </li> <li class="list-group-item"> <a href="./url.php?url=https%3A%2F%2Fwww.phpmyadmin.net%2Fsupport%2F" target="_blank" rel="noopener noreferrer"> Get support </a> </li> <li class="list-group-item"> <a href="index.php?route=/changelog&lang=en" target="_blank"> List of changes </a> </li> <li class="list-group-item"> <a href="index.php?route=/license&lang=en" target="_blank"> License </a> </li> </ul> </div> </div> </div> </div> </div> <div class="modal fade" id="themesModal" tabindex="-1" aria-labelledby="themesModalLabel" aria-hidden="true"> <div class="modal-dialog modal-xl"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="themesModalLabel">phpMyAdmin Themes</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"> <div class="spinner-border" role="status"> <span class="visually-hidden">Loading…</span> </div> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> <a href="./url.php?url=https%3A%2F%2Fwww.phpmyadmin.net%2Fthemes%2F#pma_5_2" class="btn btn-primary" rel="noopener noreferrer" target="_blank"> Get more themes! </a> </div> </div> </div> </div> </div> <div id="selflink" class="d-print-none"> <a href="index.php?route=%2F&server=1&lang=en" title="Open new phpMyAdmin window" target="_blank" rel="noopener noreferrer"> <img src="themes/dot.gif" title="Open new phpMyAdmin window" alt="Open new phpMyAdmin window" class="icon ic_window-new"> </a> </div> <div class="clearfloat d-print-none" id="pma_errors"> </div> <script data-cfasync="false" type="text/javascript"> // <![CDATA[ var debugSQLInfo = 'null'; // ]]> </script> </body> </html>Parameter X-Content-Security-PolicyEvidence default-src 'self' ;options inline-script eval-script;referrer no-referrer;img-src 'self' data: *.tile.openstreetmap.org;object-src 'none';Solution Ensure that your web server, application server, load balancer, etc. is properly configured to set the Content-Security-Policy header.
-
CSP: X-WebKit-CSP (1)
GET http://localhost/phpmyadmin/
Alert tags Alert description Content Security Policy (CSP) is an added layer of security that helps to detect and mitigate certain types of attacks. Including (but not limited to) Cross Site Scripting (XSS), and data injection attacks. These attacks are used for everything from data theft to site defacement or distribution of malware. CSP provides a set of standard HTTP headers that allow website owners to declare approved sources of content that browsers should be allowed to load on that page — covered types are JavaScript, CSS, HTML frames, fonts, images and embeddable objects such as Java applets, ActiveX, audio and video files.
Other info The header X-WebKit-CSP was found on this response. While it is a good sign that CSP is implemented to some degree the policy specified in this header has not been analyzed by ZAP. To ensure full support by modern browsers ensure that the Content-Security-Policy header is defined and attached to responses.
Request Request line and header section (268 bytes)
GET http://localhost/phpmyadmin/ HTTP/1.1 host: localhost user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 pragma: no-cache cache-control: no-cache referer: http://localhost/dashboard/Request body (0 bytes)
Response Status line and header section (1561 bytes)
HTTP/1.1 200 OK Date: Sat, 19 Apr 2025 15:17:44 GMT Server: Apache/2.4.54 (Unix) OpenSSL/1.1.1s PHP/7.4.33 mod_perl/2.0.12 Perl/v5.34.1 X-Powered-By: PHP/7.4.33 Set-Cookie: phpMyAdmin=610f86c60f00a8f4dc92fe660c217e62; path=/phpmyadmin/; HttpOnly; SameSite=Strict Expires: Sat, 19 Apr 2025 15:17:45 +0000 Cache-Control: no-store, no-cache, must-revalidate, pre-check=0, post-check=0, max-age=0 Last-Modified: Sat, 19 Apr 2025 15:17:45 +0000 Set-Cookie: phpMyAdmin=610f86c60f00a8f4dc92fe660c217e62; path=/phpmyadmin/; HttpOnly; SameSite=Strict Set-Cookie: pma_lang=en; expires=Mon, 19-May-2025 15:17:45 GMT; Max-Age=2592000; path=/phpmyadmin/; HttpOnly; SameSite=Strict X-ob_mode: 1 X-Frame-Options: DENY Referrer-Policy: no-referrer Content-Security-Policy: default-src 'self' ;script-src 'self' 'unsafe-inline' 'unsafe-eval' ;style-src 'self' 'unsafe-inline' ;img-src 'self' data: *.tile.openstreetmap.org;object-src 'none'; X-Content-Security-Policy: default-src 'self' ;options inline-script eval-script;referrer no-referrer;img-src 'self' data: *.tile.openstreetmap.org;object-src 'none'; X-WebKit-CSP: default-src 'self' ;script-src 'self' 'unsafe-inline' 'unsafe-eval';referrer no-referrer;style-src 'self' 'unsafe-inline' ;img-src 'self' data: *.tile.openstreetmap.org;object-src 'none'; X-XSS-Protection: 1; mode=block X-Content-Type-Options: nosniff X-Permitted-Cross-Domain-Policies: none X-Robots-Tag: noindex, nofollow Pragma: no-cache Vary: Accept-Encoding Content-Type: text/html; charset=utf-8 content-length: 145988Response body (145988 bytes)
<!doctype html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="referrer" content="no-referrer"> <meta name="robots" content="noindex,nofollow"> <style id="cfs-style">html{display: none;}</style> <link rel="icon" href="favicon.ico" type="image/x-icon"> <link rel="shortcut icon" href="favicon.ico" type="image/x-icon"> <link rel="stylesheet" type="text/css" href="./themes/pmahomme/jquery/jquery-ui.css"> <link rel="stylesheet" type="text/css" href="js/vendor/codemirror/lib/codemirror.css?v=5.2.0"> <link rel="stylesheet" type="text/css" href="js/vendor/codemirror/addon/hint/show-hint.css?v=5.2.0"> <link rel="stylesheet" type="text/css" href="js/vendor/codemirror/addon/lint/lint.css?v=5.2.0"> <link rel="stylesheet" type="text/css" href="./themes/pmahomme/css/theme.css?v=5.2.0"> <title>localhost / localhost | phpMyAdmin 5.2.0</title> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery.min.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery-migrate.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/sprintf.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/ajax.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/keyhandler.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery-ui.min.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/name-conflict-fixes.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/bootstrap/bootstrap.bundle.min.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/js.cookie.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery.validate.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery-ui-timepicker-addon.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery.debounce-1.0.6.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/menu_resizer.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/cross_framing_protection.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/messages.php?l=en&v=5.2.0&lang=en"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/config.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/doclinks.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/functions.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/navigation.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/indexes.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/common.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/page_settings.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/home.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/lib/codemirror.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/mode/sql/sql.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/addon/runmode/runmode.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/addon/hint/show-hint.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/addon/hint/sql-hint.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/addon/lint/lint.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/codemirror/addon/lint/sql-lint.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/tracekit.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/error_report.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/drag_drop_import.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/shortcuts_handler.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/console.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript"> // <![CDATA[ CommonParams.setAll({common_query:"lang=en",opendb_url:"index.php?route=/database/structure&lang=en",lang:"en",server:"1",table:"",db:"",token:"68796d444825575e6d2d604f364a4658",text_dir:"ltr",LimitChars:"50",pftext:"",confirm:true,LoginCookieValidity:"1440",session_gc_maxlifetime:"1440",logged_in:true,is_https:false,rootPath:"/phpmyadmin/",arg_separator:"&",version:"5.2.0",auth_type:"config",user:"root"}); var firstDayOfCalendar = '0'; var themeImagePath = '.\/themes\/pmahomme\/img\/'; var mysqlDocTemplate = '.\/url.php\u003Furl\u003Dhttps\u00253A\u00252F\u00252Fdev.mysql.com\u00252Fdoc\u00252Frefman\u00252F8.0\u00252Fen\u00252F\u002525s.html'; var maxInputVars = 1000; if ($.datepicker) { $.datepicker.regional[''].closeText = 'Done'; $.datepicker.regional[''].prevText = 'Prev'; $.datepicker.regional[''].nextText = 'Next'; $.datepicker.regional[''].currentText = 'Today'; $.datepicker.regional[''].monthNames = [ 'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December', ]; $.datepicker.regional[''].monthNamesShort = [ 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec', ]; $.datepicker.regional[''].dayNames = [ 'Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', ]; $.datepicker.regional[''].dayNamesShort = [ 'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', ]; $.datepicker.regional[''].dayNamesMin = [ 'Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa', ]; $.datepicker.regional[''].weekHeader = 'Wk'; $.datepicker.regional[''].showMonthAfterYear = false; $.datepicker.regional[''].yearSuffix = ''; $.extend($.datepicker._defaults, $.datepicker.regional['']); } if ($.timepicker) { $.timepicker.regional[''].timeText = 'Time'; $.timepicker.regional[''].hourText = 'Hour'; $.timepicker.regional[''].minuteText = 'Minute'; $.timepicker.regional[''].secondText = 'Second'; $.extend($.timepicker._defaults, $.timepicker.regional['']); } function extendingValidatorMessages () { $.extend($.validator.messages, { required: 'This\u0020field\u0020is\u0020required', remote: 'Please\u0020fix\u0020this\u0020field', email: 'Please\u0020enter\u0020a\u0020valid\u0020email\u0020address', url: 'Please\u0020enter\u0020a\u0020valid\u0020URL', date: 'Please\u0020enter\u0020a\u0020valid\u0020date', dateISO: 'Please\u0020enter\u0020a\u0020valid\u0020date\u0020\u0028\u0020ISO\u0020\u0029', number: 'Please\u0020enter\u0020a\u0020valid\u0020number', creditcard: 'Please\u0020enter\u0020a\u0020valid\u0020credit\u0020card\u0020number', digits: 'Please\u0020enter\u0020only\u0020digits', equalTo: 'Please\u0020enter\u0020the\u0020same\u0020value\u0020again', maxlength: $.validator.format('Please\u0020enter\u0020no\u0020more\u0020than\u0020\u007B0\u007D\u0020characters'), minlength: $.validator.format('Please\u0020enter\u0020at\u0020least\u0020\u007B0\u007D\u0020characters'), rangelength: $.validator.format('Please\u0020enter\u0020a\u0020value\u0020between\u0020\u007B0\u007D\u0020and\u0020\u007B1\u007D\u0020characters\u0020long'), range: $.validator.format('Please\u0020enter\u0020a\u0020value\u0020between\u0020\u007B0\u007D\u0020and\u0020\u007B1\u007D'), max: $.validator.format('Please\u0020enter\u0020a\u0020value\u0020less\u0020than\u0020or\u0020equal\u0020to\u0020\u007B0\u007D'), min: $.validator.format('Please\u0020enter\u0020a\u0020value\u0020greater\u0020than\u0020or\u0020equal\u0020to\u0020\u007B0\u007D'), validationFunctionForDateTime: $.validator.format('Please\u0020enter\u0020a\u0020valid\u0020date\u0020or\u0020time'), validationFunctionForHex: $.validator.format('Please\u0020enter\u0020a\u0020valid\u0020HEX\u0020input'), validationFunctionForMd5: $.validator.format('This\u0020column\u0020can\u0020not\u0020contain\u0020a\u002032\u0020chars\u0020value'), validationFunctionForAesDesEncrypt: $.validator.format('These\u0020functions\u0020are\u0020meant\u0020to\u0020return\u0020a\u0020binary\u0020result\u003B\u0020to\u0020avoid\u0020inconsistent\u0020results\u0020you\u0020should\u0020store\u0020it\u0020in\u0020a\u0020BINARY,\u0020VARBINARY,\u0020or\u0020BLOB\u0020column.') }); } ConsoleEnterExecutes=false AJAX.scriptHandler .add('vendor/jquery/jquery.min.js', 0) .add('vendor/jquery/jquery-migrate.js', 0) .add('vendor/sprintf.js', 1) .add('ajax.js', 0) .add('keyhandler.js', 1) .add('vendor/jquery/jquery-ui.min.js', 0) .add('name-conflict-fixes.js', 1) .add('vendor/bootstrap/bootstrap.bundle.min.js', 1) .add('vendor/js.cookie.js', 1) .add('vendor/jquery/jquery.validate.js', 0) .add('vendor/jquery/jquery-ui-timepicker-addon.js', 0) .add('vendor/jquery/jquery.debounce-1.0.6.js', 0) .add('menu_resizer.js', 1) .add('cross_framing_protection.js', 0) .add('messages.php', 0) .add('config.js', 1) .add('doclinks.js', 1) .add('functions.js', 1) .add('navigation.js', 1) .add('indexes.js', 1) .add('common.js', 1) .add('page_settings.js', 1) .add('home.js', 1) .add('vendor/codemirror/lib/codemirror.js', 0) .add('vendor/codemirror/mode/sql/sql.js', 0) .add('vendor/codemirror/addon/runmode/runmode.js', 0) .add('vendor/codemirror/addon/hint/show-hint.js', 0) .add('vendor/codemirror/addon/hint/sql-hint.js', 0) .add('vendor/codemirror/addon/lint/lint.js', 0) .add('codemirror/addon/lint/sql-lint.js', 0) .add('vendor/tracekit.js', 1) .add('error_report.js', 1) .add('drag_drop_import.js', 1) .add('shortcuts_handler.js', 1) .add('console.js', 1) ; $(function() { AJAX.fireOnload('vendor/sprintf.js'); AJAX.fireOnload('keyhandler.js'); AJAX.fireOnload('name-conflict-fixes.js'); AJAX.fireOnload('vendor/bootstrap/bootstrap.bundle.min.js'); AJAX.fireOnload('vendor/js.cookie.js'); AJAX.fireOnload('menu_resizer.js'); AJAX.fireOnload('config.js'); AJAX.fireOnload('doclinks.js'); AJAX.fireOnload('functions.js'); AJAX.fireOnload('navigation.js'); AJAX.fireOnload('indexes.js'); AJAX.fireOnload('common.js'); AJAX.fireOnload('page_settings.js'); AJAX.fireOnload('home.js'); AJAX.fireOnload('vendor/tracekit.js'); AJAX.fireOnload('error_report.js'); AJAX.fireOnload('drag_drop_import.js'); AJAX.fireOnload('shortcuts_handler.js'); AJAX.fireOnload('console.js'); }); // ]]> </script> <noscript><style>html{display:block}</style></noscript> </head> <body> <div id="pma_navigation" class="d-print-none" data-config-navigation-width="0"> <div id="pma_navigation_resizer"></div> <div id="pma_navigation_collapser"></div> <div id="pma_navigation_content"> <div id="pma_navigation_header"> <div id="pmalogo"> <a href="index.php?lang=en"> <img id="imgpmalogo" src="./themes/pmahomme/img/logo_left.png" alt="phpMyAdmin"> </a> </div> <div id="navipanellinks"> <a href="index.php?route=/&lang=en" title="Home"><img src="themes/dot.gif" title="Home" alt="Home" class="icon ic_b_home"></a> <a class="logout disableAjax" href="index.php?route=/logout&lang=en" title="Empty session data"><img src="themes/dot.gif" title="Empty session data" alt="Empty session data" class="icon ic_s_loggoff"></a> <a href="./doc/html/index.html" title="phpMyAdmin documentation" target="_blank" rel="noopener noreferrer"><img src="themes/dot.gif" title="phpMyAdmin documentation" alt="phpMyAdmin documentation" class="icon ic_b_docs"></a> <a href="./url.php?url=https%3A%2F%2Fmariadb.com%2Fkb%2Fen%2Fdocumentation%2F" title="MariaDB Documentation" target="_blank" rel="noopener noreferrer"><img src="themes/dot.gif" title="MariaDB Documentation" alt="MariaDB Documentation" class="icon ic_b_sqlhelp"></a> <a id="pma_navigation_settings_icon" href="#" title="Navigation panel settings"><img src="themes/dot.gif" title="Navigation panel settings" alt="Navigation panel settings" class="icon ic_s_cog"></a> <a id="pma_navigation_reload" href="#" title="Reload navigation panel"><img src="themes/dot.gif" title="Reload navigation panel" alt="Reload navigation panel" class="icon ic_s_reload"></a> </div> <img src="themes/dot.gif" title="Loading…" alt="Loading…" style="visibility: hidden; display:none" class="icon ic_ajax_clock_small throbber"> </div> <div id="pma_navigation_tree" class="list_container synced highlight autoexpand"> <div class="pma_quick_warp"> <div class="drop_list"><button title="Recent tables" class="drop_button btn">Recent</button><ul id="pma_recent_list"><li class="warp_link"> <a href="index.php?route=/table/recent-favorite&db=scan&table=wp_users&lang=en"> `scan`.`wp_users` </a> </li> <li class="warp_link"> <a href="index.php?route=/table/recent-favorite&db=attack&table=wp_users&lang=en"> `attack`.`wp_users` </a> </li> <li class="warp_link"> <a href="index.php?route=/table/recent-favorite&db=test&table=wp_users&lang=en"> `test`.`wp_users` </a> </li> </ul></div> <div class="drop_list"><button title="Favorite tables" class="drop_button btn">Favorites</button><ul id="pma_favorite_list"><li class="warp_link"> There are no favorite tables. </li> </ul></div> <div class="clearfloat"></div> </div> <div class="clearfloat"></div> <ul> <!-- CONTROLS START --> <li id="navigation_controls_outer"> <div id="navigation_controls"> <a href="#" id="pma_navigation_collapse" title="Collapse all"><img src="themes/dot.gif" title="Collapse all" alt="Collapse all" class="icon ic_s_collapseall"></a> <a href="#" id="pma_navigation_sync" title="Unlink from main panel"><img src="themes/dot.gif" title="Unlink from main panel" alt="Unlink from main panel" class="icon ic_s_link"></a> </div> </li> <!-- CONTROLS ENDS --> </ul> <div id='pma_navigation_tree_content'> <ul> <li class="first new_database italics"> <div class="block"> <i class="first"></i> </div> <div class="block second"> <a href="index.php?route=/server/databases&lang=en"><img src="themes/dot.gif" title="New" alt="New" class="icon ic_b_newdb"></a> </div> <a class="hover_show_full" href="index.php?route=/server/databases&lang=en" title="New">New</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.YXR0YWNr" data-vpath="cm9vdA==.YXR0YWNr" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=attack&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=attack&lang=en" title="Structure">attack</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.aW5mb3JtYXRpb25fc2NoZW1h" data-vpath="cm9vdA==.aW5mb3JtYXRpb25fc2NoZW1h" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=information_schema&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=information_schema&lang=en" title="Structure">information_schema</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.bXlzcWw=" data-vpath="cm9vdA==.bXlzcWw=" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=mysql&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=mysql&lang=en" title="Structure">mysql</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.cGVyZm9ybWFuY2Vfc2NoZW1h" data-vpath="cm9vdA==.cGVyZm9ybWFuY2Vfc2NoZW1h" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=performance_schema&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=performance_schema&lang=en" title="Structure">performance_schema</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.cGhwbXlhZG1pbg==" data-vpath="cm9vdA==.cGhwbXlhZG1pbg==" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=phpmyadmin&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=phpmyadmin&lang=en" title="Structure">phpmyadmin</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.c2Nhbg==" data-vpath="cm9vdA==.c2Nhbg==" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=scan&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=scan&lang=en" title="Structure">scan</a> <div class="clearfloat"></div> </li> <li class="last database"> <div class="block"> <i></i> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.dGVzdA==" data-vpath="cm9vdA==.dGVzdA==" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=test&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=test&lang=en" title="Structure">test</a> <div class="clearfloat"></div> </li> </ul> </div> </div> <div id="pma_navi_settings_container"> <div id="pma_navigation_settings"><div class="page_settings"><form method="post" action="index.php?route=%2F&server=1&lang=en" class="config-form disableAjax"> <input type="hidden" name="tab_hash" value=""> <input type="hidden" name="check_page_refresh" id="check_page_refresh" value=""> <input type="hidden" name="lang" value="en"><input type="hidden" name="token" value="68796d444825575e6d2d604f364a4658"> <input type="hidden" name="submit_save" value="Navi"> <ul class="nav nav-tabs" id="configFormDisplayTab" role="tablist"> <li class="nav-item" role="presentation"> <a class="nav-link active" id="Navi_panel-tab" href="#Navi_panel" data-bs-toggle="tab" role="tab" aria-controls="Navi_panel" aria-selected="true">Navigation panel</a> </li> <li class="nav-item" role="presentation"> <a class="nav-link" id="Navi_tree-tab" href="#Navi_tree" data-bs-toggle="tab" role="tab" aria-controls="Navi_tree" aria-selected="false">Navigation tree</a> </li> <li class="nav-item" role="presentation"> <a class="nav-link" id="Navi_servers-tab" href="#Navi_servers" data-bs-toggle="tab" role="tab" aria-controls="Navi_servers" aria-selected="false">Servers</a> </li> <li class="nav-item" role="presentation"> <a class="nav-link" id="Navi_databases-tab" href="#Navi_databases" data-bs-toggle="tab" role="tab" aria-controls="Navi_databases" aria-selected="false">Databases</a> </li> <li class="nav-item" role="presentation"> <a class="nav-link" id="Navi_tables-tab" href="#Navi_tables" data-bs-toggle="tab" role="tab" aria-controls="Navi_tables" aria-selected="false">Tables</a> </li> </ul> <div class="tab-content"> <div class="tab-pane fade show active" id="Navi_panel" role="tabpanel" aria-labelledby="Navi_panel-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Navigation panel</h5> <h6 class="card-subtitle mb-2 text-muted">Customize appearance of the navigation panel.</h6> <fieldset class="optbox"> <legend>Navigation panel</legend> <table class="table table-borderless"> <tr> <th> <label for="ShowDatabasesNavigationAsTree">Show databases navigation as tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_ShowDatabasesNavigationAsTree" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>In the navigation panel, replaces the database tree with a selector</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="ShowDatabasesNavigationAsTree" id="ShowDatabasesNavigationAsTree" checked> </span> <a class="restore-default hide" href="#ShowDatabasesNavigationAsTree" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationLinkWithMainPanel">Link with main panel</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationLinkWithMainPanel" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Link with main panel by highlighting the current database or table.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationLinkWithMainPanel" id="NavigationLinkWithMainPanel" checked> </span> <a class="restore-default hide" href="#NavigationLinkWithMainPanel" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationDisplayLogo">Display logo</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationDisplayLogo" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Show logo in navigation panel.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationDisplayLogo" id="NavigationDisplayLogo" checked> </span> <a class="restore-default hide" href="#NavigationDisplayLogo" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationLogoLink">Logo link URL</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationLogoLink" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>URL where logo in the navigation panel will point to.</small> </th> <td> <input type="text" name="NavigationLogoLink" id="NavigationLogoLink" value="index.php" class="w-75"> <a class="restore-default hide" href="#NavigationLogoLink" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationLogoLinkWindow">Logo link target</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationLogoLinkWindow" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Open the linked page in the main window (<code>main</code>) or in a new one (<code>new</code>).</small> </th> <td> <select name="NavigationLogoLinkWindow" id="NavigationLogoLinkWindow" class="w-75"> <option value="main" selected>main</option> <option value="new">new</option> </select> <a class="restore-default hide" href="#NavigationLogoLinkWindow" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreePointerEnable">Enable highlighting</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreePointerEnable" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Highlight server under the mouse cursor.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreePointerEnable" id="NavigationTreePointerEnable" checked> </span> <a class="restore-default hide" href="#NavigationTreePointerEnable" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="FirstLevelNavigationItems">Maximum items on first level</label> <span class="doc"> <a href="./doc/html/config.html#cfg_FirstLevelNavigationItems" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>The number of items that can be displayed on each page on the first level of the navigation tree.</small> </th> <td> <input type="number" name="FirstLevelNavigationItems" id="FirstLevelNavigationItems" value="100" class=""> <a class="restore-default hide" href="#FirstLevelNavigationItems" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeDisplayItemFilterMinimum">Minimum number of items to display the filter box</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDisplayItemFilterMinimum" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Defines the minimum number of items (tables, views, routines and events) to display a filter box.</small> </th> <td> <input type="number" name="NavigationTreeDisplayItemFilterMinimum" id="NavigationTreeDisplayItemFilterMinimum" value="30" class=""> <a class="restore-default hide" href="#NavigationTreeDisplayItemFilterMinimum" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NumRecentTables">Recently used tables</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NumRecentTables" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Maximum number of recently used tables; set 0 to disable.</small> </th> <td> <input type="number" name="NumRecentTables" id="NumRecentTables" value="10" class=""> <a class="restore-default hide" href="#NumRecentTables" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NumFavoriteTables">Favorite tables</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NumFavoriteTables" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Maximum number of favorite tables; set 0 to disable.</small> </th> <td> <input type="number" name="NumFavoriteTables" id="NumFavoriteTables" value="10" class=""> <a class="restore-default hide" href="#NumFavoriteTables" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationWidth">Navigation panel width</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationWidth" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Set to 0 to collapse navigation panel.</small> </th> <td> <input type="number" name="NavigationWidth" id="NavigationWidth" value="0" class="custom"> <a class="restore-default hide" href="#NavigationWidth" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> <div class="tab-pane fade" id="Navi_tree" role="tabpanel" aria-labelledby="Navi_tree-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Navigation tree</h5> <h6 class="card-subtitle mb-2 text-muted">Customize the navigation tree.</h6> <fieldset class="optbox"> <legend>Navigation tree</legend> <table class="table table-borderless"> <tr> <th> <label for="MaxNavigationItems">Maximum items in branch</label> <span class="doc"> <a href="./doc/html/config.html#cfg_MaxNavigationItems" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>The number of items that can be displayed on each page of the navigation tree.</small> </th> <td> <input type="number" name="MaxNavigationItems" id="MaxNavigationItems" value="50" class=""> <a class="restore-default hide" href="#MaxNavigationItems" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeEnableGrouping">Group items in the tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeEnableGrouping" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Group items in the navigation tree (determined by the separator defined in the Databases and Tables tabs above).</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeEnableGrouping" id="NavigationTreeEnableGrouping" checked> </span> <a class="restore-default hide" href="#NavigationTreeEnableGrouping" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeEnableExpansion">Enable navigation tree expansion</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeEnableExpansion" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to offer the possibility of tree expansion in the navigation panel.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeEnableExpansion" id="NavigationTreeEnableExpansion" checked> </span> <a class="restore-default hide" href="#NavigationTreeEnableExpansion" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowTables">Show tables in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowTables" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show tables under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowTables" id="NavigationTreeShowTables" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowTables" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowViews">Show views in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowViews" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show views under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowViews" id="NavigationTreeShowViews" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowViews" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowFunctions">Show functions in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowFunctions" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show functions under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowFunctions" id="NavigationTreeShowFunctions" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowFunctions" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowProcedures">Show procedures in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowProcedures" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show procedures under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowProcedures" id="NavigationTreeShowProcedures" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowProcedures" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowEvents">Show events in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowEvents" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show events under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowEvents" id="NavigationTreeShowEvents" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowEvents" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeAutoexpandSingleDb">Expand single database</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeAutoexpandSingleDb" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to expand single database in the navigation tree automatically.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeAutoexpandSingleDb" id="NavigationTreeAutoexpandSingleDb" checked> </span> <a class="restore-default hide" href="#NavigationTreeAutoexpandSingleDb" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> <div class="tab-pane fade" id="Navi_servers" role="tabpanel" aria-labelledby="Navi_servers-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Servers</h5> <h6 class="card-subtitle mb-2 text-muted">Servers display options.</h6> <fieldset class="optbox"> <legend>Servers</legend> <table class="table table-borderless"> <tr> <th> <label for="NavigationDisplayServers">Display servers selection</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationDisplayServers" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Display server choice at the top of the navigation panel.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationDisplayServers" id="NavigationDisplayServers" checked> </span> <a class="restore-default hide" href="#NavigationDisplayServers" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="DisplayServersList">Display servers as a list</label> <span class="doc"> <a href="./doc/html/config.html#cfg_DisplayServersList" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Show server listing as a list instead of a drop down.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="DisplayServersList" id="DisplayServersList"> </span> <a class="restore-default hide" href="#DisplayServersList" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> <div class="tab-pane fade" id="Navi_databases" role="tabpanel" aria-labelledby="Navi_databases-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Databases</h5> <h6 class="card-subtitle mb-2 text-muted">Databases display options.</h6> <fieldset class="optbox"> <legend>Databases</legend> <table class="table table-borderless"> <tr> <th> <label for="NavigationTreeDisplayDbFilterMinimum">Minimum number of databases to display the database filter box</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDisplayDbFilterMinimum" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> </th> <td> <input type="number" name="NavigationTreeDisplayDbFilterMinimum" id="NavigationTreeDisplayDbFilterMinimum" value="30" class=""> <a class="restore-default hide" href="#NavigationTreeDisplayDbFilterMinimum" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeDbSeparator">Database tree separator</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDbSeparator" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>String that separates databases into different tree levels.</small> </th> <td> <input type="text" size="25" name="NavigationTreeDbSeparator" id="NavigationTreeDbSeparator" value="_" class=""> <a class="restore-default hide" href="#NavigationTreeDbSeparator" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> <div class="tab-pane fade" id="Navi_tables" role="tabpanel" aria-labelledby="Navi_tables-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Tables</h5> <h6 class="card-subtitle mb-2 text-muted">Tables display options.</h6> <fieldset class="optbox"> <legend>Tables</legend> <table class="table table-borderless"> <tr> <th> <label for="NavigationTreeDefaultTabTable">Target for quick access icon</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDefaultTabTable" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> </th> <td> <select name="NavigationTreeDefaultTabTable" id="NavigationTreeDefaultTabTable" class="w-75"> <option value="structure" selected>Structure</option> <option value="sql">SQL</option> <option value="search">Search</option> <option value="insert">Insert</option> <option value="browse">Browse</option> </select> <a class="restore-default hide" href="#NavigationTreeDefaultTabTable" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeDefaultTabTable2">Target for second quick access icon</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDefaultTabTable2" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> </th> <td> <select name="NavigationTreeDefaultTabTable2" id="NavigationTreeDefaultTabTable2" class="w-75"> <option value="" selected></option> <option value="structure">Structure</option> <option value="sql">SQL</option> <option value="search">Search</option> <option value="insert">Insert</option> <option value="browse">Browse</option> </select> <a class="restore-default hide" href="#NavigationTreeDefaultTabTable2" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeTableSeparator">Table tree separator</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeTableSeparator" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>String that separates tables into different tree levels.</small> </th> <td> <input type="text" size="25" name="NavigationTreeTableSeparator" id="NavigationTreeTableSeparator" value="__" class=""> <a class="restore-default hide" href="#NavigationTreeTableSeparator" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeTableLevel">Maximum table tree depth</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeTableLevel" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> </th> <td> <input type="number" name="NavigationTreeTableLevel" id="NavigationTreeTableLevel" value="1" class=""> <a class="restore-default hide" href="#NavigationTreeTableLevel" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> </div> </form> <script type="text/javascript"> if (typeof configInlineParams === 'undefined' || !Array.isArray(configInlineParams)) { configInlineParams = []; } configInlineParams.push(function () { registerFieldValidator('FirstLevelNavigationItems', 'validatePositiveNumber', true); registerFieldValidator('NavigationTreeDisplayItemFilterMinimum', 'validatePositiveNumber', true); registerFieldValidator('NumRecentTables', 'validateNonNegativeNumber', true); registerFieldValidator('NumFavoriteTables', 'validateNonNegativeNumber', true); registerFieldValidator('NavigationWidth', 'validateNonNegativeNumber', true); registerFieldValidator('MaxNavigationItems', 'validatePositiveNumber', true); registerFieldValidator('NavigationTreeTableLevel', 'validatePositiveNumber', true); $.extend(Messages, { 'error_nan_p': 'Not\u0020a\u0020positive\u0020number\u0021', 'error_nan_nneg': 'Not\u0020a\u0020non\u002Dnegative\u0020number\u0021', 'error_incorrect_port': 'Not\u0020a\u0020valid\u0020port\u0020number\u0021', 'error_invalid_value': 'Incorrect\u0020value\u0021', 'error_value_lte': 'Value\u0020must\u0020be\u0020less\u0020than\u0020or\u0020equal\u0020to\u0020\u0025s\u0021', }); $.extend(defaultValues, { 'ShowDatabasesNavigationAsTree': true, 'NavigationLinkWithMainPanel': true, 'NavigationDisplayLogo': true, 'NavigationLogoLink': 'index.php', 'NavigationLogoLinkWindow': ['main'], 'NavigationTreePointerEnable': true, 'FirstLevelNavigationItems': '100', 'NavigationTreeDisplayItemFilterMinimum': '30', 'NumRecentTables': '10', 'NumFavoriteTables': '10', 'NavigationWidth': '240', 'MaxNavigationItems': '50', 'NavigationTreeEnableGrouping': true, 'NavigationTreeEnableExpansion': true, 'NavigationTreeShowTables': true, 'NavigationTreeShowViews': true, 'NavigationTreeShowFunctions': true, 'NavigationTreeShowProcedures': true, 'NavigationTreeShowEvents': true, 'NavigationTreeAutoexpandSingleDb': true, 'NavigationDisplayServers': true, 'DisplayServersList': false, 'NavigationTreeDisplayDbFilterMinimum': '30', 'NavigationTreeDbSeparator': '_', 'NavigationTreeDefaultTabTable': ['structure'], 'NavigationTreeDefaultTabTable2': [''], 'NavigationTreeTableSeparator': '__', 'NavigationTreeTableLevel': '1' }); }); if (typeof configScriptLoaded !== 'undefined' && configInlineParams) { loadInlineConfig(); } </script> </div></div> </div> </div> <div class="pma_drop_handler"> Drop files here </div> <div class="pma_sql_import_status"> <h2> SQL upload ( <span class="pma_import_count">0</span> ) <span class="close">x</span> <span class="minimize">-</span> </h2> <div></div> </div> </div> <div class="modal fade" id="unhideNavItemModal" tabindex="-1" aria-labelledby="unhideNavItemModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="unhideNavItemModalLabel">Show hidden navigation tree items.</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"></div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> </div> </div> </div> </div> <noscript> <div class="alert alert-danger" role="alert"> <img src="themes/dot.gif" title="" alt="" class="icon ic_s_error"> Javascript must be enabled past this point! </div> </noscript> <div id="floating_menubar" class="d-print-none"></div> <nav id="server-breadcrumb" aria-label="breadcrumb"> <ol class="breadcrumb breadcrumb-navbar"> <li class="breadcrumb-item"> <img src="themes/dot.gif" title="" alt="" class="icon ic_s_host"> <a href="index.php?route=/&lang=en" data-raw-text="localhost" draggable="false"> Server: localhost </a> </li> </ol> </nav> <div id="topmenucontainer" class="menucontainer"> <nav class="navbar navbar-expand-lg navbar-light bg-light"> <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-label="Toggle navigation" aria-controls="navbarNav" aria-expanded="false"> <span class="navbar-toggler-icon"></span> </button> <div class="collapse navbar-collapse" id="navbarNav"> <ul id="topmenu" class="navbar-nav"> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/databases&lang=en"> <img src="themes/dot.gif" title="Databases" alt="Databases" class="icon ic_s_db"> Databases </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/sql&lang=en"> <img src="themes/dot.gif" title="SQL" alt="SQL" class="icon ic_b_sql"> SQL </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/status&lang=en"> <img src="themes/dot.gif" title="Status" alt="Status" class="icon ic_s_status"> Status </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/privileges&viewing_mode=server&lang=en"> <img src="themes/dot.gif" title="User accounts" alt="User accounts" class="icon ic_s_rights"> User accounts </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/export&lang=en"> <img src="themes/dot.gif" title="Export" alt="Export" class="icon ic_b_export"> Export </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/import&lang=en"> <img src="themes/dot.gif" title="Import" alt="Import" class="icon ic_b_import"> Import </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/preferences/manage&lang=en"> <img src="themes/dot.gif" title="Settings" alt="Settings" class="icon ic_b_tblops"> Settings </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/replication&lang=en"> <img src="themes/dot.gif" title="Replication" alt="Replication" class="icon ic_s_replication"> Replication </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/variables&lang=en"> <img src="themes/dot.gif" title="Variables" alt="Variables" class="icon ic_s_vars"> Variables </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/collations&lang=en"> <img src="themes/dot.gif" title="Charsets" alt="Charsets" class="icon ic_s_asci"> Charsets </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/engines&lang=en"> <img src="themes/dot.gif" title="Engines" alt="Engines" class="icon ic_b_engine"> Engines </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/plugins&lang=en"> <img src="themes/dot.gif" title="Plugins" alt="Plugins" class="icon ic_b_plugin"> Plugins </a> </li> </ul> </div> </nav> </div> <span id="page_nav_icons" class="d-print-none"> <span id="lock_page_icon"></span> <span id="page_settings_icon"> <img src="themes/dot.gif" title="Page-related settings" alt="Page-related settings" class="icon ic_s_cog"> </span> <a id="goto_pagetop" href="#"><img src="themes/dot.gif" title="Click on the bar to scroll to top of page" alt="Click on the bar to scroll to top of page" class="icon ic_s_top"></a> </span> <div id="pma_console_container" class="d-print-none"> <div id="pma_console"> <div class="toolbar collapsed"> <div class="switch_button console_switch"> <img src="themes/dot.gif" title="SQL Query Console" alt="SQL Query Console" class="icon ic_console"> <span>Console</span> </div> <div class="button clear"> <span>Clear</span> </div> <div class="button history"> <span>History</span> </div> <div class="button options"> <span>Options</span> </div> <div class="button bookmarks"> <span>Bookmarks</span> </div> <div class="button debug hide"> <span>Debug SQL</span> </div> </div> <div class="content"> <div class="console_message_container"> <div class="message welcome"> <span id="instructions-0"> Press Ctrl+Enter to execute query </span> <span class="hide" id="instructions-1"> Press Enter to execute query </span> </div> </div><!-- console_message_container --> <div class="query_input"> <span class="console_query_input"></span> </div> </div><!-- message end --> <div class="mid_layer"></div> <div class="card" id="debug_console"> <div class="toolbar "> <div class="button order order_asc"> <span>ascending</span> </div> <div class="button order order_desc"> <span>descending</span> </div> <div class="text"> <span>Order:</span> </div> <div class="switch_button"> <span>Debug SQL</span> </div> <div class="button order_by sort_count"> <span>Count</span> </div> <div class="button order_by sort_exec"> <span>Execution order</span> </div> <div class="button order_by sort_time"> <span>Time taken</span> </div> <div class="text"> <span>Order by:</span> </div> <div class="button group_queries"> <span>Group queries</span> </div> <div class="button ungroup_queries"> <span>Ungroup queries</span> </div> </div> <div class="content debug"> <div class="message welcome"></div> <div class="debugLog"></div> </div> <!-- Content --> <div class="templates"> <div class="debug_query action_content"> <span class="action collapse"> Collapse </span> <span class="action expand"> Expand </span> <span class="action dbg_show_trace"> Show trace </span> <span class="action dbg_hide_trace"> Hide trace </span> <span class="text count hide"> Count </span> <span class="text time"> Time taken </span> </div> </div> <!-- Template --> </div> <!-- Debug SQL card --> <div class="card" id="pma_bookmarks"> <div class="toolbar "> <div class="switch_button"> <span>Bookmarks</span> </div> <div class="button refresh"> <span>Refresh</span> </div> <div class="button add"> <span>Add</span> </div> </div> <div class="content bookmark"> <div class="message welcome"> <span>No bookmarks</span> </div> </div> <div class="mid_layer"></div> <div class="card add"> <div class="toolbar "> <div class="switch_button"> <span>Add bookmark</span> </div> </div> <div class="content add_bookmark"> <div class="options"> <label> Label: <input type="text" name="label"> </label> <label> Target database: <input type="text" name="targetdb"> </label> <label> <input type="checkbox" name="shared">Share this bookmark </label> <button class="btn btn-primary" type="submit" name="submit">OK</button> </div> <!-- options --> <div class="query_input"> <span class="bookmark_add_input"></span> </div> </div> </div> <!-- Add bookmark card --> </div> <!-- Bookmarks card --> <div class="card" id="pma_console_options"> <div class="toolbar "> <div class="switch_button"> <span>Options</span> </div> <div class="button default"> <span>Set default</span> </div> </div> <div class="content"> <label> <input type="checkbox" name="always_expand">Always expand query messages </label> <br> <label> <input type="checkbox" name="start_history">Show query history at start </label> <br> <label> <input type="checkbox" name="current_query">Show current browsing query </label> <br> <label> <input type="checkbox" name="enter_executes"> Execute queries on Enter and insert new line with Shift+Enter. To make this permanent, view settings. </label> <br> <label> <input type="checkbox" name="dark_theme">Switch to dark theme </label> <br> </div> </div> <!-- Options card --> <div class="templates"> <div class="query_actions"> <span class="action collapse"> Collapse </span> <span class="action expand"> Expand </span> <span class="action requery"> Requery </span> <span class="action edit"> Edit </span> <span class="action explain"> Explain </span> <span class="action profiling"> Profiling </span> <span class="action bookmark"> Bookmark </span> <span class="text failed"> Query failed </span> <span class="text targetdb"> Database : <span></span> </span> <span class="text query_time"> Queried time : <span></span> </span> </div> </div> </div> <!-- #console end --> </div> <!-- #console_container end --> <div id="page_content"> <div class="modal fade" id="previewSqlModal" tabindex="-1" aria-labelledby="previewSqlModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="previewSqlModalLabel">Loading</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"></div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> </div> </div> </div> </div> <div class="modal fade" id="enumEditorModal" tabindex="-1" aria-labelledby="enumEditorModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="enumEditorModalLabel">ENUM/SET editor</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"></div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" id="enumEditorGoButton" data-bs-dismiss="modal">Go</button> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> </div> </div> </div> </div> <div class="modal fade" id="createViewModal" tabindex="-1" aria-labelledby="createViewModalLabel" aria-hidden="true"> <div class="modal-dialog modal-lg" id="createViewModalDialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="createViewModalLabel">Create view</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"></div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" id="createViewModalGoButton">Go</button> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> </div> </div> </div> </div> <div id="maincontainer"> <a class="hide" id="sync_favorite_tables" href="index.php?route=/database/structure/favorite-table&ajax_request=1&favorite_table=1&sync_favorite_tables=1&lang=en"></a> <div class="container-fluid"> <div class="row"> <div class="col-lg-7 col-12"> <div class="card mt-4"> <div class="card-header"> General settings </div> <ul class="list-group list-group-flush"> <li id="li_select_mysql_collation" class="list-group-item"> <form method="post" action="index.php?route=/collation-connection&lang=en" class="row row-cols-lg-auto align-items-center disableAjax"> <input type="hidden" name="lang" value="en"><input type="hidden" name="token" value="68796d444825575e6d2d604f364a4658"> <div class="col-12"> <label for="collationConnectionSelect" class="col-form-label"> <img src="themes/dot.gif" title="" alt="" class="icon ic_s_asci"> Server connection collation: <a href="./url.php?url=https%3A%2F%2Fdev.mysql.com%2Fdoc%2Frefman%2F8.0%2Fen%2Fcharset-connection.html" target="mysql_doc"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </label> </div> <div class="col-12"> <select lang="en" dir="ltr" name="collation_connection" id="collationConnectionSelect" class="form-select autosubmit"> <option value="">Collation</option> <option value=""></option> <optgroup label="armscii8" title="ARMSCII-8 Armenian"> <option value="armscii8_bin" title="Armenian, binary">armscii8_bin</option> <option value="armscii8_general_ci" title="Armenian, case-insensitive">armscii8_general_ci</option> <option value="armscii8_general_nopad_ci" title="Armenian, no-pad, case-insensitive">armscii8_general_nopad_ci</option> <option value="armscii8_nopad_bin" title="Armenian, no-pad, binary">armscii8_nopad_bin</option> </optgroup> <optgroup label="ascii" title="US ASCII"> <option value="ascii_bin" title="West European, binary">ascii_bin</option> <option value="ascii_general_ci" title="West European, case-insensitive">ascii_general_ci</option> <option value="ascii_general_nopad_ci" title="West European, no-pad, case-insensitive">ascii_general_nopad_ci</option> <option value="ascii_nopad_bin" title="West European, no-pad, binary">ascii_nopad_bin</option> </optgroup> <optgroup label="big5" title="Big5 Traditional Chinese"> <option value="big5_bin" title="Traditional Chinese, binary">big5_bin</option> <option value="big5_chinese_ci" title="Traditional Chinese, case-insensitive">big5_chinese_ci</option> <option value="big5_chinese_nopad_ci" title="Traditional Chinese, no-pad, case-insensitive">big5_chinese_nopad_ci</option> <option value="big5_nopad_bin" title="Traditional Chinese, no-pad, binary">big5_nopad_bin</option> </optgroup> <optgroup label="binary" title="Binary pseudo charset"> <option value="binary" title="Binary">binary</option> </optgroup> <optgroup label="cp1250" title="Windows Central European"> <option value="cp1250_bin" title="Central European, binary">cp1250_bin</option> <option value="cp1250_croatian_ci" title="Croatian, case-insensitive">cp1250_croatian_ci</option> <option value="cp1250_czech_cs" title="Czech, case-sensitive">cp1250_czech_cs</option> <option value="cp1250_general_ci" title="Central European, case-insensitive">cp1250_general_ci</option> <option value="cp1250_general_nopad_ci" title="Central European, no-pad, case-insensitive">cp1250_general_nopad_ci</option> <option value="cp1250_nopad_bin" title="Central European, no-pad, binary">cp1250_nopad_bin</option> <option value="cp1250_polish_ci" title="Polish, case-insensitive">cp1250_polish_ci</option> </optgroup> <optgroup label="cp1251" title="Windows Cyrillic"> <option value="cp1251_bin" title="Cyrillic, binary">cp1251_bin</option> <option value="cp1251_bulgarian_ci" title="Bulgarian, case-insensitive">cp1251_bulgarian_ci</option> <option value="cp1251_general_ci" title="Cyrillic, case-insensitive">cp1251_general_ci</option> <option value="cp1251_general_cs" title="Cyrillic, case-sensitive">cp1251_general_cs</option> <option value="cp1251_general_nopad_ci" title="Cyrillic, no-pad, case-insensitive">cp1251_general_nopad_ci</option> <option value="cp1251_nopad_bin" title="Cyrillic, no-pad, binary">cp1251_nopad_bin</option> <option value="cp1251_ukrainian_ci" title="Ukrainian, case-insensitive">cp1251_ukrainian_ci</option> </optgroup> <optgroup label="cp1256" title="Windows Arabic"> <option value="cp1256_bin" title="Arabic, binary">cp1256_bin</option> <option value="cp1256_general_ci" title="Arabic, case-insensitive">cp1256_general_ci</option> <option value="cp1256_general_nopad_ci" title="Arabic, no-pad, case-insensitive">cp1256_general_nopad_ci</option> <option value="cp1256_nopad_bin" title="Arabic, no-pad, binary">cp1256_nopad_bin</option> </optgroup> <optgroup label="cp1257" title="Windows Baltic"> <option value="cp1257_bin" title="Baltic, binary">cp1257_bin</option> <option value="cp1257_general_ci" title="Baltic, case-insensitive">cp1257_general_ci</option> <option value="cp1257_general_nopad_ci" title="Baltic, no-pad, case-insensitive">cp1257_general_nopad_ci</option> <option value="cp1257_lithuanian_ci" title="Lithuanian, case-insensitive">cp1257_lithuanian_ci</option> <option value="cp1257_nopad_bin" title="Baltic, no-pad, binary">cp1257_nopad_bin</option> </optgroup> <optgroup label="cp850" title="DOS West European"> <option value="cp850_bin" title="West European, binary">cp850_bin</option> <option value="cp850_general_ci" title="West European, case-insensitive">cp850_general_ci</option> <option value="cp850_general_nopad_ci" title="West European, no-pad, case-insensitive">cp850_general_nopad_ci</option> <option value="cp850_nopad_bin" title="West European, no-pad, binary">cp850_nopad_bin</option> </optgroup> <optgroup label="cp852" title="DOS Central European"> <option value="cp852_bin" title="Central European, binary">cp852_bin</option> <option value="cp852_general_ci" title="Central European, case-insensitive">cp852_general_ci</option> <option value="cp852_general_nopad_ci" title="Central European, no-pad, case-insensitive">cp852_general_nopad_ci</option> <option value="cp852_nopad_bin" title="Central European, no-pad, binary">cp852_nopad_bin</option> </optgroup> <optgroup label="cp866" title="DOS Russian"> <option value="cp866_bin" title="Russian, binary">cp866_bin</option> <option value="cp866_general_ci" title="Russian, case-insensitive">cp866_general_ci</option> <option value="cp866_general_nopad_ci" title="Russian, no-pad, case-insensitive">cp866_general_nopad_ci</option> <option value="cp866_nopad_bin" title="Russian, no-pad, binary">cp866_nopad_bin</option> </optgroup> <optgroup label="cp932" title="SJIS for Windows Japanese"> <option value="cp932_bin" title="Japanese, binary">cp932_bin</option> <option value="cp932_japanese_ci" title="Japanese, case-insensitive">cp932_japanese_ci</option> <option value="cp932_japanese_nopad_ci" title="Japanese, no-pad, case-insensitive">cp932_japanese_nopad_ci</option> <option value="cp932_nopad_bin" title="Japanese, no-pad, binary">cp932_nopad_bin</option> </optgroup> <optgroup label="dec8" title="DEC West European"> <option value="dec8_bin" title="West European, binary">dec8_bin</option> <option value="dec8_nopad_bin" title="West European, no-pad, binary">dec8_nopad_bin</option> <option value="dec8_swedish_ci" title="Swedish, case-insensitive">dec8_swedish_ci</option> <option value="dec8_swedish_nopad_ci" title="Swedish, no-pad, case-insensitive">dec8_swedish_nopad_ci</option> </optgroup> <optgroup label="eucjpms" title="UJIS for Windows Japanese"> <option value="eucjpms_bin" title="Japanese, binary">eucjpms_bin</option> <option value="eucjpms_japanese_ci" title="Japanese, case-insensitive">eucjpms_japanese_ci</option> <option value="eucjpms_japanese_nopad_ci" title="Japanese, no-pad, case-insensitive">eucjpms_japanese_nopad_ci</option> <option value="eucjpms_nopad_bin" title="Japanese, no-pad, binary">eucjpms_nopad_bin</option> </optgroup> <optgroup label="euckr" title="EUC-KR Korean"> <option value="euckr_bin" title="Korean, binary">euckr_bin</option> <option value="euckr_korean_ci" title="Korean, case-insensitive">euckr_korean_ci</option> <option value="euckr_korean_nopad_ci" title="Korean, no-pad, case-insensitive">euckr_korean_nopad_ci</option> <option value="euckr_nopad_bin" title="Korean, no-pad, binary">euckr_nopad_bin</option> </optgroup> <optgroup label="gb2312" title="GB2312 Simplified Chinese"> <option value="gb2312_bin" title="Simplified Chinese, binary">gb2312_bin</option> <option value="gb2312_chinese_ci" title="Simplified Chinese, case-insensitive">gb2312_chinese_ci</option> <option value="gb2312_chinese_nopad_ci" title="Simplified Chinese, no-pad, case-insensitive">gb2312_chinese_nopad_ci</option> <option value="gb2312_nopad_bin" title="Simplified Chinese, no-pad, binary">gb2312_nopad_bin</option> </optgroup> <optgroup label="gbk" title="GBK Simplified Chinese"> <option value="gbk_bin" title="Simplified Chinese, binary">gbk_bin</option> <option value="gbk_chinese_ci" title="Simplified Chinese, case-insensitive">gbk_chinese_ci</option> <option value="gbk_chinese_nopad_ci" title="Simplified Chinese, no-pad, case-insensitive">gbk_chinese_nopad_ci</option> <option value="gbk_nopad_bin" title="Simplified Chinese, no-pad, binary">gbk_nopad_bin</option> </optgroup> <optgroup label="geostd8" title="GEOSTD8 Georgian"> <option value="geostd8_bin" title="Georgian, binary">geostd8_bin</option> <option value="geostd8_general_ci" title="Georgian, case-insensitive">geostd8_general_ci</option> <option value="geostd8_general_nopad_ci" title="Georgian, no-pad, case-insensitive">geostd8_general_nopad_ci</option> <option value="geostd8_nopad_bin" title="Georgian, no-pad, binary">geostd8_nopad_bin</option> </optgroup> <optgroup label="greek" title="ISO 8859-7 Greek"> <option value="greek_bin" title="Greek, binary">greek_bin</option> <option value="greek_general_ci" title="Greek, case-insensitive">greek_general_ci</option> <option value="greek_general_nopad_ci" title="Greek, no-pad, case-insensitive">greek_general_nopad_ci</option> <option value="greek_nopad_bin" title="Greek, no-pad, binary">greek_nopad_bin</option> </optgroup> <optgroup label="hebrew" title="ISO 8859-8 Hebrew"> <option value="hebrew_bin" title="Hebrew, binary">hebrew_bin</option> <option value="hebrew_general_ci" title="Hebrew, case-insensitive">hebrew_general_ci</option> <option value="hebrew_general_nopad_ci" title="Hebrew, no-pad, case-insensitive">hebrew_general_nopad_ci</option> <option value="hebrew_nopad_bin" title="Hebrew, no-pad, binary">hebrew_nopad_bin</option> </optgroup> <optgroup label="hp8" title="HP West European"> <option value="hp8_bin" title="West European, binary">hp8_bin</option> <option value="hp8_english_ci" title="English, case-insensitive">hp8_english_ci</option> <option value="hp8_english_nopad_ci" title="English, no-pad, case-insensitive">hp8_english_nopad_ci</option> <option value="hp8_nopad_bin" title="West European, no-pad, binary">hp8_nopad_bin</option> </optgroup> <optgroup label="keybcs2" title="DOS Kamenicky Czech-Slovak"> <option value="keybcs2_bin" title="Czech-Slovak, binary">keybcs2_bin</option> <option value="keybcs2_general_ci" title="Czech-Slovak, case-insensitive">keybcs2_general_ci</option> <option value="keybcs2_general_nopad_ci" title="Czech-Slovak, no-pad, case-insensitive">keybcs2_general_nopad_ci</option> <option value="keybcs2_nopad_bin" title="Czech-Slovak, no-pad, binary">keybcs2_nopad_bin</option> </optgroup> <optgroup label="koi8r" title="KOI8-R Relcom Russian"> <option value="koi8r_bin" title="Russian, binary">koi8r_bin</option> <option value="koi8r_general_ci" title="Russian, case-insensitive">koi8r_general_ci</option> <option value="koi8r_general_nopad_ci" title="Russian, no-pad, case-insensitive">koi8r_general_nopad_ci</option> <option value="koi8r_nopad_bin" title="Russian, no-pad, binary">koi8r_nopad_bin</option> </optgroup> <optgroup label="koi8u" title="KOI8-U Ukrainian"> <option value="koi8u_bin" title="Ukrainian, binary">koi8u_bin</option> <option value="koi8u_general_ci" title="Ukrainian, case-insensitive">koi8u_general_ci</option> <option value="koi8u_general_nopad_ci" title="Ukrainian, no-pad, case-insensitive">koi8u_general_nopad_ci</option> <option value="koi8u_nopad_bin" title="Ukrainian, no-pad, binary">koi8u_nopad_bin</option> </optgroup> <optgroup label="latin1" title="cp1252 West European"> <option value="latin1_bin" title="West European, binary">latin1_bin</option> <option value="latin1_danish_ci" title="Danish, case-insensitive">latin1_danish_ci</option> <option value="latin1_general_ci" title="West European, case-insensitive">latin1_general_ci</option> <option value="latin1_general_cs" title="West European, case-sensitive">latin1_general_cs</option> <option value="latin1_german1_ci" title="German (dictionary order), case-insensitive">latin1_german1_ci</option> <option value="latin1_german2_ci" title="German (phone book order), case-insensitive">latin1_german2_ci</option> <option value="latin1_nopad_bin" title="West European, no-pad, binary">latin1_nopad_bin</option> <option value="latin1_spanish_ci" title="Spanish (modern), case-insensitive">latin1_spanish_ci</option> <option value="latin1_swedish_ci" title="Swedish, case-insensitive">latin1_swedish_ci</option> <option value="latin1_swedish_nopad_ci" title="Swedish, no-pad, case-insensitive">latin1_swedish_nopad_ci</option> </optgroup> <optgroup label="latin2" title="ISO 8859-2 Central European"> <option value="latin2_bin" title="Central European, binary">latin2_bin</option> <option value="latin2_croatian_ci" title="Croatian, case-insensitive">latin2_croatian_ci</option> <option value="latin2_czech_cs" title="Czech, case-sensitive">latin2_czech_cs</option> <option value="latin2_general_ci" title="Central European, case-insensitive">latin2_general_ci</option> <option value="latin2_general_nopad_ci" title="Central European, no-pad, case-insensitive">latin2_general_nopad_ci</option> <option value="latin2_hungarian_ci" title="Hungarian, case-insensitive">latin2_hungarian_ci</option> <option value="latin2_nopad_bin" title="Central European, no-pad, binary">latin2_nopad_bin</option> </optgroup> <optgroup label="latin5" title="ISO 8859-9 Turkish"> <option value="latin5_bin" title="Turkish, binary">latin5_bin</option> <option value="latin5_nopad_bin" title="Turkish, no-pad, binary">latin5_nopad_bin</option> <option value="latin5_turkish_ci" title="Turkish, case-insensitive">latin5_turkish_ci</option> <option value="latin5_turkish_nopad_ci" title="Turkish, no-pad, case-insensitive">latin5_turkish_nopad_ci</option> </optgroup> <optgroup label="latin7" title="ISO 8859-13 Baltic"> <option value="latin7_bin" title="Baltic, binary">latin7_bin</option> <option value="latin7_estonian_cs" title="Estonian, case-sensitive">latin7_estonian_cs</option> <option value="latin7_general_ci" title="Baltic, case-insensitive">latin7_general_ci</option> <option value="latin7_general_cs" title="Baltic, case-sensitive">latin7_general_cs</option> <option value="latin7_general_nopad_ci" title="Baltic, no-pad, case-insensitive">latin7_general_nopad_ci</option> <option value="latin7_nopad_bin" title="Baltic, no-pad, binary">latin7_nopad_bin</option> </optgroup> <optgroup label="macce" title="Mac Central European"> <option value="macce_bin" title="Central European, binary">macce_bin</option> <option value="macce_general_ci" title="Central European, case-insensitive">macce_general_ci</option> <option value="macce_general_nopad_ci" title="Central European, no-pad, case-insensitive">macce_general_nopad_ci</option> <option value="macce_nopad_bin" title="Central European, no-pad, binary">macce_nopad_bin</option> </optgroup> <optgroup label="macroman" title="Mac West European"> <option value="macroman_bin" title="West European, binary">macroman_bin</option> <option value="macroman_general_ci" title="West European, case-insensitive">macroman_general_ci</option> <option value="macroman_general_nopad_ci" title="West European, no-pad, case-insensitive">macroman_general_nopad_ci</option> <option value="macroman_nopad_bin" title="West European, no-pad, binary">macroman_nopad_bin</option> </optgroup> <optgroup label="sjis" title="Shift-JIS Japanese"> <option value="sjis_bin" title="Japanese, binary">sjis_bin</option> <option value="sjis_japanese_ci" title="Japanese, case-insensitive">sjis_japanese_ci</option> <option value="sjis_japanese_nopad_ci" title="Japanese, no-pad, case-insensitive">sjis_japanese_nopad_ci</option> <option value="sjis_nopad_bin" title="Japanese, no-pad, binary">sjis_nopad_bin</option> </optgroup> <optgroup label="swe7" title="7bit Swedish"> <option value="swe7_bin" title="Swedish, binary">swe7_bin</option> <option value="swe7_nopad_bin" title="Swedish, no-pad, binary">swe7_nopad_bin</option> <option value="swe7_swedish_ci" title="Swedish, case-insensitive">swe7_swedish_ci</option> <option value="swe7_swedish_nopad_ci" title="Swedish, no-pad, case-insensitive">swe7_swedish_nopad_ci</option> </optgroup> <optgroup label="tis620" title="TIS620 Thai"> <option value="tis620_bin" title="Thai, binary">tis620_bin</option> <option value="tis620_nopad_bin" title="Thai, no-pad, binary">tis620_nopad_bin</option> <option value="tis620_thai_ci" title="Thai, case-insensitive">tis620_thai_ci</option> <option value="tis620_thai_nopad_ci" title="Thai, no-pad, case-insensitive">tis620_thai_nopad_ci</option> </optgroup> <optgroup label="ucs2" title="UCS-2 Unicode"> <option value="ucs2_bin" title="Unicode, binary">ucs2_bin</option> <option value="ucs2_croatian_ci" title="Croatian, case-insensitive">ucs2_croatian_ci</option> <option value="ucs2_croatian_mysql561_ci" title="Croatian (MySQL 5.6.1), case-insensitive">ucs2_croatian_mysql561_ci</option> <option value="ucs2_czech_ci" title="Czech, case-insensitive">ucs2_czech_ci</option> <option value="ucs2_danish_ci" title="Danish, case-insensitive">ucs2_danish_ci</option> <option value="ucs2_esperanto_ci" title="Esperanto, case-insensitive">ucs2_esperanto_ci</option> <option value="ucs2_estonian_ci" title="Estonian, case-insensitive">ucs2_estonian_ci</option> <option value="ucs2_general_ci" title="Unicode, case-insensitive">ucs2_general_ci</option> <option value="ucs2_general_mysql500_ci" title="Unicode (MySQL 5.0.0), case-insensitive">ucs2_general_mysql500_ci</option> <option value="ucs2_general_nopad_ci" title="Unicode, no-pad, case-insensitive">ucs2_general_nopad_ci</option> <option value="ucs2_german2_ci" title="German (phone book order), case-insensitive">ucs2_german2_ci</option> <option value="ucs2_hungarian_ci" title="Hungarian, case-insensitive">ucs2_hungarian_ci</option> <option value="ucs2_icelandic_ci" title="Icelandic, case-insensitive">ucs2_icelandic_ci</option> <option value="ucs2_latvian_ci" title="Latvian, case-insensitive">ucs2_latvian_ci</option> <option value="ucs2_lithuanian_ci" title="Lithuanian, case-insensitive">ucs2_lithuanian_ci</option> <option value="ucs2_myanmar_ci" title="Burmese, case-insensitive">ucs2_myanmar_ci</option> <option value="ucs2_nopad_bin" title="Unicode, no-pad, binary">ucs2_nopad_bin</option> <option value="ucs2_persian_ci" title="Persian, case-insensitive">ucs2_persian_ci</option> <option value="ucs2_polish_ci" title="Polish, case-insensitive">ucs2_polish_ci</option> <option value="ucs2_roman_ci" title="West European, case-insensitive">ucs2_roman_ci</option> <option value="ucs2_romanian_ci" title="Romanian, case-insensitive">ucs2_romanian_ci</option> <option value="ucs2_sinhala_ci" title="Sinhalese, case-insensitive">ucs2_sinhala_ci</option> <option value="ucs2_slovak_ci" title="Slovak, case-insensitive">ucs2_slovak_ci</option> <option value="ucs2_slovenian_ci" title="Slovenian, case-insensitive">ucs2_slovenian_ci</option> <option value="ucs2_spanish2_ci" title="Spanish (traditional), case-insensitive">ucs2_spanish2_ci</option> <option value="ucs2_spanish_ci" title="Spanish (modern), case-insensitive">ucs2_spanish_ci</option> <option value="ucs2_swedish_ci" title="Swedish, case-insensitive">ucs2_swedish_ci</option> <option value="ucs2_thai_520_w2" title="Thai (UCA 5.2.0), multi-level">ucs2_thai_520_w2</option> <option value="ucs2_turkish_ci" title="Turkish, case-insensitive">ucs2_turkish_ci</option> <option value="ucs2_unicode_520_ci" title="Unicode (UCA 5.2.0), case-insensitive">ucs2_unicode_520_ci</option> <option value="ucs2_unicode_520_nopad_ci" title="Unicode (UCA 5.2.0), no-pad, case-insensitive">ucs2_unicode_520_nopad_ci</option> <option value="ucs2_unicode_ci" title="Unicode, case-insensitive">ucs2_unicode_ci</option> <option value="ucs2_unicode_nopad_ci" title="Unicode, no-pad, case-insensitive">ucs2_unicode_nopad_ci</option> <option value="ucs2_vietnamese_ci" title="Vietnamese, case-insensitive">ucs2_vietnamese_ci</option> </optgroup> <optgroup label="ujis" title="EUC-JP Japanese"> <option value="ujis_bin" title="Japanese, binary">ujis_bin</option> <option value="ujis_japanese_ci" title="Japanese, case-insensitive">ujis_japanese_ci</option> <option value="ujis_japanese_nopad_ci" title="Japanese, no-pad, case-insensitive">ujis_japanese_nopad_ci</option> <option value="ujis_nopad_bin" title="Japanese, no-pad, binary">ujis_nopad_bin</option> </optgroup> <optgroup label="utf16" title="UTF-16 Unicode"> <option value="utf16_bin" title="Unicode, binary">utf16_bin</option> <option value="utf16_croatian_ci" title="Croatian, case-insensitive">utf16_croatian_ci</option> <option value="utf16_croatian_mysql561_ci" title="Croatian (MySQL 5.6.1), case-insensitive">utf16_croatian_mysql561_ci</option> <option value="utf16_czech_ci" title="Czech, case-insensitive">utf16_czech_ci</option> <option value="utf16_danish_ci" title="Danish, case-insensitive">utf16_danish_ci</option> <option value="utf16_esperanto_ci" title="Esperanto, case-insensitive">utf16_esperanto_ci</option> <option value="utf16_estonian_ci" title="Estonian, case-insensitive">utf16_estonian_ci</option> <option value="utf16_general_ci" title="Unicode, case-insensitive">utf16_general_ci</option> <option value="utf16_general_nopad_ci" title="Unicode, no-pad, case-insensitive">utf16_general_nopad_ci</option> <option value="utf16_german2_ci" title="German (phone book order), case-insensitive">utf16_german2_ci</option> <option value="utf16_hungarian_ci" title="Hungarian, case-insensitive">utf16_hungarian_ci</option> <option value="utf16_icelandic_ci" title="Icelandic, case-insensitive">utf16_icelandic_ci</option> <option value="utf16_latvian_ci" title="Latvian, case-insensitive">utf16_latvian_ci</option> <option value="utf16_lithuanian_ci" title="Lithuanian, case-insensitive">utf16_lithuanian_ci</option> <option value="utf16_myanmar_ci" title="Burmese, case-insensitive">utf16_myanmar_ci</option> <option value="utf16_nopad_bin" title="Unicode, no-pad, binary">utf16_nopad_bin</option> <option value="utf16_persian_ci" title="Persian, case-insensitive">utf16_persian_ci</option> <option value="utf16_polish_ci" title="Polish, case-insensitive">utf16_polish_ci</option> <option value="utf16_roman_ci" title="West European, case-insensitive">utf16_roman_ci</option> <option value="utf16_romanian_ci" title="Romanian, case-insensitive">utf16_romanian_ci</option> <option value="utf16_sinhala_ci" title="Sinhalese, case-insensitive">utf16_sinhala_ci</option> <option value="utf16_slovak_ci" title="Slovak, case-insensitive">utf16_slovak_ci</option> <option value="utf16_slovenian_ci" title="Slovenian, case-insensitive">utf16_slovenian_ci</option> <option value="utf16_spanish2_ci" title="Spanish (traditional), case-insensitive">utf16_spanish2_ci</option> <option value="utf16_spanish_ci" title="Spanish (modern), case-insensitive">utf16_spanish_ci</option> <option value="utf16_swedish_ci" title="Swedish, case-insensitive">utf16_swedish_ci</option> <option value="utf16_thai_520_w2" title="Thai (UCA 5.2.0), multi-level">utf16_thai_520_w2</option> <option value="utf16_turkish_ci" title="Turkish, case-insensitive">utf16_turkish_ci</option> <option value="utf16_unicode_520_ci" title="Unicode (UCA 5.2.0), case-insensitive">utf16_unicode_520_ci</option> <option value="utf16_unicode_520_nopad_ci" title="Unicode (UCA 5.2.0), no-pad, case-insensitive">utf16_unicode_520_nopad_ci</option> <option value="utf16_unicode_ci" title="Unicode, case-insensitive">utf16_unicode_ci</option> <option value="utf16_unicode_nopad_ci" title="Unicode, no-pad, case-insensitive">utf16_unicode_nopad_ci</option> <option value="utf16_vietnamese_ci" title="Vietnamese, case-insensitive">utf16_vietnamese_ci</option> </optgroup> <optgroup label="utf16le" title="UTF-16LE Unicode"> <option value="utf16le_bin" title="Unicode, binary">utf16le_bin</option> <option value="utf16le_general_ci" title="Unicode, case-insensitive">utf16le_general_ci</option> <option value="utf16le_general_nopad_ci" title="Unicode, no-pad, case-insensitive">utf16le_general_nopad_ci</option> <option value="utf16le_nopad_bin" title="Unicode, no-pad, binary">utf16le_nopad_bin</option> </optgroup> <optgroup label="utf32" title="UTF-32 Unicode"> <option value="utf32_bin" title="Unicode, binary">utf32_bin</option> <option value="utf32_croatian_ci" title="Croatian, case-insensitive">utf32_croatian_ci</option> <option value="utf32_croatian_mysql561_ci" title="Croatian (MySQL 5.6.1), case-insensitive">utf32_croatian_mysql561_ci</option> <option value="utf32_czech_ci" title="Czech, case-insensitive">utf32_czech_ci</option> <option value="utf32_danish_ci" title="Danish, case-insensitive">utf32_danish_ci</option> <option value="utf32_esperanto_ci" title="Esperanto, case-insensitive">utf32_esperanto_ci</option> <option value="utf32_estonian_ci" title="Estonian, case-insensitive">utf32_estonian_ci</option> <option value="utf32_general_ci" title="Unicode, case-insensitive">utf32_general_ci</option> <option value="utf32_general_nopad_ci" title="Unicode, no-pad, case-insensitive">utf32_general_nopad_ci</option> <option value="utf32_german2_ci" title="German (phone book order), case-insensitive">utf32_german2_ci</option> <option value="utf32_hungarian_ci" title="Hungarian, case-insensitive">utf32_hungarian_ci</option> <option value="utf32_icelandic_ci" title="Icelandic, case-insensitive">utf32_icelandic_ci</option> <option value="utf32_latvian_ci" title="Latvian, case-insensitive">utf32_latvian_ci</option> <option value="utf32_lithuanian_ci" title="Lithuanian, case-insensitive">utf32_lithuanian_ci</option> <option value="utf32_myanmar_ci" title="Burmese, case-insensitive">utf32_myanmar_ci</option> <option value="utf32_nopad_bin" title="Unicode, no-pad, binary">utf32_nopad_bin</option> <option value="utf32_persian_ci" title="Persian, case-insensitive">utf32_persian_ci</option> <option value="utf32_polish_ci" title="Polish, case-insensitive">utf32_polish_ci</option> <option value="utf32_roman_ci" title="West European, case-insensitive">utf32_roman_ci</option> <option value="utf32_romanian_ci" title="Romanian, case-insensitive">utf32_romanian_ci</option> <option value="utf32_sinhala_ci" title="Sinhalese, case-insensitive">utf32_sinhala_ci</option> <option value="utf32_slovak_ci" title="Slovak, case-insensitive">utf32_slovak_ci</option> <option value="utf32_slovenian_ci" title="Slovenian, case-insensitive">utf32_slovenian_ci</option> <option value="utf32_spanish2_ci" title="Spanish (traditional), case-insensitive">utf32_spanish2_ci</option> <option value="utf32_spanish_ci" title="Spanish (modern), case-insensitive">utf32_spanish_ci</option> <option value="utf32_swedish_ci" title="Swedish, case-insensitive">utf32_swedish_ci</option> <option value="utf32_thai_520_w2" title="Thai (UCA 5.2.0), multi-level">utf32_thai_520_w2</option> <option value="utf32_turkish_ci" title="Turkish, case-insensitive">utf32_turkish_ci</option> <option value="utf32_unicode_520_ci" title="Unicode (UCA 5.2.0), case-insensitive">utf32_unicode_520_ci</option> <option value="utf32_unicode_520_nopad_ci" title="Unicode (UCA 5.2.0), no-pad, case-insensitive">utf32_unicode_520_nopad_ci</option> <option value="utf32_unicode_ci" title="Unicode, case-insensitive">utf32_unicode_ci</option> <option value="utf32_unicode_nopad_ci" title="Unicode, no-pad, case-insensitive">utf32_unicode_nopad_ci</option> <option value="utf32_vietnamese_ci" title="Vietnamese, case-insensitive">utf32_vietnamese_ci</option> </optgroup> <optgroup label="utf8" title="UTF-8 Unicode"> <option value="utf8_bin" title="Unicode, binary">utf8_bin</option> <option value="utf8_croatian_ci" title="Croatian, case-insensitive">utf8_croatian_ci</option> <option value="utf8_croatian_mysql561_ci" title="Croatian (MySQL 5.6.1), case-insensitive">utf8_croatian_mysql561_ci</option> <option value="utf8_czech_ci" title="Czech, case-insensitive">utf8_czech_ci</option> <option value="utf8_danish_ci" title="Danish, case-insensitive">utf8_danish_ci</option> <option value="utf8_esperanto_ci" title="Esperanto, case-insensitive">utf8_esperanto_ci</option> <option value="utf8_estonian_ci" title="Estonian, case-insensitive">utf8_estonian_ci</option> <option value="utf8_general_ci" title="Unicode, case-insensitive">utf8_general_ci</option> <option value="utf8_general_mysql500_ci" title="Unicode (MySQL 5.0.0), case-insensitive">utf8_general_mysql500_ci</option> <option value="utf8_general_nopad_ci" title="Unicode, no-pad, case-insensitive">utf8_general_nopad_ci</option> <option value="utf8_german2_ci" title="German (phone book order), case-insensitive">utf8_german2_ci</option> <option value="utf8_hungarian_ci" title="Hungarian, case-insensitive">utf8_hungarian_ci</option> <option value="utf8_icelandic_ci" title="Icelandic, case-insensitive">utf8_icelandic_ci</option> <option value="utf8_latvian_ci" title="Latvian, case-insensitive">utf8_latvian_ci</option> <option value="utf8_lithuanian_ci" title="Lithuanian, case-insensitive">utf8_lithuanian_ci</option> <option value="utf8_myanmar_ci" title="Burmese, case-insensitive">utf8_myanmar_ci</option> <option value="utf8_nopad_bin" title="Unicode, no-pad, binary">utf8_nopad_bin</option> <option value="utf8_persian_ci" title="Persian, case-insensitive">utf8_persian_ci</option> <option value="utf8_polish_ci" title="Polish, case-insensitive">utf8_polish_ci</option> <option value="utf8_roman_ci" title="West European, case-insensitive">utf8_roman_ci</option> <option value="utf8_romanian_ci" title="Romanian, case-insensitive">utf8_romanian_ci</option> <option value="utf8_sinhala_ci" title="Sinhalese, case-insensitive">utf8_sinhala_ci</option> <option value="utf8_slovak_ci" title="Slovak, case-insensitive">utf8_slovak_ci</option> <option value="utf8_slovenian_ci" title="Slovenian, case-insensitive">utf8_slovenian_ci</option> <option value="utf8_spanish2_ci" title="Spanish (traditional), case-insensitive">utf8_spanish2_ci</option> <option value="utf8_spanish_ci" title="Spanish (modern), case-insensitive">utf8_spanish_ci</option> <option value="utf8_swedish_ci" title="Swedish, case-insensitive">utf8_swedish_ci</option> <option value="utf8_thai_520_w2" title="Thai (UCA 5.2.0), multi-level">utf8_thai_520_w2</option> <option value="utf8_turkish_ci" title="Turkish, case-insensitive">utf8_turkish_ci</option> <option value="utf8_unicode_520_ci" title="Unicode (UCA 5.2.0), case-insensitive">utf8_unicode_520_ci</option> <option value="utf8_unicode_520_nopad_ci" title="Unicode (UCA 5.2.0), no-pad, case-insensitive">utf8_unicode_520_nopad_ci</option> <option value="utf8_unicode_ci" title="Unicode, case-insensitive">utf8_unicode_ci</option> <option value="utf8_unicode_nopad_ci" title="Unicode, no-pad, case-insensitive">utf8_unicode_nopad_ci</option> <option value="utf8_vietnamese_ci" title="Vietnamese, case-insensitive">utf8_vietnamese_ci</option> </optgroup> <optgroup label="utf8mb4" title="UTF-8 Unicode"> <option value="utf8mb4_bin" title="Unicode (UCA 4.0.0), binary">utf8mb4_bin</option> <option value="utf8mb4_croatian_ci" title="Croatian (UCA 4.0.0), case-insensitive">utf8mb4_croatian_ci</option> <option value="utf8mb4_croatian_mysql561_ci" title="Croatian (MySQL 5.6.1), case-insensitive">utf8mb4_croatian_mysql561_ci</option> <option value="utf8mb4_czech_ci" title="Czech (UCA 4.0.0), case-insensitive">utf8mb4_czech_ci</option> <option value="utf8mb4_danish_ci" title="Danish (UCA 4.0.0), case-insensitive">utf8mb4_danish_ci</option> <option value="utf8mb4_esperanto_ci" title="Esperanto (UCA 4.0.0), case-insensitive">utf8mb4_esperanto_ci</option> <option value="utf8mb4_estonian_ci" title="Estonian (UCA 4.0.0), case-insensitive">utf8mb4_estonian_ci</option> <option value="utf8mb4_general_ci" title="Unicode (UCA 4.0.0), case-insensitive">utf8mb4_general_ci</option> <option value="utf8mb4_general_nopad_ci" title="Unicode (UCA 4.0.0), no-pad, case-insensitive">utf8mb4_general_nopad_ci</option> <option value="utf8mb4_german2_ci" title="German (phone book order) (UCA 4.0.0), case-insensitive">utf8mb4_german2_ci</option> <option value="utf8mb4_hungarian_ci" title="Hungarian (UCA 4.0.0), case-insensitive">utf8mb4_hungarian_ci</option> <option value="utf8mb4_icelandic_ci" title="Icelandic (UCA 4.0.0), case-insensitive">utf8mb4_icelandic_ci</option> <option value="utf8mb4_latvian_ci" title="Latvian (UCA 4.0.0), case-insensitive">utf8mb4_latvian_ci</option> <option value="utf8mb4_lithuanian_ci" title="Lithuanian (UCA 4.0.0), case-insensitive">utf8mb4_lithuanian_ci</option> <option value="utf8mb4_myanmar_ci" title="Burmese (UCA 4.0.0), case-insensitive">utf8mb4_myanmar_ci</option> <option value="utf8mb4_nopad_bin" title="Unicode (UCA 4.0.0), no-pad, binary">utf8mb4_nopad_bin</option> <option value="utf8mb4_persian_ci" title="Persian (UCA 4.0.0), case-insensitive">utf8mb4_persian_ci</option> <option value="utf8mb4_polish_ci" title="Polish (UCA 4.0.0), case-insensitive">utf8mb4_polish_ci</option> <option value="utf8mb4_roman_ci" title="West European (UCA 4.0.0), case-insensitive">utf8mb4_roman_ci</option> <option value="utf8mb4_romanian_ci" title="Romanian (UCA 4.0.0), case-insensitive">utf8mb4_romanian_ci</option> <option value="utf8mb4_sinhala_ci" title="Sinhalese (UCA 4.0.0), case-insensitive">utf8mb4_sinhala_ci</option> <option value="utf8mb4_slovak_ci" title="Slovak (UCA 4.0.0), case-insensitive">utf8mb4_slovak_ci</option> <option value="utf8mb4_slovenian_ci" title="Slovenian (UCA 4.0.0), case-insensitive">utf8mb4_slovenian_ci</option> <option value="utf8mb4_spanish2_ci" title="Spanish (traditional) (UCA 4.0.0), case-insensitive">utf8mb4_spanish2_ci</option> <option value="utf8mb4_spanish_ci" title="Spanish (modern) (UCA 4.0.0), case-insensitive">utf8mb4_spanish_ci</option> <option value="utf8mb4_swedish_ci" title="Swedish (UCA 4.0.0), case-insensitive">utf8mb4_swedish_ci</option> <option value="utf8mb4_thai_520_w2" title="Thai (UCA 5.2.0), multi-level">utf8mb4_thai_520_w2</option> <option value="utf8mb4_turkish_ci" title="Turkish (UCA 4.0.0), case-insensitive">utf8mb4_turkish_ci</option> <option value="utf8mb4_unicode_520_ci" title="Unicode (UCA 5.2.0), case-insensitive">utf8mb4_unicode_520_ci</option> <option value="utf8mb4_unicode_520_nopad_ci" title="Unicode (UCA 5.2.0), no-pad, case-insensitive">utf8mb4_unicode_520_nopad_ci</option> <option value="utf8mb4_unicode_ci" title="Unicode (UCA 4.0.0), case-insensitive" selected>utf8mb4_unicode_ci</option> <option value="utf8mb4_unicode_nopad_ci" title="Unicode (UCA 4.0.0), no-pad, case-insensitive">utf8mb4_unicode_nopad_ci</option> <option value="utf8mb4_vietnamese_ci" title="Vietnamese (UCA 4.0.0), case-insensitive">utf8mb4_vietnamese_ci</option> </optgroup> </select> </div> </form> </li> <li id="li_user_preferences" class="list-group-item"> <a href="index.php?route=/preferences/manage&lang=en"> <span class="text-nowrap"><img src="themes/dot.gif" title="More settings" alt="More settings" class="icon ic_b_tblops"> More settings</span> </a> </li> </ul> </div> <div class="card mt-4"> <div class="card-header"> Appearance settings </div> <ul class="list-group list-group-flush"> <li id="li_select_lang" class="list-group-item"> <form method="get" action="index.php?route=/&lang=en" class="row row-cols-lg-auto align-items-center disableAjax"> <input type="hidden" name="db" value=""><input type="hidden" name="table" value=""><input type="hidden" name="lang" value="en"><input type="hidden" name="token" value="68796d444825575e6d2d604f364a4658"> <div class="col-12"> <label for="languageSelect" class="col-form-label text-nowrap"> <img src="themes/dot.gif" title="" alt="" class="icon ic_s_lang"> Language <a href="./doc/html/faq.html#faq7-2" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </label> </div> <div class="col-12"> <select name="lang" class="form-select autosubmit w-auto" lang="en" dir="ltr" id="languageSelect"> <option value="sq">Shqip - Albanian</option> <option value="ar">العربية - Arabic</option> <option value="hy">Հայերէն - Armenian</option> <option value="az">Azərbaycanca - Azerbaijani</option> <option value="bn">বাংলা - Bangla</option> <option value="be">Беларуская - Belarusian</option> <option value="bg">Български - Bulgarian</option> <option value="ca">Català - Catalan</option> <option value="zh_cn">中文 - Chinese simplified</option> <option value="zh_tw">中文 - Chinese traditional</option> <option value="cs">Čeština - Czech</option> <option value="da">Dansk - Danish</option> <option value="nl">Nederlands - Dutch</option> <option value="en" selected>English</option> <option value="en_gb">English (United Kingdom)</option> <option value="et">Eesti - Estonian</option> <option value="fi">Suomi - Finnish</option> <option value="fr">Français - French</option> <option value="gl">Galego - Galician</option> <option value="de">Deutsch - German</option> <option value="el">Ελληνικά - Greek</option> <option value="he">עברית - Hebrew</option> <option value="hu">Magyar - Hungarian</option> <option value="id">Bahasa Indonesia - Indonesian</option> <option value="ia">Interlingua</option> <option value="it">Italiano - Italian</option> <option value="ja">日本語 - Japanese</option> <option value="kk">Қазақ - Kazakh</option> <option value="ko">한국어 - Korean</option> <option value="nb">Norsk - Norwegian</option> <option value="pl">Polski - Polish</option> <option value="pt">Português - Portuguese</option> <option value="pt_br">Português (Brasil) - Portuguese (Brazil)</option> <option value="ro">Română - Romanian</option> <option value="ru">Русский - Russian</option> <option value="si">සිංහල - Sinhala</option> <option value="sk">Slovenčina - Slovak</option> <option value="sl">Slovenščina - Slovenian</option> <option value="es">Español - Spanish</option> <option value="sv">Svenska - Swedish</option> <option value="tr">Türkçe - Turkish</option> <option value="uk">Українська - Ukrainian</option> <option value="vi">Tiếng Việt - Vietnamese</option> </select> </div> </form> </li> <li id="li_select_theme" class="list-group-item"> <form method="post" action="index.php?route=/themes/set&lang=en" class="row row-cols-lg-auto align-items-center disableAjax"> <input type="hidden" name="lang" value="en"><input type="hidden" name="token" value="68796d444825575e6d2d604f364a4658"> <div class="col-12"> <label for="themeSelect" class="col-form-label"> <span class="text-nowrap"><img src="themes/dot.gif" title="Theme" alt="Theme" class="icon ic_s_theme"> Theme</span> </label> </div> <div class="col-12"> <div class="input-group"> <select name="set_theme" class="form-select autosubmit" lang="en" dir="ltr" id="themeSelect"> <option value="bootstrap">Bootstrap</option> <option value="metro">Metro</option> <option value="original">Original</option> <option value="pmahomme" selected>pmahomme</option> </select> <button type="button" class="btn btn-outline-secondary" data-bs-toggle="modal" data-bs-target="#themesModal"> View all </button> </div> </div> </form> </li> </ul> </div> </div> <div class="col-lg-5 col-12"> <div class="card mt-4"> <div class="card-header"> Database server </div> <ul class="list-group list-group-flush"> <li class="list-group-item"> Server: Localhost via UNIX socket </li> <li class="list-group-item"> Server type: MariaDB </li> <li class="list-group-item"> Server connection: <span class="">SSL is not being used</span> <a href="./doc/html/setup.html#ssl" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </li> <li class="list-group-item"> Server version: 10.4.27-MariaDB - Source distribution </li> <li class="list-group-item"> Protocol version: 10 </li> <li class="list-group-item"> User: root@localhost </li> <li class="list-group-item"> Server charset: <span lang="en" dir="ltr"> UTF-8 Unicode (utf8mb4) </span> </li> </ul> </div> <div class="card mt-4"> <div class="card-header"> Web server </div> <ul class="list-group list-group-flush"> <li class="list-group-item"> Apache/2.4.54 (Unix) OpenSSL/1.1.1s PHP/7.4.33 mod_perl/2.0.12 Perl/v5.34.1 </li> <li class="list-group-item" id="li_mysql_client_version"> Database client version: libmysql - mysqlnd 7.4.33 </li> <li class="list-group-item"> PHP extension: mysqli <a href="./url.php?url=https%3A%2F%2Fwww.php.net%2Fmanual%2Fen%2Fbook.mysqli.php" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> curl <a href="./url.php?url=https%3A%2F%2Fwww.php.net%2Fmanual%2Fen%2Fbook.curl.php" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> mbstring <a href="./url.php?url=https%3A%2F%2Fwww.php.net%2Fmanual%2Fen%2Fbook.mbstring.php" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </li> <li class="list-group-item"> PHP version: 7.4.33 </li> </ul> </div> <div class="card mt-4"> <div class="card-header"> phpMyAdmin </div> <ul class="list-group list-group-flush"> <li id="li_pma_version" class="list-group-item jsversioncheck"> Version information: <span class="version">5.2.0</span> </li> <li class="list-group-item"> <a href="./doc/html/index.html" target="_blank" rel="noopener noreferrer"> Documentation </a> </li> <li class="list-group-item"> <a href="./url.php?url=https%3A%2F%2Fwww.phpmyadmin.net%2F" target="_blank" rel="noopener noreferrer"> Official Homepage </a> </li> <li class="list-group-item"> <a href="./url.php?url=https%3A%2F%2Fwww.phpmyadmin.net%2Fcontribute%2F" target="_blank" rel="noopener noreferrer"> Contribute </a> </li> <li class="list-group-item"> <a href="./url.php?url=https%3A%2F%2Fwww.phpmyadmin.net%2Fsupport%2F" target="_blank" rel="noopener noreferrer"> Get support </a> </li> <li class="list-group-item"> <a href="index.php?route=/changelog&lang=en" target="_blank"> List of changes </a> </li> <li class="list-group-item"> <a href="index.php?route=/license&lang=en" target="_blank"> License </a> </li> </ul> </div> </div> </div> </div> </div> <div class="modal fade" id="themesModal" tabindex="-1" aria-labelledby="themesModalLabel" aria-hidden="true"> <div class="modal-dialog modal-xl"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="themesModalLabel">phpMyAdmin Themes</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"> <div class="spinner-border" role="status"> <span class="visually-hidden">Loading…</span> </div> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> <a href="./url.php?url=https%3A%2F%2Fwww.phpmyadmin.net%2Fthemes%2F#pma_5_2" class="btn btn-primary" rel="noopener noreferrer" target="_blank"> Get more themes! </a> </div> </div> </div> </div> </div> <div id="selflink" class="d-print-none"> <a href="index.php?route=%2F&server=1&lang=en" title="Open new phpMyAdmin window" target="_blank" rel="noopener noreferrer"> <img src="themes/dot.gif" title="Open new phpMyAdmin window" alt="Open new phpMyAdmin window" class="icon ic_window-new"> </a> </div> <div class="clearfloat d-print-none" id="pma_errors"> </div> <script data-cfasync="false" type="text/javascript"> // <![CDATA[ var debugSQLInfo = 'null'; // ]]> </script> </body> </html>Parameter X-WebKit-CSPEvidence default-src 'self' ;script-src 'self' 'unsafe-inline' 'unsafe-eval';referrer no-referrer;style-src 'self' 'unsafe-inline' ;img-src 'self' data: *.tile.openstreetmap.org;object-src 'none';Solution Ensure that your web server, application server, load balancer, etc. is properly configured to set the Content-Security-Policy header.
-
Information Disclosure - Information in Browser localStorage (1)
GET http://localhost/scan/wordpress/
Alert tags Alert description Information was stored in browser localStorage.
This is not unusual or necessarily unsafe - this informational alert has been raised to help you get a better understanding of what this app is doing. For more details see the Client tabs - this information was set directly in the browser and will therefore not necessarily appear in this form in any HTTP(S) messages.
Other info The following data (key=value) was set: wc_cart_hash_67da1dc18a3e11e4f2865063b3ad5420=20aa8bd0fef9e9f711ffa92c9b7a4d8e
Note that this alert will only be raised once for each URL + key.
Request Request line and header section (354 bytes)
GET http://localhost/scan/wordpress/ HTTP/1.1 host: localhost User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:136.0) Gecko/20100101 Firefox/136.0 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: en-CA,en-US;q=0.7,en;q=0.3 Connection: keep-alive Upgrade-Insecure-Requests: 1 Priority: u=0, iRequest body (0 bytes)
Response Status line and header section (361 bytes)
HTTP/1.1 200 OK Date: Sat, 19 Apr 2025 15:16:05 GMT Server: Apache/2.4.54 (Unix) OpenSSL/1.1.1s PHP/7.4.33 mod_perl/2.0.12 Perl/v5.34.1 X-Powered-By: PHP/7.4.33 Link: <http://localhost/scan/wordpress/wp-json/>; rel="https://api.w.org/" Keep-Alive: timeout=5, max=92 Connection: Keep-Alive Content-Type: text/html; charset=UTF-8 content-length: 16710Response body (16710 bytes)
<!doctype html> <html lang="en-US" > <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>yup-here – Just another WordPress site</title> <meta name='robots' content='max-image-preview:large' /> <link rel='dns-prefetch' href='//s.w.org' /> <link rel="alternate" type="application/rss+xml" title="yup-here » Feed" href="http://localhost/scan/wordpress/feed/" /> <link rel="alternate" type="application/rss+xml" title="yup-here » Comments Feed" href="http://localhost/scan/wordpress/comments/feed/" /> <script> window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.1.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.1.0\/svg\/","svgExt":".svg","source":{"concatemoji":"http:\/\/localhost\/scan\/wordpress\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.8"}}; !function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){var a=String.fromCharCode;p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,e),0,0);e=i.toDataURL();return p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,t),0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(!p||!p.fillText)return!1;switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])?!1:!s([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!s([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]);case"emoji":return!s([10084,65039,8205,55357,56613],[10084,65039,8203,55357,56613])}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(n=t.source||{}).concatemoji?c(n.concatemoji):n.wpemoji&&n.twemoji&&(c(n.twemoji),c(n.wpemoji)))}(window,document,window._wpemojiSettings); </script> <style> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 .07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='wc-blocks-integration-css' href='http://localhost/scan/wordpress/wp-content/plugins/woocommerce-payments/vendor/woocommerce/subscriptions-core/build/index.css?ver=3.1.6' media='all' /> <link rel='stylesheet' id='wp-block-library-css' href='http://localhost/scan/wordpress/wp-includes/css/dist/block-library/style.min.css?ver=5.8' media='all' /> <style id='wp-block-library-theme-inline-css'> #start-resizable-editor-section{display:none}.wp-block-audio figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-audio figcaption{color:hsla(0,0%,100%,.65)}.wp-block-code{font-family:Menlo,Consolas,monaco,monospace;color:#1e1e1e;padding:.8em 1em;border:1px solid #ddd;border-radius:4px}.wp-block-embed figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-embed figcaption{color:hsla(0,0%,100%,.65)}.blocks-gallery-caption{color:#555;font-size:13px;text-align:center}.is-dark-theme .blocks-gallery-caption{color:hsla(0,0%,100%,.65)}.wp-block-image figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-image figcaption{color:hsla(0,0%,100%,.65)}.wp-block-pullquote{border-top:4px solid;border-bottom:4px solid;margin-bottom:1.75em;color:currentColor}.wp-block-pullquote__citation,.wp-block-pullquote cite,.wp-block-pullquote footer{color:currentColor;text-transform:uppercase;font-size:.8125em;font-style:normal}.wp-block-quote{border-left:.25em solid;margin:0 0 1.75em;padding-left:1em}.wp-block-quote cite,.wp-block-quote footer{color:currentColor;font-size:.8125em;position:relative;font-style:normal}.wp-block-quote.has-text-align-right{border-left:none;border-right:.25em solid;padding-left:0;padding-right:1em}.wp-block-quote.has-text-align-center{border:none;padding-left:0}.wp-block-quote.is-large,.wp-block-quote.is-style-large{border:none}.wp-block-search .wp-block-search__label{font-weight:700}.wp-block-group.has-background{padding:1.25em 2.375em;margin-top:0;margin-bottom:0}.wp-block-separator{border:none;border-bottom:2px solid;margin-left:auto;margin-right:auto;opacity:.4}.wp-block-separator:not(.is-style-wide):not(.is-style-dots){width:100px}.wp-block-separator.has-background:not(.is-style-dots){border-bottom:none;height:1px}.wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots){height:2px}.wp-block-table thead{border-bottom:3px solid}.wp-block-table tfoot{border-top:3px solid}.wp-block-table td,.wp-block-table th{padding:.5em;border:1px solid;word-break:normal}.wp-block-table figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-table figcaption{color:hsla(0,0%,100%,.65)}.wp-block-video figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-video figcaption{color:hsla(0,0%,100%,.65)}.wp-block-template-part.has-background{padding:1.25em 2.375em;margin-top:0;margin-bottom:0}#end-resizable-editor-section{display:none} </style> <link rel='stylesheet' id='wc-blocks-vendors-style-css' href='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-vendors-style.css?ver=8.5.1' media='all' /> <link rel='stylesheet' id='wc-blocks-style-css' href='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-style.css?ver=8.5.1' media='all' /> <link rel='stylesheet' id='woocommerce-layout-css' href='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/css/woocommerce-layout.css?ver=7.0.0' media='all' /> <link rel='stylesheet' id='woocommerce-smallscreen-css' href='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/css/woocommerce-smallscreen.css?ver=7.0.0' media='only screen and (max-width: 768px)' /> <link rel='stylesheet' id='woocommerce-general-css' href='//localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/css/twenty-twenty-one.css?ver=7.0.0' media='all' /> <style id='woocommerce-inline-inline-css'> .woocommerce form .form-row .required { visibility: visible; } </style> <link rel='stylesheet' id='twenty-twenty-one-style-css' href='http://localhost/scan/wordpress/wp-content/themes/twentytwentyone/style.css?ver=1.4' media='all' /> <link rel='stylesheet' id='twenty-twenty-one-print-style-css' href='http://localhost/scan/wordpress/wp-content/themes/twentytwentyone/assets/css/print.css?ver=1.4' media='print' /> <link rel='stylesheet' id='ecs-styles-css' href='http://localhost/scan/wordpress/wp-content/plugins/ele-custom-skin/assets/css/ecs-style.css?ver=3.1.3' media='all' /> <script src='http://localhost/scan/wordpress/wp-includes/js/jquery/jquery.min.js?ver=3.6.0' id='jquery-core-js'></script> <script src='http://localhost/scan/wordpress/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.3.2' id='jquery-migrate-js'></script> <script id='ecs_ajax_load-js-extra'> var ecs_ajax_params = {"ajaxurl":"http:\/\/localhost\/scan\/wordpress\/wp-admin\/admin-ajax.php","posts":"{\"error\":\"\",\"m\":\"\",\"p\":0,\"post_parent\":\"\",\"subpost\":\"\",\"subpost_id\":\"\",\"attachment\":\"\",\"attachment_id\":0,\"name\":\"\",\"pagename\":\"\",\"page_id\":0,\"second\":\"\",\"minute\":\"\",\"hour\":\"\",\"day\":0,\"monthnum\":0,\"year\":0,\"w\":0,\"category_name\":\"\",\"tag\":\"\",\"cat\":\"\",\"tag_id\":\"\",\"author\":\"\",\"author_name\":\"\",\"feed\":\"\",\"tb\":\"\",\"paged\":0,\"meta_key\":\"\",\"meta_value\":\"\",\"preview\":\"\",\"s\":\"\",\"sentence\":\"\",\"title\":\"\",\"fields\":\"\",\"menu_order\":\"\",\"embed\":\"\",\"category__in\":[],\"category__not_in\":[],\"category__and\":[],\"post__in\":[],\"post__not_in\":[],\"post_name__in\":[],\"tag__in\":[],\"tag__not_in\":[],\"tag__and\":[],\"tag_slug__in\":[],\"tag_slug__and\":[],\"post_parent__in\":[],\"post_parent__not_in\":[],\"author__in\":[],\"author__not_in\":[],\"ignore_sticky_posts\":false,\"suppress_filters\":false,\"cache_results\":true,\"update_post_term_cache\":true,\"lazy_load_term_meta\":true,\"update_post_meta_cache\":true,\"post_type\":\"\",\"posts_per_page\":10,\"nopaging\":false,\"comments_per_page\":\"50\",\"no_found_rows\":false,\"order\":\"DESC\"}"}; </script> <script src='http://localhost/scan/wordpress/wp-content/plugins/ele-custom-skin/assets/js/ecs_ajax_pagination.js?ver=3.1.3' id='ecs_ajax_load-js'></script> <script src='http://localhost/scan/wordpress/wp-content/plugins/ele-custom-skin/assets/js/ecs.js?ver=3.1.3' id='ecs-script-js'></script> <link rel="https://api.w.org/" href="http://localhost/scan/wordpress/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://localhost/scan/wordpress/xmlrpc.php?rsd" /> <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://localhost/scan/wordpress/wp-includes/wlwmanifest.xml" /> <meta name="generator" content="WordPress 5.8" /> <meta name="generator" content="WooCommerce 7.0.0" /> <noscript><style>.woocommerce-product-gallery{ opacity: 1 !important; }</style></noscript> </head> <body class="home blog wp-embed-responsive theme-twentytwentyone woocommerce-no-js is-light-theme no-js hfeed elementor-default elementor-kit-10"> <div id="page" class="site"> <a class="skip-link screen-reader-text" href="#content">Skip to content</a> <header id="masthead" class="site-header has-title-and-tagline" role="banner"> <div class="site-branding"> <h1 class="site-title">yup-here</h1> <p class="site-description"> Just another WordPress site </p> </div><!-- .site-branding --> </header><!-- #masthead --> <div id="content" class="site-content"> <div id="primary" class="content-area"> <main id="main" class="site-main" role="main"> <article id="post-1" class="post-1 post type-post status-publish format-standard hentry category-uncategorized entry"> <header class="entry-header"> <h2 class="entry-title default-max-width"><a href="http://localhost/scan/wordpress/2025/02/28/hello-world/">Hello world!</a></h2></header><!-- .entry-header --> <div class="entry-content"> <p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p> </div><!-- .entry-content --> <footer class="entry-footer default-max-width"> <span class="posted-on">Published <time class="entry-date published updated" datetime="2025-02-28T01:47:30+00:00">February 28, 2025</time></span><div class="post-taxonomies"><span class="cat-links">Categorized as <a href="http://localhost/scan/wordpress/category/uncategorized/" rel="category tag">Uncategorized</a> </span></div> </footer><!-- .entry-footer --> </article><!-- #post-${ID} --> </main><!-- #main --> </div><!-- #primary --> </div><!-- #content --> <aside class="widget-area"> <section id="block-2" class="widget widget_block widget_search"><form role="search" method="get" action="http://localhost/scan/wordpress/" class="wp-block-search__button-outside wp-block-search__text-button wp-block-search"><label for="wp-block-search__input-1" class="wp-block-search__label">Search</label><div class="wp-block-search__inside-wrapper"><input type="search" id="wp-block-search__input-1" class="wp-block-search__input" name="s" value="" placeholder="" required /><button type="submit" class="wp-block-search__button ">Search</button></div></form></section><section id="block-3" class="widget widget_block"><div class="wp-block-group"><div class="wp-block-group__inner-container"><h2>Recent Posts</h2><ul class="wp-block-latest-posts__list wp-block-latest-posts"><li><a href="http://localhost/scan/wordpress/2025/02/28/hello-world/">Hello world!</a></li> </ul></div></div></section><section id="block-4" class="widget widget_block"><div class="wp-block-group"><div class="wp-block-group__inner-container"><h2>Recent Comments</h2><ol class="wp-block-latest-comments"><li class="wp-block-latest-comments__comment"><article><footer class="wp-block-latest-comments__comment-meta"><a class="wp-block-latest-comments__comment-author" href="https://wordpress.org/">A WordPress Commenter</a> on <a class="wp-block-latest-comments__comment-link" href="http://localhost/scan/wordpress/2025/02/28/hello-world/#comment-1">Hello world!</a></footer></article></li></ol></div></div></section> </aside><!-- .widget-area --> <footer id="colophon" class="site-footer" role="contentinfo"> <div class="site-info"> <div class="site-name"> yup-here </div><!-- .site-name --> <div class="powered-by"> Proudly powered by <a href="https://wordpress.org/">WordPress</a>. </div><!-- .powered-by --> </div><!-- .site-info --> </footer><!-- #colophon --> </div><!-- #page --> <script>document.body.classList.remove("no-js");</script> <script> if ( -1 !== navigator.userAgent.indexOf( 'MSIE' ) || -1 !== navigator.appVersion.indexOf( 'Trident/' ) ) { document.body.classList.add( 'is-IE' ); } </script> <script type="text/javascript"> (function () { var c = document.body.className; c = c.replace(/woocommerce-no-js/, 'woocommerce-js'); document.body.className = c; })(); </script> <script src='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js?ver=2.7.0-wc.7.0.0' id='jquery-blockui-js'></script> <script id='wc-add-to-cart-js-extra'> var wc_add_to_cart_params = {"ajax_url":"\/scan\/wordpress\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/scan\/wordpress\/?wc-ajax=%%endpoint%%","i18n_view_cart":"View cart","cart_url":"http:\/\/localhost\/scan\/wordpress\/cart\/","is_cart":"","cart_redirect_after_add":"no"}; </script> <script src='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.min.js?ver=7.0.0' id='wc-add-to-cart-js'></script> <script src='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.min.js?ver=2.1.4-wc.7.0.0' id='js-cookie-js'></script> <script id='woocommerce-js-extra'> var woocommerce_params = {"ajax_url":"\/scan\/wordpress\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/scan\/wordpress\/?wc-ajax=%%endpoint%%"}; </script> <script src='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.min.js?ver=7.0.0' id='woocommerce-js'></script> <script id='wc-cart-fragments-js-extra'> var wc_cart_fragments_params = {"ajax_url":"\/scan\/wordpress\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/scan\/wordpress\/?wc-ajax=%%endpoint%%","cart_hash_key":"wc_cart_hash_67da1dc18a3e11e4f2865063b3ad5420","fragment_name":"wc_fragments_67da1dc18a3e11e4f2865063b3ad5420","request_timeout":"5000"}; </script> <script src='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/js/frontend/cart-fragments.min.js?ver=7.0.0' id='wc-cart-fragments-js'></script> <script id='twenty-twenty-one-ie11-polyfills-js-after'> ( Element.prototype.matches && Element.prototype.closest && window.NodeList && NodeList.prototype.forEach ) || document.write( '<script src="http://localhost/scan/wordpress/wp-content/themes/twentytwentyone/assets/js/polyfills.js?ver=1.4"></scr' + 'ipt>' ); </script> <script src='http://localhost/scan/wordpress/wp-content/themes/twentytwentyone/assets/js/responsive-embeds.js?ver=1.4' id='twenty-twenty-one-responsive-embeds-script-js'></script> <script src='http://localhost/scan/wordpress/wp-includes/js/wp-embed.min.js?ver=5.8' id='wp-embed-js'></script> <script> /(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",(function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())}),!1); </script> </body> </html>Parameter wc_cart_hash_67da1dc18a3e11e4f2865063b3ad5420Solution This is an informational alert and no action is necessary.
-
Information Disclosure - Information in Browser sessionStorage (1)
GET http://localhost/scan/wordpress/
Alert tags Alert description Information was stored in browser sessionStorage.
This is not unusual or necessarily unsafe - this informational alert has been raised to help you get a better understanding of what this app is doing. For more details see the Client tabs - this information was set directly in the browser and will therefore not necessarily appear in this form in any HTTP(S) messages.
Other info The following data (key=value) was set: wc_cart_hash_67da1dc18a3e11e4f2865063b3ad5420=20aa8bd0fef9e9f711ffa92c9b7a4d8e
Note that this alert will only be raised once for each URL + key.
Request Request line and header section (354 bytes)
GET http://localhost/scan/wordpress/ HTTP/1.1 host: localhost User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:136.0) Gecko/20100101 Firefox/136.0 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: en-CA,en-US;q=0.7,en;q=0.3 Connection: keep-alive Upgrade-Insecure-Requests: 1 Priority: u=0, iRequest body (0 bytes)
Response Status line and header section (361 bytes)
HTTP/1.1 200 OK Date: Sat, 19 Apr 2025 15:16:05 GMT Server: Apache/2.4.54 (Unix) OpenSSL/1.1.1s PHP/7.4.33 mod_perl/2.0.12 Perl/v5.34.1 X-Powered-By: PHP/7.4.33 Link: <http://localhost/scan/wordpress/wp-json/>; rel="https://api.w.org/" Keep-Alive: timeout=5, max=92 Connection: Keep-Alive Content-Type: text/html; charset=UTF-8 content-length: 16710Response body (16710 bytes)
<!doctype html> <html lang="en-US" > <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>yup-here – Just another WordPress site</title> <meta name='robots' content='max-image-preview:large' /> <link rel='dns-prefetch' href='//s.w.org' /> <link rel="alternate" type="application/rss+xml" title="yup-here » Feed" href="http://localhost/scan/wordpress/feed/" /> <link rel="alternate" type="application/rss+xml" title="yup-here » Comments Feed" href="http://localhost/scan/wordpress/comments/feed/" /> <script> window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.1.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.1.0\/svg\/","svgExt":".svg","source":{"concatemoji":"http:\/\/localhost\/scan\/wordpress\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.8"}}; !function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){var a=String.fromCharCode;p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,e),0,0);e=i.toDataURL();return p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,t),0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(!p||!p.fillText)return!1;switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])?!1:!s([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!s([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]);case"emoji":return!s([10084,65039,8205,55357,56613],[10084,65039,8203,55357,56613])}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(n=t.source||{}).concatemoji?c(n.concatemoji):n.wpemoji&&n.twemoji&&(c(n.twemoji),c(n.wpemoji)))}(window,document,window._wpemojiSettings); </script> <style> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 .07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='wc-blocks-integration-css' href='http://localhost/scan/wordpress/wp-content/plugins/woocommerce-payments/vendor/woocommerce/subscriptions-core/build/index.css?ver=3.1.6' media='all' /> <link rel='stylesheet' id='wp-block-library-css' href='http://localhost/scan/wordpress/wp-includes/css/dist/block-library/style.min.css?ver=5.8' media='all' /> <style id='wp-block-library-theme-inline-css'> #start-resizable-editor-section{display:none}.wp-block-audio figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-audio figcaption{color:hsla(0,0%,100%,.65)}.wp-block-code{font-family:Menlo,Consolas,monaco,monospace;color:#1e1e1e;padding:.8em 1em;border:1px solid #ddd;border-radius:4px}.wp-block-embed figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-embed figcaption{color:hsla(0,0%,100%,.65)}.blocks-gallery-caption{color:#555;font-size:13px;text-align:center}.is-dark-theme .blocks-gallery-caption{color:hsla(0,0%,100%,.65)}.wp-block-image figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-image figcaption{color:hsla(0,0%,100%,.65)}.wp-block-pullquote{border-top:4px solid;border-bottom:4px solid;margin-bottom:1.75em;color:currentColor}.wp-block-pullquote__citation,.wp-block-pullquote cite,.wp-block-pullquote footer{color:currentColor;text-transform:uppercase;font-size:.8125em;font-style:normal}.wp-block-quote{border-left:.25em solid;margin:0 0 1.75em;padding-left:1em}.wp-block-quote cite,.wp-block-quote footer{color:currentColor;font-size:.8125em;position:relative;font-style:normal}.wp-block-quote.has-text-align-right{border-left:none;border-right:.25em solid;padding-left:0;padding-right:1em}.wp-block-quote.has-text-align-center{border:none;padding-left:0}.wp-block-quote.is-large,.wp-block-quote.is-style-large{border:none}.wp-block-search .wp-block-search__label{font-weight:700}.wp-block-group.has-background{padding:1.25em 2.375em;margin-top:0;margin-bottom:0}.wp-block-separator{border:none;border-bottom:2px solid;margin-left:auto;margin-right:auto;opacity:.4}.wp-block-separator:not(.is-style-wide):not(.is-style-dots){width:100px}.wp-block-separator.has-background:not(.is-style-dots){border-bottom:none;height:1px}.wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots){height:2px}.wp-block-table thead{border-bottom:3px solid}.wp-block-table tfoot{border-top:3px solid}.wp-block-table td,.wp-block-table th{padding:.5em;border:1px solid;word-break:normal}.wp-block-table figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-table figcaption{color:hsla(0,0%,100%,.65)}.wp-block-video figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-video figcaption{color:hsla(0,0%,100%,.65)}.wp-block-template-part.has-background{padding:1.25em 2.375em;margin-top:0;margin-bottom:0}#end-resizable-editor-section{display:none} </style> <link rel='stylesheet' id='wc-blocks-vendors-style-css' href='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-vendors-style.css?ver=8.5.1' media='all' /> <link rel='stylesheet' id='wc-blocks-style-css' href='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-style.css?ver=8.5.1' media='all' /> <link rel='stylesheet' id='woocommerce-layout-css' href='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/css/woocommerce-layout.css?ver=7.0.0' media='all' /> <link rel='stylesheet' id='woocommerce-smallscreen-css' href='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/css/woocommerce-smallscreen.css?ver=7.0.0' media='only screen and (max-width: 768px)' /> <link rel='stylesheet' id='woocommerce-general-css' href='//localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/css/twenty-twenty-one.css?ver=7.0.0' media='all' /> <style id='woocommerce-inline-inline-css'> .woocommerce form .form-row .required { visibility: visible; } </style> <link rel='stylesheet' id='twenty-twenty-one-style-css' href='http://localhost/scan/wordpress/wp-content/themes/twentytwentyone/style.css?ver=1.4' media='all' /> <link rel='stylesheet' id='twenty-twenty-one-print-style-css' href='http://localhost/scan/wordpress/wp-content/themes/twentytwentyone/assets/css/print.css?ver=1.4' media='print' /> <link rel='stylesheet' id='ecs-styles-css' href='http://localhost/scan/wordpress/wp-content/plugins/ele-custom-skin/assets/css/ecs-style.css?ver=3.1.3' media='all' /> <script src='http://localhost/scan/wordpress/wp-includes/js/jquery/jquery.min.js?ver=3.6.0' id='jquery-core-js'></script> <script src='http://localhost/scan/wordpress/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.3.2' id='jquery-migrate-js'></script> <script id='ecs_ajax_load-js-extra'> var ecs_ajax_params = {"ajaxurl":"http:\/\/localhost\/scan\/wordpress\/wp-admin\/admin-ajax.php","posts":"{\"error\":\"\",\"m\":\"\",\"p\":0,\"post_parent\":\"\",\"subpost\":\"\",\"subpost_id\":\"\",\"attachment\":\"\",\"attachment_id\":0,\"name\":\"\",\"pagename\":\"\",\"page_id\":0,\"second\":\"\",\"minute\":\"\",\"hour\":\"\",\"day\":0,\"monthnum\":0,\"year\":0,\"w\":0,\"category_name\":\"\",\"tag\":\"\",\"cat\":\"\",\"tag_id\":\"\",\"author\":\"\",\"author_name\":\"\",\"feed\":\"\",\"tb\":\"\",\"paged\":0,\"meta_key\":\"\",\"meta_value\":\"\",\"preview\":\"\",\"s\":\"\",\"sentence\":\"\",\"title\":\"\",\"fields\":\"\",\"menu_order\":\"\",\"embed\":\"\",\"category__in\":[],\"category__not_in\":[],\"category__and\":[],\"post__in\":[],\"post__not_in\":[],\"post_name__in\":[],\"tag__in\":[],\"tag__not_in\":[],\"tag__and\":[],\"tag_slug__in\":[],\"tag_slug__and\":[],\"post_parent__in\":[],\"post_parent__not_in\":[],\"author__in\":[],\"author__not_in\":[],\"ignore_sticky_posts\":false,\"suppress_filters\":false,\"cache_results\":true,\"update_post_term_cache\":true,\"lazy_load_term_meta\":true,\"update_post_meta_cache\":true,\"post_type\":\"\",\"posts_per_page\":10,\"nopaging\":false,\"comments_per_page\":\"50\",\"no_found_rows\":false,\"order\":\"DESC\"}"}; </script> <script src='http://localhost/scan/wordpress/wp-content/plugins/ele-custom-skin/assets/js/ecs_ajax_pagination.js?ver=3.1.3' id='ecs_ajax_load-js'></script> <script src='http://localhost/scan/wordpress/wp-content/plugins/ele-custom-skin/assets/js/ecs.js?ver=3.1.3' id='ecs-script-js'></script> <link rel="https://api.w.org/" href="http://localhost/scan/wordpress/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://localhost/scan/wordpress/xmlrpc.php?rsd" /> <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://localhost/scan/wordpress/wp-includes/wlwmanifest.xml" /> <meta name="generator" content="WordPress 5.8" /> <meta name="generator" content="WooCommerce 7.0.0" /> <noscript><style>.woocommerce-product-gallery{ opacity: 1 !important; }</style></noscript> </head> <body class="home blog wp-embed-responsive theme-twentytwentyone woocommerce-no-js is-light-theme no-js hfeed elementor-default elementor-kit-10"> <div id="page" class="site"> <a class="skip-link screen-reader-text" href="#content">Skip to content</a> <header id="masthead" class="site-header has-title-and-tagline" role="banner"> <div class="site-branding"> <h1 class="site-title">yup-here</h1> <p class="site-description"> Just another WordPress site </p> </div><!-- .site-branding --> </header><!-- #masthead --> <div id="content" class="site-content"> <div id="primary" class="content-area"> <main id="main" class="site-main" role="main"> <article id="post-1" class="post-1 post type-post status-publish format-standard hentry category-uncategorized entry"> <header class="entry-header"> <h2 class="entry-title default-max-width"><a href="http://localhost/scan/wordpress/2025/02/28/hello-world/">Hello world!</a></h2></header><!-- .entry-header --> <div class="entry-content"> <p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p> </div><!-- .entry-content --> <footer class="entry-footer default-max-width"> <span class="posted-on">Published <time class="entry-date published updated" datetime="2025-02-28T01:47:30+00:00">February 28, 2025</time></span><div class="post-taxonomies"><span class="cat-links">Categorized as <a href="http://localhost/scan/wordpress/category/uncategorized/" rel="category tag">Uncategorized</a> </span></div> </footer><!-- .entry-footer --> </article><!-- #post-${ID} --> </main><!-- #main --> </div><!-- #primary --> </div><!-- #content --> <aside class="widget-area"> <section id="block-2" class="widget widget_block widget_search"><form role="search" method="get" action="http://localhost/scan/wordpress/" class="wp-block-search__button-outside wp-block-search__text-button wp-block-search"><label for="wp-block-search__input-1" class="wp-block-search__label">Search</label><div class="wp-block-search__inside-wrapper"><input type="search" id="wp-block-search__input-1" class="wp-block-search__input" name="s" value="" placeholder="" required /><button type="submit" class="wp-block-search__button ">Search</button></div></form></section><section id="block-3" class="widget widget_block"><div class="wp-block-group"><div class="wp-block-group__inner-container"><h2>Recent Posts</h2><ul class="wp-block-latest-posts__list wp-block-latest-posts"><li><a href="http://localhost/scan/wordpress/2025/02/28/hello-world/">Hello world!</a></li> </ul></div></div></section><section id="block-4" class="widget widget_block"><div class="wp-block-group"><div class="wp-block-group__inner-container"><h2>Recent Comments</h2><ol class="wp-block-latest-comments"><li class="wp-block-latest-comments__comment"><article><footer class="wp-block-latest-comments__comment-meta"><a class="wp-block-latest-comments__comment-author" href="https://wordpress.org/">A WordPress Commenter</a> on <a class="wp-block-latest-comments__comment-link" href="http://localhost/scan/wordpress/2025/02/28/hello-world/#comment-1">Hello world!</a></footer></article></li></ol></div></div></section> </aside><!-- .widget-area --> <footer id="colophon" class="site-footer" role="contentinfo"> <div class="site-info"> <div class="site-name"> yup-here </div><!-- .site-name --> <div class="powered-by"> Proudly powered by <a href="https://wordpress.org/">WordPress</a>. </div><!-- .powered-by --> </div><!-- .site-info --> </footer><!-- #colophon --> </div><!-- #page --> <script>document.body.classList.remove("no-js");</script> <script> if ( -1 !== navigator.userAgent.indexOf( 'MSIE' ) || -1 !== navigator.appVersion.indexOf( 'Trident/' ) ) { document.body.classList.add( 'is-IE' ); } </script> <script type="text/javascript"> (function () { var c = document.body.className; c = c.replace(/woocommerce-no-js/, 'woocommerce-js'); document.body.className = c; })(); </script> <script src='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js?ver=2.7.0-wc.7.0.0' id='jquery-blockui-js'></script> <script id='wc-add-to-cart-js-extra'> var wc_add_to_cart_params = {"ajax_url":"\/scan\/wordpress\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/scan\/wordpress\/?wc-ajax=%%endpoint%%","i18n_view_cart":"View cart","cart_url":"http:\/\/localhost\/scan\/wordpress\/cart\/","is_cart":"","cart_redirect_after_add":"no"}; </script> <script src='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.min.js?ver=7.0.0' id='wc-add-to-cart-js'></script> <script src='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.min.js?ver=2.1.4-wc.7.0.0' id='js-cookie-js'></script> <script id='woocommerce-js-extra'> var woocommerce_params = {"ajax_url":"\/scan\/wordpress\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/scan\/wordpress\/?wc-ajax=%%endpoint%%"}; </script> <script src='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.min.js?ver=7.0.0' id='woocommerce-js'></script> <script id='wc-cart-fragments-js-extra'> var wc_cart_fragments_params = {"ajax_url":"\/scan\/wordpress\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/scan\/wordpress\/?wc-ajax=%%endpoint%%","cart_hash_key":"wc_cart_hash_67da1dc18a3e11e4f2865063b3ad5420","fragment_name":"wc_fragments_67da1dc18a3e11e4f2865063b3ad5420","request_timeout":"5000"}; </script> <script src='http://localhost/scan/wordpress/wp-content/plugins/woocommerce/assets/js/frontend/cart-fragments.min.js?ver=7.0.0' id='wc-cart-fragments-js'></script> <script id='twenty-twenty-one-ie11-polyfills-js-after'> ( Element.prototype.matches && Element.prototype.closest && window.NodeList && NodeList.prototype.forEach ) || document.write( '<script src="http://localhost/scan/wordpress/wp-content/themes/twentytwentyone/assets/js/polyfills.js?ver=1.4"></scr' + 'ipt>' ); </script> <script src='http://localhost/scan/wordpress/wp-content/themes/twentytwentyone/assets/js/responsive-embeds.js?ver=1.4' id='twenty-twenty-one-responsive-embeds-script-js'></script> <script src='http://localhost/scan/wordpress/wp-includes/js/wp-embed.min.js?ver=5.8' id='wp-embed-js'></script> <script> /(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",(function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())}),!1); </script> </body> </html>Parameter wc_cart_hash_67da1dc18a3e11e4f2865063b3ad5420Solution This is an informational alert and no action is necessary.
-
Obsolete Content Security Policy (CSP) Header Found (1)
GET http://localhost/phpmyadmin/
Alert tags Alert description The "X-Content-Security-Policy" and "X-WebKit-CSP" headers are no longer recommended.
Request Request line and header section (268 bytes)
GET http://localhost/phpmyadmin/ HTTP/1.1 host: localhost user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 pragma: no-cache cache-control: no-cache referer: http://localhost/dashboard/Request body (0 bytes)
Response Status line and header section (1561 bytes)
HTTP/1.1 200 OK Date: Sat, 19 Apr 2025 15:17:44 GMT Server: Apache/2.4.54 (Unix) OpenSSL/1.1.1s PHP/7.4.33 mod_perl/2.0.12 Perl/v5.34.1 X-Powered-By: PHP/7.4.33 Set-Cookie: phpMyAdmin=610f86c60f00a8f4dc92fe660c217e62; path=/phpmyadmin/; HttpOnly; SameSite=Strict Expires: Sat, 19 Apr 2025 15:17:45 +0000 Cache-Control: no-store, no-cache, must-revalidate, pre-check=0, post-check=0, max-age=0 Last-Modified: Sat, 19 Apr 2025 15:17:45 +0000 Set-Cookie: phpMyAdmin=610f86c60f00a8f4dc92fe660c217e62; path=/phpmyadmin/; HttpOnly; SameSite=Strict Set-Cookie: pma_lang=en; expires=Mon, 19-May-2025 15:17:45 GMT; Max-Age=2592000; path=/phpmyadmin/; HttpOnly; SameSite=Strict X-ob_mode: 1 X-Frame-Options: DENY Referrer-Policy: no-referrer Content-Security-Policy: default-src 'self' ;script-src 'self' 'unsafe-inline' 'unsafe-eval' ;style-src 'self' 'unsafe-inline' ;img-src 'self' data: *.tile.openstreetmap.org;object-src 'none'; X-Content-Security-Policy: default-src 'self' ;options inline-script eval-script;referrer no-referrer;img-src 'self' data: *.tile.openstreetmap.org;object-src 'none'; X-WebKit-CSP: default-src 'self' ;script-src 'self' 'unsafe-inline' 'unsafe-eval';referrer no-referrer;style-src 'self' 'unsafe-inline' ;img-src 'self' data: *.tile.openstreetmap.org;object-src 'none'; X-XSS-Protection: 1; mode=block X-Content-Type-Options: nosniff X-Permitted-Cross-Domain-Policies: none X-Robots-Tag: noindex, nofollow Pragma: no-cache Vary: Accept-Encoding Content-Type: text/html; charset=utf-8 content-length: 145988Response body (145988 bytes)
<!doctype html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="referrer" content="no-referrer"> <meta name="robots" content="noindex,nofollow"> <style id="cfs-style">html{display: none;}</style> <link rel="icon" href="favicon.ico" type="image/x-icon"> <link rel="shortcut icon" href="favicon.ico" type="image/x-icon"> <link rel="stylesheet" type="text/css" href="./themes/pmahomme/jquery/jquery-ui.css"> <link rel="stylesheet" type="text/css" href="js/vendor/codemirror/lib/codemirror.css?v=5.2.0"> <link rel="stylesheet" type="text/css" href="js/vendor/codemirror/addon/hint/show-hint.css?v=5.2.0"> <link rel="stylesheet" type="text/css" href="js/vendor/codemirror/addon/lint/lint.css?v=5.2.0"> <link rel="stylesheet" type="text/css" href="./themes/pmahomme/css/theme.css?v=5.2.0"> <title>localhost / localhost | phpMyAdmin 5.2.0</title> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery.min.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery-migrate.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/sprintf.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/ajax.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/keyhandler.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery-ui.min.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/name-conflict-fixes.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/bootstrap/bootstrap.bundle.min.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/js.cookie.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery.validate.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery-ui-timepicker-addon.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/jquery/jquery.debounce-1.0.6.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/menu_resizer.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/cross_framing_protection.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/messages.php?l=en&v=5.2.0&lang=en"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/config.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/doclinks.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/functions.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/navigation.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/indexes.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/common.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/page_settings.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/home.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/lib/codemirror.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/mode/sql/sql.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/addon/runmode/runmode.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/addon/hint/show-hint.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/addon/hint/sql-hint.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/codemirror/addon/lint/lint.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/codemirror/addon/lint/sql-lint.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/vendor/tracekit.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/error_report.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/drag_drop_import.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/shortcuts_handler.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript" src="js/dist/console.js?v=5.2.0"></script> <script data-cfasync="false" type="text/javascript"> // <![CDATA[ CommonParams.setAll({common_query:"lang=en",opendb_url:"index.php?route=/database/structure&lang=en",lang:"en",server:"1",table:"",db:"",token:"68796d444825575e6d2d604f364a4658",text_dir:"ltr",LimitChars:"50",pftext:"",confirm:true,LoginCookieValidity:"1440",session_gc_maxlifetime:"1440",logged_in:true,is_https:false,rootPath:"/phpmyadmin/",arg_separator:"&",version:"5.2.0",auth_type:"config",user:"root"}); var firstDayOfCalendar = '0'; var themeImagePath = '.\/themes\/pmahomme\/img\/'; var mysqlDocTemplate = '.\/url.php\u003Furl\u003Dhttps\u00253A\u00252F\u00252Fdev.mysql.com\u00252Fdoc\u00252Frefman\u00252F8.0\u00252Fen\u00252F\u002525s.html'; var maxInputVars = 1000; if ($.datepicker) { $.datepicker.regional[''].closeText = 'Done'; $.datepicker.regional[''].prevText = 'Prev'; $.datepicker.regional[''].nextText = 'Next'; $.datepicker.regional[''].currentText = 'Today'; $.datepicker.regional[''].monthNames = [ 'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December', ]; $.datepicker.regional[''].monthNamesShort = [ 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec', ]; $.datepicker.regional[''].dayNames = [ 'Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', ]; $.datepicker.regional[''].dayNamesShort = [ 'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', ]; $.datepicker.regional[''].dayNamesMin = [ 'Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa', ]; $.datepicker.regional[''].weekHeader = 'Wk'; $.datepicker.regional[''].showMonthAfterYear = false; $.datepicker.regional[''].yearSuffix = ''; $.extend($.datepicker._defaults, $.datepicker.regional['']); } if ($.timepicker) { $.timepicker.regional[''].timeText = 'Time'; $.timepicker.regional[''].hourText = 'Hour'; $.timepicker.regional[''].minuteText = 'Minute'; $.timepicker.regional[''].secondText = 'Second'; $.extend($.timepicker._defaults, $.timepicker.regional['']); } function extendingValidatorMessages () { $.extend($.validator.messages, { required: 'This\u0020field\u0020is\u0020required', remote: 'Please\u0020fix\u0020this\u0020field', email: 'Please\u0020enter\u0020a\u0020valid\u0020email\u0020address', url: 'Please\u0020enter\u0020a\u0020valid\u0020URL', date: 'Please\u0020enter\u0020a\u0020valid\u0020date', dateISO: 'Please\u0020enter\u0020a\u0020valid\u0020date\u0020\u0028\u0020ISO\u0020\u0029', number: 'Please\u0020enter\u0020a\u0020valid\u0020number', creditcard: 'Please\u0020enter\u0020a\u0020valid\u0020credit\u0020card\u0020number', digits: 'Please\u0020enter\u0020only\u0020digits', equalTo: 'Please\u0020enter\u0020the\u0020same\u0020value\u0020again', maxlength: $.validator.format('Please\u0020enter\u0020no\u0020more\u0020than\u0020\u007B0\u007D\u0020characters'), minlength: $.validator.format('Please\u0020enter\u0020at\u0020least\u0020\u007B0\u007D\u0020characters'), rangelength: $.validator.format('Please\u0020enter\u0020a\u0020value\u0020between\u0020\u007B0\u007D\u0020and\u0020\u007B1\u007D\u0020characters\u0020long'), range: $.validator.format('Please\u0020enter\u0020a\u0020value\u0020between\u0020\u007B0\u007D\u0020and\u0020\u007B1\u007D'), max: $.validator.format('Please\u0020enter\u0020a\u0020value\u0020less\u0020than\u0020or\u0020equal\u0020to\u0020\u007B0\u007D'), min: $.validator.format('Please\u0020enter\u0020a\u0020value\u0020greater\u0020than\u0020or\u0020equal\u0020to\u0020\u007B0\u007D'), validationFunctionForDateTime: $.validator.format('Please\u0020enter\u0020a\u0020valid\u0020date\u0020or\u0020time'), validationFunctionForHex: $.validator.format('Please\u0020enter\u0020a\u0020valid\u0020HEX\u0020input'), validationFunctionForMd5: $.validator.format('This\u0020column\u0020can\u0020not\u0020contain\u0020a\u002032\u0020chars\u0020value'), validationFunctionForAesDesEncrypt: $.validator.format('These\u0020functions\u0020are\u0020meant\u0020to\u0020return\u0020a\u0020binary\u0020result\u003B\u0020to\u0020avoid\u0020inconsistent\u0020results\u0020you\u0020should\u0020store\u0020it\u0020in\u0020a\u0020BINARY,\u0020VARBINARY,\u0020or\u0020BLOB\u0020column.') }); } ConsoleEnterExecutes=false AJAX.scriptHandler .add('vendor/jquery/jquery.min.js', 0) .add('vendor/jquery/jquery-migrate.js', 0) .add('vendor/sprintf.js', 1) .add('ajax.js', 0) .add('keyhandler.js', 1) .add('vendor/jquery/jquery-ui.min.js', 0) .add('name-conflict-fixes.js', 1) .add('vendor/bootstrap/bootstrap.bundle.min.js', 1) .add('vendor/js.cookie.js', 1) .add('vendor/jquery/jquery.validate.js', 0) .add('vendor/jquery/jquery-ui-timepicker-addon.js', 0) .add('vendor/jquery/jquery.debounce-1.0.6.js', 0) .add('menu_resizer.js', 1) .add('cross_framing_protection.js', 0) .add('messages.php', 0) .add('config.js', 1) .add('doclinks.js', 1) .add('functions.js', 1) .add('navigation.js', 1) .add('indexes.js', 1) .add('common.js', 1) .add('page_settings.js', 1) .add('home.js', 1) .add('vendor/codemirror/lib/codemirror.js', 0) .add('vendor/codemirror/mode/sql/sql.js', 0) .add('vendor/codemirror/addon/runmode/runmode.js', 0) .add('vendor/codemirror/addon/hint/show-hint.js', 0) .add('vendor/codemirror/addon/hint/sql-hint.js', 0) .add('vendor/codemirror/addon/lint/lint.js', 0) .add('codemirror/addon/lint/sql-lint.js', 0) .add('vendor/tracekit.js', 1) .add('error_report.js', 1) .add('drag_drop_import.js', 1) .add('shortcuts_handler.js', 1) .add('console.js', 1) ; $(function() { AJAX.fireOnload('vendor/sprintf.js'); AJAX.fireOnload('keyhandler.js'); AJAX.fireOnload('name-conflict-fixes.js'); AJAX.fireOnload('vendor/bootstrap/bootstrap.bundle.min.js'); AJAX.fireOnload('vendor/js.cookie.js'); AJAX.fireOnload('menu_resizer.js'); AJAX.fireOnload('config.js'); AJAX.fireOnload('doclinks.js'); AJAX.fireOnload('functions.js'); AJAX.fireOnload('navigation.js'); AJAX.fireOnload('indexes.js'); AJAX.fireOnload('common.js'); AJAX.fireOnload('page_settings.js'); AJAX.fireOnload('home.js'); AJAX.fireOnload('vendor/tracekit.js'); AJAX.fireOnload('error_report.js'); AJAX.fireOnload('drag_drop_import.js'); AJAX.fireOnload('shortcuts_handler.js'); AJAX.fireOnload('console.js'); }); // ]]> </script> <noscript><style>html{display:block}</style></noscript> </head> <body> <div id="pma_navigation" class="d-print-none" data-config-navigation-width="0"> <div id="pma_navigation_resizer"></div> <div id="pma_navigation_collapser"></div> <div id="pma_navigation_content"> <div id="pma_navigation_header"> <div id="pmalogo"> <a href="index.php?lang=en"> <img id="imgpmalogo" src="./themes/pmahomme/img/logo_left.png" alt="phpMyAdmin"> </a> </div> <div id="navipanellinks"> <a href="index.php?route=/&lang=en" title="Home"><img src="themes/dot.gif" title="Home" alt="Home" class="icon ic_b_home"></a> <a class="logout disableAjax" href="index.php?route=/logout&lang=en" title="Empty session data"><img src="themes/dot.gif" title="Empty session data" alt="Empty session data" class="icon ic_s_loggoff"></a> <a href="./doc/html/index.html" title="phpMyAdmin documentation" target="_blank" rel="noopener noreferrer"><img src="themes/dot.gif" title="phpMyAdmin documentation" alt="phpMyAdmin documentation" class="icon ic_b_docs"></a> <a href="./url.php?url=https%3A%2F%2Fmariadb.com%2Fkb%2Fen%2Fdocumentation%2F" title="MariaDB Documentation" target="_blank" rel="noopener noreferrer"><img src="themes/dot.gif" title="MariaDB Documentation" alt="MariaDB Documentation" class="icon ic_b_sqlhelp"></a> <a id="pma_navigation_settings_icon" href="#" title="Navigation panel settings"><img src="themes/dot.gif" title="Navigation panel settings" alt="Navigation panel settings" class="icon ic_s_cog"></a> <a id="pma_navigation_reload" href="#" title="Reload navigation panel"><img src="themes/dot.gif" title="Reload navigation panel" alt="Reload navigation panel" class="icon ic_s_reload"></a> </div> <img src="themes/dot.gif" title="Loading…" alt="Loading…" style="visibility: hidden; display:none" class="icon ic_ajax_clock_small throbber"> </div> <div id="pma_navigation_tree" class="list_container synced highlight autoexpand"> <div class="pma_quick_warp"> <div class="drop_list"><button title="Recent tables" class="drop_button btn">Recent</button><ul id="pma_recent_list"><li class="warp_link"> <a href="index.php?route=/table/recent-favorite&db=scan&table=wp_users&lang=en"> `scan`.`wp_users` </a> </li> <li class="warp_link"> <a href="index.php?route=/table/recent-favorite&db=attack&table=wp_users&lang=en"> `attack`.`wp_users` </a> </li> <li class="warp_link"> <a href="index.php?route=/table/recent-favorite&db=test&table=wp_users&lang=en"> `test`.`wp_users` </a> </li> </ul></div> <div class="drop_list"><button title="Favorite tables" class="drop_button btn">Favorites</button><ul id="pma_favorite_list"><li class="warp_link"> There are no favorite tables. </li> </ul></div> <div class="clearfloat"></div> </div> <div class="clearfloat"></div> <ul> <!-- CONTROLS START --> <li id="navigation_controls_outer"> <div id="navigation_controls"> <a href="#" id="pma_navigation_collapse" title="Collapse all"><img src="themes/dot.gif" title="Collapse all" alt="Collapse all" class="icon ic_s_collapseall"></a> <a href="#" id="pma_navigation_sync" title="Unlink from main panel"><img src="themes/dot.gif" title="Unlink from main panel" alt="Unlink from main panel" class="icon ic_s_link"></a> </div> </li> <!-- CONTROLS ENDS --> </ul> <div id='pma_navigation_tree_content'> <ul> <li class="first new_database italics"> <div class="block"> <i class="first"></i> </div> <div class="block second"> <a href="index.php?route=/server/databases&lang=en"><img src="themes/dot.gif" title="New" alt="New" class="icon ic_b_newdb"></a> </div> <a class="hover_show_full" href="index.php?route=/server/databases&lang=en" title="New">New</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.YXR0YWNr" data-vpath="cm9vdA==.YXR0YWNr" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=attack&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=attack&lang=en" title="Structure">attack</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.aW5mb3JtYXRpb25fc2NoZW1h" data-vpath="cm9vdA==.aW5mb3JtYXRpb25fc2NoZW1h" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=information_schema&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=information_schema&lang=en" title="Structure">information_schema</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.bXlzcWw=" data-vpath="cm9vdA==.bXlzcWw=" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=mysql&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=mysql&lang=en" title="Structure">mysql</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.cGVyZm9ybWFuY2Vfc2NoZW1h" data-vpath="cm9vdA==.cGVyZm9ybWFuY2Vfc2NoZW1h" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=performance_schema&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=performance_schema&lang=en" title="Structure">performance_schema</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.cGhwbXlhZG1pbg==" data-vpath="cm9vdA==.cGhwbXlhZG1pbg==" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=phpmyadmin&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=phpmyadmin&lang=en" title="Structure">phpmyadmin</a> <div class="clearfloat"></div> </li> <li class="database"> <div class="block"> <i></i> <b></b> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.c2Nhbg==" data-vpath="cm9vdA==.c2Nhbg==" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=scan&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=scan&lang=en" title="Structure">scan</a> <div class="clearfloat"></div> </li> <li class="last database"> <div class="block"> <i></i> <a class="expander" href="#"> <span class="hide paths_nav" data-apath="cm9vdA==.dGVzdA==" data-vpath="cm9vdA==.dGVzdA==" data-pos="0"></span> <img src="themes/dot.gif" title="Expand/Collapse" alt="Expand/Collapse" class="icon ic_b_plus"> </a> </div> <div class="block second"> <a href="index.php?route=/database/operations&db=test&lang=en"><img src="themes/dot.gif" title="Database operations" alt="Database operations" class="icon ic_s_db"></a> </div> <a class="hover_show_full" href="index.php?route=/database/structure&db=test&lang=en" title="Structure">test</a> <div class="clearfloat"></div> </li> </ul> </div> </div> <div id="pma_navi_settings_container"> <div id="pma_navigation_settings"><div class="page_settings"><form method="post" action="index.php?route=%2F&server=1&lang=en" class="config-form disableAjax"> <input type="hidden" name="tab_hash" value=""> <input type="hidden" name="check_page_refresh" id="check_page_refresh" value=""> <input type="hidden" name="lang" value="en"><input type="hidden" name="token" value="68796d444825575e6d2d604f364a4658"> <input type="hidden" name="submit_save" value="Navi"> <ul class="nav nav-tabs" id="configFormDisplayTab" role="tablist"> <li class="nav-item" role="presentation"> <a class="nav-link active" id="Navi_panel-tab" href="#Navi_panel" data-bs-toggle="tab" role="tab" aria-controls="Navi_panel" aria-selected="true">Navigation panel</a> </li> <li class="nav-item" role="presentation"> <a class="nav-link" id="Navi_tree-tab" href="#Navi_tree" data-bs-toggle="tab" role="tab" aria-controls="Navi_tree" aria-selected="false">Navigation tree</a> </li> <li class="nav-item" role="presentation"> <a class="nav-link" id="Navi_servers-tab" href="#Navi_servers" data-bs-toggle="tab" role="tab" aria-controls="Navi_servers" aria-selected="false">Servers</a> </li> <li class="nav-item" role="presentation"> <a class="nav-link" id="Navi_databases-tab" href="#Navi_databases" data-bs-toggle="tab" role="tab" aria-controls="Navi_databases" aria-selected="false">Databases</a> </li> <li class="nav-item" role="presentation"> <a class="nav-link" id="Navi_tables-tab" href="#Navi_tables" data-bs-toggle="tab" role="tab" aria-controls="Navi_tables" aria-selected="false">Tables</a> </li> </ul> <div class="tab-content"> <div class="tab-pane fade show active" id="Navi_panel" role="tabpanel" aria-labelledby="Navi_panel-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Navigation panel</h5> <h6 class="card-subtitle mb-2 text-muted">Customize appearance of the navigation panel.</h6> <fieldset class="optbox"> <legend>Navigation panel</legend> <table class="table table-borderless"> <tr> <th> <label for="ShowDatabasesNavigationAsTree">Show databases navigation as tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_ShowDatabasesNavigationAsTree" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>In the navigation panel, replaces the database tree with a selector</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="ShowDatabasesNavigationAsTree" id="ShowDatabasesNavigationAsTree" checked> </span> <a class="restore-default hide" href="#ShowDatabasesNavigationAsTree" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationLinkWithMainPanel">Link with main panel</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationLinkWithMainPanel" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Link with main panel by highlighting the current database or table.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationLinkWithMainPanel" id="NavigationLinkWithMainPanel" checked> </span> <a class="restore-default hide" href="#NavigationLinkWithMainPanel" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationDisplayLogo">Display logo</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationDisplayLogo" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Show logo in navigation panel.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationDisplayLogo" id="NavigationDisplayLogo" checked> </span> <a class="restore-default hide" href="#NavigationDisplayLogo" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationLogoLink">Logo link URL</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationLogoLink" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>URL where logo in the navigation panel will point to.</small> </th> <td> <input type="text" name="NavigationLogoLink" id="NavigationLogoLink" value="index.php" class="w-75"> <a class="restore-default hide" href="#NavigationLogoLink" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationLogoLinkWindow">Logo link target</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationLogoLinkWindow" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Open the linked page in the main window (<code>main</code>) or in a new one (<code>new</code>).</small> </th> <td> <select name="NavigationLogoLinkWindow" id="NavigationLogoLinkWindow" class="w-75"> <option value="main" selected>main</option> <option value="new">new</option> </select> <a class="restore-default hide" href="#NavigationLogoLinkWindow" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreePointerEnable">Enable highlighting</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreePointerEnable" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Highlight server under the mouse cursor.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreePointerEnable" id="NavigationTreePointerEnable" checked> </span> <a class="restore-default hide" href="#NavigationTreePointerEnable" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="FirstLevelNavigationItems">Maximum items on first level</label> <span class="doc"> <a href="./doc/html/config.html#cfg_FirstLevelNavigationItems" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>The number of items that can be displayed on each page on the first level of the navigation tree.</small> </th> <td> <input type="number" name="FirstLevelNavigationItems" id="FirstLevelNavigationItems" value="100" class=""> <a class="restore-default hide" href="#FirstLevelNavigationItems" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeDisplayItemFilterMinimum">Minimum number of items to display the filter box</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDisplayItemFilterMinimum" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Defines the minimum number of items (tables, views, routines and events) to display a filter box.</small> </th> <td> <input type="number" name="NavigationTreeDisplayItemFilterMinimum" id="NavigationTreeDisplayItemFilterMinimum" value="30" class=""> <a class="restore-default hide" href="#NavigationTreeDisplayItemFilterMinimum" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NumRecentTables">Recently used tables</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NumRecentTables" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Maximum number of recently used tables; set 0 to disable.</small> </th> <td> <input type="number" name="NumRecentTables" id="NumRecentTables" value="10" class=""> <a class="restore-default hide" href="#NumRecentTables" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NumFavoriteTables">Favorite tables</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NumFavoriteTables" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Maximum number of favorite tables; set 0 to disable.</small> </th> <td> <input type="number" name="NumFavoriteTables" id="NumFavoriteTables" value="10" class=""> <a class="restore-default hide" href="#NumFavoriteTables" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationWidth">Navigation panel width</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationWidth" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Set to 0 to collapse navigation panel.</small> </th> <td> <input type="number" name="NavigationWidth" id="NavigationWidth" value="0" class="custom"> <a class="restore-default hide" href="#NavigationWidth" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> <div class="tab-pane fade" id="Navi_tree" role="tabpanel" aria-labelledby="Navi_tree-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Navigation tree</h5> <h6 class="card-subtitle mb-2 text-muted">Customize the navigation tree.</h6> <fieldset class="optbox"> <legend>Navigation tree</legend> <table class="table table-borderless"> <tr> <th> <label for="MaxNavigationItems">Maximum items in branch</label> <span class="doc"> <a href="./doc/html/config.html#cfg_MaxNavigationItems" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>The number of items that can be displayed on each page of the navigation tree.</small> </th> <td> <input type="number" name="MaxNavigationItems" id="MaxNavigationItems" value="50" class=""> <a class="restore-default hide" href="#MaxNavigationItems" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeEnableGrouping">Group items in the tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeEnableGrouping" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Group items in the navigation tree (determined by the separator defined in the Databases and Tables tabs above).</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeEnableGrouping" id="NavigationTreeEnableGrouping" checked> </span> <a class="restore-default hide" href="#NavigationTreeEnableGrouping" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeEnableExpansion">Enable navigation tree expansion</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeEnableExpansion" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to offer the possibility of tree expansion in the navigation panel.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeEnableExpansion" id="NavigationTreeEnableExpansion" checked> </span> <a class="restore-default hide" href="#NavigationTreeEnableExpansion" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowTables">Show tables in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowTables" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show tables under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowTables" id="NavigationTreeShowTables" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowTables" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowViews">Show views in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowViews" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show views under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowViews" id="NavigationTreeShowViews" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowViews" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowFunctions">Show functions in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowFunctions" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show functions under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowFunctions" id="NavigationTreeShowFunctions" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowFunctions" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowProcedures">Show procedures in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowProcedures" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show procedures under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowProcedures" id="NavigationTreeShowProcedures" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowProcedures" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeShowEvents">Show events in tree</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeShowEvents" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to show events under database in the navigation tree</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeShowEvents" id="NavigationTreeShowEvents" checked> </span> <a class="restore-default hide" href="#NavigationTreeShowEvents" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeAutoexpandSingleDb">Expand single database</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeAutoexpandSingleDb" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Whether to expand single database in the navigation tree automatically.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationTreeAutoexpandSingleDb" id="NavigationTreeAutoexpandSingleDb" checked> </span> <a class="restore-default hide" href="#NavigationTreeAutoexpandSingleDb" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> <div class="tab-pane fade" id="Navi_servers" role="tabpanel" aria-labelledby="Navi_servers-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Servers</h5> <h6 class="card-subtitle mb-2 text-muted">Servers display options.</h6> <fieldset class="optbox"> <legend>Servers</legend> <table class="table table-borderless"> <tr> <th> <label for="NavigationDisplayServers">Display servers selection</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationDisplayServers" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Display server choice at the top of the navigation panel.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="NavigationDisplayServers" id="NavigationDisplayServers" checked> </span> <a class="restore-default hide" href="#NavigationDisplayServers" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="DisplayServersList">Display servers as a list</label> <span class="doc"> <a href="./doc/html/config.html#cfg_DisplayServersList" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>Show server listing as a list instead of a drop down.</small> </th> <td> <span class="checkbox"> <input type="checkbox" name="DisplayServersList" id="DisplayServersList"> </span> <a class="restore-default hide" href="#DisplayServersList" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> <div class="tab-pane fade" id="Navi_databases" role="tabpanel" aria-labelledby="Navi_databases-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Databases</h5> <h6 class="card-subtitle mb-2 text-muted">Databases display options.</h6> <fieldset class="optbox"> <legend>Databases</legend> <table class="table table-borderless"> <tr> <th> <label for="NavigationTreeDisplayDbFilterMinimum">Minimum number of databases to display the database filter box</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDisplayDbFilterMinimum" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> </th> <td> <input type="number" name="NavigationTreeDisplayDbFilterMinimum" id="NavigationTreeDisplayDbFilterMinimum" value="30" class=""> <a class="restore-default hide" href="#NavigationTreeDisplayDbFilterMinimum" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeDbSeparator">Database tree separator</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDbSeparator" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>String that separates databases into different tree levels.</small> </th> <td> <input type="text" size="25" name="NavigationTreeDbSeparator" id="NavigationTreeDbSeparator" value="_" class=""> <a class="restore-default hide" href="#NavigationTreeDbSeparator" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> <div class="tab-pane fade" id="Navi_tables" role="tabpanel" aria-labelledby="Navi_tables-tab"> <div class="card border-top-0"> <div class="card-body"> <h5 class="card-title visually-hidden">Tables</h5> <h6 class="card-subtitle mb-2 text-muted">Tables display options.</h6> <fieldset class="optbox"> <legend>Tables</legend> <table class="table table-borderless"> <tr> <th> <label for="NavigationTreeDefaultTabTable">Target for quick access icon</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDefaultTabTable" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> </th> <td> <select name="NavigationTreeDefaultTabTable" id="NavigationTreeDefaultTabTable" class="w-75"> <option value="structure" selected>Structure</option> <option value="sql">SQL</option> <option value="search">Search</option> <option value="insert">Insert</option> <option value="browse">Browse</option> </select> <a class="restore-default hide" href="#NavigationTreeDefaultTabTable" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeDefaultTabTable2">Target for second quick access icon</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeDefaultTabTable2" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> </th> <td> <select name="NavigationTreeDefaultTabTable2" id="NavigationTreeDefaultTabTable2" class="w-75"> <option value="" selected></option> <option value="structure">Structure</option> <option value="sql">SQL</option> <option value="search">Search</option> <option value="insert">Insert</option> <option value="browse">Browse</option> </select> <a class="restore-default hide" href="#NavigationTreeDefaultTabTable2" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeTableSeparator">Table tree separator</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeTableSeparator" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> <small>String that separates tables into different tree levels.</small> </th> <td> <input type="text" size="25" name="NavigationTreeTableSeparator" id="NavigationTreeTableSeparator" value="__" class=""> <a class="restore-default hide" href="#NavigationTreeTableSeparator" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> <tr> <th> <label for="NavigationTreeTableLevel">Maximum table tree depth</label> <span class="doc"> <a href="./doc/html/config.html#cfg_NavigationTreeTableLevel" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </span> </th> <td> <input type="number" name="NavigationTreeTableLevel" id="NavigationTreeTableLevel" value="1" class=""> <a class="restore-default hide" href="#NavigationTreeTableLevel" title="Restore default value"><img src="themes/dot.gif" title="Restore default value" alt="Restore default value" class="icon ic_s_reload"></a> </td> </tr> </table> </fieldset> </div> </div> </div> </div> </form> <script type="text/javascript"> if (typeof configInlineParams === 'undefined' || !Array.isArray(configInlineParams)) { configInlineParams = []; } configInlineParams.push(function () { registerFieldValidator('FirstLevelNavigationItems', 'validatePositiveNumber', true); registerFieldValidator('NavigationTreeDisplayItemFilterMinimum', 'validatePositiveNumber', true); registerFieldValidator('NumRecentTables', 'validateNonNegativeNumber', true); registerFieldValidator('NumFavoriteTables', 'validateNonNegativeNumber', true); registerFieldValidator('NavigationWidth', 'validateNonNegativeNumber', true); registerFieldValidator('MaxNavigationItems', 'validatePositiveNumber', true); registerFieldValidator('NavigationTreeTableLevel', 'validatePositiveNumber', true); $.extend(Messages, { 'error_nan_p': 'Not\u0020a\u0020positive\u0020number\u0021', 'error_nan_nneg': 'Not\u0020a\u0020non\u002Dnegative\u0020number\u0021', 'error_incorrect_port': 'Not\u0020a\u0020valid\u0020port\u0020number\u0021', 'error_invalid_value': 'Incorrect\u0020value\u0021', 'error_value_lte': 'Value\u0020must\u0020be\u0020less\u0020than\u0020or\u0020equal\u0020to\u0020\u0025s\u0021', }); $.extend(defaultValues, { 'ShowDatabasesNavigationAsTree': true, 'NavigationLinkWithMainPanel': true, 'NavigationDisplayLogo': true, 'NavigationLogoLink': 'index.php', 'NavigationLogoLinkWindow': ['main'], 'NavigationTreePointerEnable': true, 'FirstLevelNavigationItems': '100', 'NavigationTreeDisplayItemFilterMinimum': '30', 'NumRecentTables': '10', 'NumFavoriteTables': '10', 'NavigationWidth': '240', 'MaxNavigationItems': '50', 'NavigationTreeEnableGrouping': true, 'NavigationTreeEnableExpansion': true, 'NavigationTreeShowTables': true, 'NavigationTreeShowViews': true, 'NavigationTreeShowFunctions': true, 'NavigationTreeShowProcedures': true, 'NavigationTreeShowEvents': true, 'NavigationTreeAutoexpandSingleDb': true, 'NavigationDisplayServers': true, 'DisplayServersList': false, 'NavigationTreeDisplayDbFilterMinimum': '30', 'NavigationTreeDbSeparator': '_', 'NavigationTreeDefaultTabTable': ['structure'], 'NavigationTreeDefaultTabTable2': [''], 'NavigationTreeTableSeparator': '__', 'NavigationTreeTableLevel': '1' }); }); if (typeof configScriptLoaded !== 'undefined' && configInlineParams) { loadInlineConfig(); } </script> </div></div> </div> </div> <div class="pma_drop_handler"> Drop files here </div> <div class="pma_sql_import_status"> <h2> SQL upload ( <span class="pma_import_count">0</span> ) <span class="close">x</span> <span class="minimize">-</span> </h2> <div></div> </div> </div> <div class="modal fade" id="unhideNavItemModal" tabindex="-1" aria-labelledby="unhideNavItemModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="unhideNavItemModalLabel">Show hidden navigation tree items.</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"></div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> </div> </div> </div> </div> <noscript> <div class="alert alert-danger" role="alert"> <img src="themes/dot.gif" title="" alt="" class="icon ic_s_error"> Javascript must be enabled past this point! </div> </noscript> <div id="floating_menubar" class="d-print-none"></div> <nav id="server-breadcrumb" aria-label="breadcrumb"> <ol class="breadcrumb breadcrumb-navbar"> <li class="breadcrumb-item"> <img src="themes/dot.gif" title="" alt="" class="icon ic_s_host"> <a href="index.php?route=/&lang=en" data-raw-text="localhost" draggable="false"> Server: localhost </a> </li> </ol> </nav> <div id="topmenucontainer" class="menucontainer"> <nav class="navbar navbar-expand-lg navbar-light bg-light"> <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-label="Toggle navigation" aria-controls="navbarNav" aria-expanded="false"> <span class="navbar-toggler-icon"></span> </button> <div class="collapse navbar-collapse" id="navbarNav"> <ul id="topmenu" class="navbar-nav"> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/databases&lang=en"> <img src="themes/dot.gif" title="Databases" alt="Databases" class="icon ic_s_db"> Databases </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/sql&lang=en"> <img src="themes/dot.gif" title="SQL" alt="SQL" class="icon ic_b_sql"> SQL </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/status&lang=en"> <img src="themes/dot.gif" title="Status" alt="Status" class="icon ic_s_status"> Status </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/privileges&viewing_mode=server&lang=en"> <img src="themes/dot.gif" title="User accounts" alt="User accounts" class="icon ic_s_rights"> User accounts </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/export&lang=en"> <img src="themes/dot.gif" title="Export" alt="Export" class="icon ic_b_export"> Export </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/import&lang=en"> <img src="themes/dot.gif" title="Import" alt="Import" class="icon ic_b_import"> Import </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/preferences/manage&lang=en"> <img src="themes/dot.gif" title="Settings" alt="Settings" class="icon ic_b_tblops"> Settings </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/replication&lang=en"> <img src="themes/dot.gif" title="Replication" alt="Replication" class="icon ic_s_replication"> Replication </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/variables&lang=en"> <img src="themes/dot.gif" title="Variables" alt="Variables" class="icon ic_s_vars"> Variables </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/collations&lang=en"> <img src="themes/dot.gif" title="Charsets" alt="Charsets" class="icon ic_s_asci"> Charsets </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/engines&lang=en"> <img src="themes/dot.gif" title="Engines" alt="Engines" class="icon ic_b_engine"> Engines </a> </li> <li class="nav-item"> <a class="nav-link text-nowrap" href="index.php?route=/server/plugins&lang=en"> <img src="themes/dot.gif" title="Plugins" alt="Plugins" class="icon ic_b_plugin"> Plugins </a> </li> </ul> </div> </nav> </div> <span id="page_nav_icons" class="d-print-none"> <span id="lock_page_icon"></span> <span id="page_settings_icon"> <img src="themes/dot.gif" title="Page-related settings" alt="Page-related settings" class="icon ic_s_cog"> </span> <a id="goto_pagetop" href="#"><img src="themes/dot.gif" title="Click on the bar to scroll to top of page" alt="Click on the bar to scroll to top of page" class="icon ic_s_top"></a> </span> <div id="pma_console_container" class="d-print-none"> <div id="pma_console"> <div class="toolbar collapsed"> <div class="switch_button console_switch"> <img src="themes/dot.gif" title="SQL Query Console" alt="SQL Query Console" class="icon ic_console"> <span>Console</span> </div> <div class="button clear"> <span>Clear</span> </div> <div class="button history"> <span>History</span> </div> <div class="button options"> <span>Options</span> </div> <div class="button bookmarks"> <span>Bookmarks</span> </div> <div class="button debug hide"> <span>Debug SQL</span> </div> </div> <div class="content"> <div class="console_message_container"> <div class="message welcome"> <span id="instructions-0"> Press Ctrl+Enter to execute query </span> <span class="hide" id="instructions-1"> Press Enter to execute query </span> </div> </div><!-- console_message_container --> <div class="query_input"> <span class="console_query_input"></span> </div> </div><!-- message end --> <div class="mid_layer"></div> <div class="card" id="debug_console"> <div class="toolbar "> <div class="button order order_asc"> <span>ascending</span> </div> <div class="button order order_desc"> <span>descending</span> </div> <div class="text"> <span>Order:</span> </div> <div class="switch_button"> <span>Debug SQL</span> </div> <div class="button order_by sort_count"> <span>Count</span> </div> <div class="button order_by sort_exec"> <span>Execution order</span> </div> <div class="button order_by sort_time"> <span>Time taken</span> </div> <div class="text"> <span>Order by:</span> </div> <div class="button group_queries"> <span>Group queries</span> </div> <div class="button ungroup_queries"> <span>Ungroup queries</span> </div> </div> <div class="content debug"> <div class="message welcome"></div> <div class="debugLog"></div> </div> <!-- Content --> <div class="templates"> <div class="debug_query action_content"> <span class="action collapse"> Collapse </span> <span class="action expand"> Expand </span> <span class="action dbg_show_trace"> Show trace </span> <span class="action dbg_hide_trace"> Hide trace </span> <span class="text count hide"> Count </span> <span class="text time"> Time taken </span> </div> </div> <!-- Template --> </div> <!-- Debug SQL card --> <div class="card" id="pma_bookmarks"> <div class="toolbar "> <div class="switch_button"> <span>Bookmarks</span> </div> <div class="button refresh"> <span>Refresh</span> </div> <div class="button add"> <span>Add</span> </div> </div> <div class="content bookmark"> <div class="message welcome"> <span>No bookmarks</span> </div> </div> <div class="mid_layer"></div> <div class="card add"> <div class="toolbar "> <div class="switch_button"> <span>Add bookmark</span> </div> </div> <div class="content add_bookmark"> <div class="options"> <label> Label: <input type="text" name="label"> </label> <label> Target database: <input type="text" name="targetdb"> </label> <label> <input type="checkbox" name="shared">Share this bookmark </label> <button class="btn btn-primary" type="submit" name="submit">OK</button> </div> <!-- options --> <div class="query_input"> <span class="bookmark_add_input"></span> </div> </div> </div> <!-- Add bookmark card --> </div> <!-- Bookmarks card --> <div class="card" id="pma_console_options"> <div class="toolbar "> <div class="switch_button"> <span>Options</span> </div> <div class="button default"> <span>Set default</span> </div> </div> <div class="content"> <label> <input type="checkbox" name="always_expand">Always expand query messages </label> <br> <label> <input type="checkbox" name="start_history">Show query history at start </label> <br> <label> <input type="checkbox" name="current_query">Show current browsing query </label> <br> <label> <input type="checkbox" name="enter_executes"> Execute queries on Enter and insert new line with Shift+Enter. To make this permanent, view settings. </label> <br> <label> <input type="checkbox" name="dark_theme">Switch to dark theme </label> <br> </div> </div> <!-- Options card --> <div class="templates"> <div class="query_actions"> <span class="action collapse"> Collapse </span> <span class="action expand"> Expand </span> <span class="action requery"> Requery </span> <span class="action edit"> Edit </span> <span class="action explain"> Explain </span> <span class="action profiling"> Profiling </span> <span class="action bookmark"> Bookmark </span> <span class="text failed"> Query failed </span> <span class="text targetdb"> Database : <span></span> </span> <span class="text query_time"> Queried time : <span></span> </span> </div> </div> </div> <!-- #console end --> </div> <!-- #console_container end --> <div id="page_content"> <div class="modal fade" id="previewSqlModal" tabindex="-1" aria-labelledby="previewSqlModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="previewSqlModalLabel">Loading</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"></div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> </div> </div> </div> </div> <div class="modal fade" id="enumEditorModal" tabindex="-1" aria-labelledby="enumEditorModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="enumEditorModalLabel">ENUM/SET editor</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"></div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" id="enumEditorGoButton" data-bs-dismiss="modal">Go</button> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> </div> </div> </div> </div> <div class="modal fade" id="createViewModal" tabindex="-1" aria-labelledby="createViewModalLabel" aria-hidden="true"> <div class="modal-dialog modal-lg" id="createViewModalDialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="createViewModalLabel">Create view</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"></div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" id="createViewModalGoButton">Go</button> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> </div> </div> </div> </div> <div id="maincontainer"> <a class="hide" id="sync_favorite_tables" href="index.php?route=/database/structure/favorite-table&ajax_request=1&favorite_table=1&sync_favorite_tables=1&lang=en"></a> <div class="container-fluid"> <div class="row"> <div class="col-lg-7 col-12"> <div class="card mt-4"> <div class="card-header"> General settings </div> <ul class="list-group list-group-flush"> <li id="li_select_mysql_collation" class="list-group-item"> <form method="post" action="index.php?route=/collation-connection&lang=en" class="row row-cols-lg-auto align-items-center disableAjax"> <input type="hidden" name="lang" value="en"><input type="hidden" name="token" value="68796d444825575e6d2d604f364a4658"> <div class="col-12"> <label for="collationConnectionSelect" class="col-form-label"> <img src="themes/dot.gif" title="" alt="" class="icon ic_s_asci"> Server connection collation: <a href="./url.php?url=https%3A%2F%2Fdev.mysql.com%2Fdoc%2Frefman%2F8.0%2Fen%2Fcharset-connection.html" target="mysql_doc"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </label> </div> <div class="col-12"> <select lang="en" dir="ltr" name="collation_connection" id="collationConnectionSelect" class="form-select autosubmit"> <option value="">Collation</option> <option value=""></option> <optgroup label="armscii8" title="ARMSCII-8 Armenian"> <option value="armscii8_bin" title="Armenian, binary">armscii8_bin</option> <option value="armscii8_general_ci" title="Armenian, case-insensitive">armscii8_general_ci</option> <option value="armscii8_general_nopad_ci" title="Armenian, no-pad, case-insensitive">armscii8_general_nopad_ci</option> <option value="armscii8_nopad_bin" title="Armenian, no-pad, binary">armscii8_nopad_bin</option> </optgroup> <optgroup label="ascii" title="US ASCII"> <option value="ascii_bin" title="West European, binary">ascii_bin</option> <option value="ascii_general_ci" title="West European, case-insensitive">ascii_general_ci</option> <option value="ascii_general_nopad_ci" title="West European, no-pad, case-insensitive">ascii_general_nopad_ci</option> <option value="ascii_nopad_bin" title="West European, no-pad, binary">ascii_nopad_bin</option> </optgroup> <optgroup label="big5" title="Big5 Traditional Chinese"> <option value="big5_bin" title="Traditional Chinese, binary">big5_bin</option> <option value="big5_chinese_ci" title="Traditional Chinese, case-insensitive">big5_chinese_ci</option> <option value="big5_chinese_nopad_ci" title="Traditional Chinese, no-pad, case-insensitive">big5_chinese_nopad_ci</option> <option value="big5_nopad_bin" title="Traditional Chinese, no-pad, binary">big5_nopad_bin</option> </optgroup> <optgroup label="binary" title="Binary pseudo charset"> <option value="binary" title="Binary">binary</option> </optgroup> <optgroup label="cp1250" title="Windows Central European"> <option value="cp1250_bin" title="Central European, binary">cp1250_bin</option> <option value="cp1250_croatian_ci" title="Croatian, case-insensitive">cp1250_croatian_ci</option> <option value="cp1250_czech_cs" title="Czech, case-sensitive">cp1250_czech_cs</option> <option value="cp1250_general_ci" title="Central European, case-insensitive">cp1250_general_ci</option> <option value="cp1250_general_nopad_ci" title="Central European, no-pad, case-insensitive">cp1250_general_nopad_ci</option> <option value="cp1250_nopad_bin" title="Central European, no-pad, binary">cp1250_nopad_bin</option> <option value="cp1250_polish_ci" title="Polish, case-insensitive">cp1250_polish_ci</option> </optgroup> <optgroup label="cp1251" title="Windows Cyrillic"> <option value="cp1251_bin" title="Cyrillic, binary">cp1251_bin</option> <option value="cp1251_bulgarian_ci" title="Bulgarian, case-insensitive">cp1251_bulgarian_ci</option> <option value="cp1251_general_ci" title="Cyrillic, case-insensitive">cp1251_general_ci</option> <option value="cp1251_general_cs" title="Cyrillic, case-sensitive">cp1251_general_cs</option> <option value="cp1251_general_nopad_ci" title="Cyrillic, no-pad, case-insensitive">cp1251_general_nopad_ci</option> <option value="cp1251_nopad_bin" title="Cyrillic, no-pad, binary">cp1251_nopad_bin</option> <option value="cp1251_ukrainian_ci" title="Ukrainian, case-insensitive">cp1251_ukrainian_ci</option> </optgroup> <optgroup label="cp1256" title="Windows Arabic"> <option value="cp1256_bin" title="Arabic, binary">cp1256_bin</option> <option value="cp1256_general_ci" title="Arabic, case-insensitive">cp1256_general_ci</option> <option value="cp1256_general_nopad_ci" title="Arabic, no-pad, case-insensitive">cp1256_general_nopad_ci</option> <option value="cp1256_nopad_bin" title="Arabic, no-pad, binary">cp1256_nopad_bin</option> </optgroup> <optgroup label="cp1257" title="Windows Baltic"> <option value="cp1257_bin" title="Baltic, binary">cp1257_bin</option> <option value="cp1257_general_ci" title="Baltic, case-insensitive">cp1257_general_ci</option> <option value="cp1257_general_nopad_ci" title="Baltic, no-pad, case-insensitive">cp1257_general_nopad_ci</option> <option value="cp1257_lithuanian_ci" title="Lithuanian, case-insensitive">cp1257_lithuanian_ci</option> <option value="cp1257_nopad_bin" title="Baltic, no-pad, binary">cp1257_nopad_bin</option> </optgroup> <optgroup label="cp850" title="DOS West European"> <option value="cp850_bin" title="West European, binary">cp850_bin</option> <option value="cp850_general_ci" title="West European, case-insensitive">cp850_general_ci</option> <option value="cp850_general_nopad_ci" title="West European, no-pad, case-insensitive">cp850_general_nopad_ci</option> <option value="cp850_nopad_bin" title="West European, no-pad, binary">cp850_nopad_bin</option> </optgroup> <optgroup label="cp852" title="DOS Central European"> <option value="cp852_bin" title="Central European, binary">cp852_bin</option> <option value="cp852_general_ci" title="Central European, case-insensitive">cp852_general_ci</option> <option value="cp852_general_nopad_ci" title="Central European, no-pad, case-insensitive">cp852_general_nopad_ci</option> <option value="cp852_nopad_bin" title="Central European, no-pad, binary">cp852_nopad_bin</option> </optgroup> <optgroup label="cp866" title="DOS Russian"> <option value="cp866_bin" title="Russian, binary">cp866_bin</option> <option value="cp866_general_ci" title="Russian, case-insensitive">cp866_general_ci</option> <option value="cp866_general_nopad_ci" title="Russian, no-pad, case-insensitive">cp866_general_nopad_ci</option> <option value="cp866_nopad_bin" title="Russian, no-pad, binary">cp866_nopad_bin</option> </optgroup> <optgroup label="cp932" title="SJIS for Windows Japanese"> <option value="cp932_bin" title="Japanese, binary">cp932_bin</option> <option value="cp932_japanese_ci" title="Japanese, case-insensitive">cp932_japanese_ci</option> <option value="cp932_japanese_nopad_ci" title="Japanese, no-pad, case-insensitive">cp932_japanese_nopad_ci</option> <option value="cp932_nopad_bin" title="Japanese, no-pad, binary">cp932_nopad_bin</option> </optgroup> <optgroup label="dec8" title="DEC West European"> <option value="dec8_bin" title="West European, binary">dec8_bin</option> <option value="dec8_nopad_bin" title="West European, no-pad, binary">dec8_nopad_bin</option> <option value="dec8_swedish_ci" title="Swedish, case-insensitive">dec8_swedish_ci</option> <option value="dec8_swedish_nopad_ci" title="Swedish, no-pad, case-insensitive">dec8_swedish_nopad_ci</option> </optgroup> <optgroup label="eucjpms" title="UJIS for Windows Japanese"> <option value="eucjpms_bin" title="Japanese, binary">eucjpms_bin</option> <option value="eucjpms_japanese_ci" title="Japanese, case-insensitive">eucjpms_japanese_ci</option> <option value="eucjpms_japanese_nopad_ci" title="Japanese, no-pad, case-insensitive">eucjpms_japanese_nopad_ci</option> <option value="eucjpms_nopad_bin" title="Japanese, no-pad, binary">eucjpms_nopad_bin</option> </optgroup> <optgroup label="euckr" title="EUC-KR Korean"> <option value="euckr_bin" title="Korean, binary">euckr_bin</option> <option value="euckr_korean_ci" title="Korean, case-insensitive">euckr_korean_ci</option> <option value="euckr_korean_nopad_ci" title="Korean, no-pad, case-insensitive">euckr_korean_nopad_ci</option> <option value="euckr_nopad_bin" title="Korean, no-pad, binary">euckr_nopad_bin</option> </optgroup> <optgroup label="gb2312" title="GB2312 Simplified Chinese"> <option value="gb2312_bin" title="Simplified Chinese, binary">gb2312_bin</option> <option value="gb2312_chinese_ci" title="Simplified Chinese, case-insensitive">gb2312_chinese_ci</option> <option value="gb2312_chinese_nopad_ci" title="Simplified Chinese, no-pad, case-insensitive">gb2312_chinese_nopad_ci</option> <option value="gb2312_nopad_bin" title="Simplified Chinese, no-pad, binary">gb2312_nopad_bin</option> </optgroup> <optgroup label="gbk" title="GBK Simplified Chinese"> <option value="gbk_bin" title="Simplified Chinese, binary">gbk_bin</option> <option value="gbk_chinese_ci" title="Simplified Chinese, case-insensitive">gbk_chinese_ci</option> <option value="gbk_chinese_nopad_ci" title="Simplified Chinese, no-pad, case-insensitive">gbk_chinese_nopad_ci</option> <option value="gbk_nopad_bin" title="Simplified Chinese, no-pad, binary">gbk_nopad_bin</option> </optgroup> <optgroup label="geostd8" title="GEOSTD8 Georgian"> <option value="geostd8_bin" title="Georgian, binary">geostd8_bin</option> <option value="geostd8_general_ci" title="Georgian, case-insensitive">geostd8_general_ci</option> <option value="geostd8_general_nopad_ci" title="Georgian, no-pad, case-insensitive">geostd8_general_nopad_ci</option> <option value="geostd8_nopad_bin" title="Georgian, no-pad, binary">geostd8_nopad_bin</option> </optgroup> <optgroup label="greek" title="ISO 8859-7 Greek"> <option value="greek_bin" title="Greek, binary">greek_bin</option> <option value="greek_general_ci" title="Greek, case-insensitive">greek_general_ci</option> <option value="greek_general_nopad_ci" title="Greek, no-pad, case-insensitive">greek_general_nopad_ci</option> <option value="greek_nopad_bin" title="Greek, no-pad, binary">greek_nopad_bin</option> </optgroup> <optgroup label="hebrew" title="ISO 8859-8 Hebrew"> <option value="hebrew_bin" title="Hebrew, binary">hebrew_bin</option> <option value="hebrew_general_ci" title="Hebrew, case-insensitive">hebrew_general_ci</option> <option value="hebrew_general_nopad_ci" title="Hebrew, no-pad, case-insensitive">hebrew_general_nopad_ci</option> <option value="hebrew_nopad_bin" title="Hebrew, no-pad, binary">hebrew_nopad_bin</option> </optgroup> <optgroup label="hp8" title="HP West European"> <option value="hp8_bin" title="West European, binary">hp8_bin</option> <option value="hp8_english_ci" title="English, case-insensitive">hp8_english_ci</option> <option value="hp8_english_nopad_ci" title="English, no-pad, case-insensitive">hp8_english_nopad_ci</option> <option value="hp8_nopad_bin" title="West European, no-pad, binary">hp8_nopad_bin</option> </optgroup> <optgroup label="keybcs2" title="DOS Kamenicky Czech-Slovak"> <option value="keybcs2_bin" title="Czech-Slovak, binary">keybcs2_bin</option> <option value="keybcs2_general_ci" title="Czech-Slovak, case-insensitive">keybcs2_general_ci</option> <option value="keybcs2_general_nopad_ci" title="Czech-Slovak, no-pad, case-insensitive">keybcs2_general_nopad_ci</option> <option value="keybcs2_nopad_bin" title="Czech-Slovak, no-pad, binary">keybcs2_nopad_bin</option> </optgroup> <optgroup label="koi8r" title="KOI8-R Relcom Russian"> <option value="koi8r_bin" title="Russian, binary">koi8r_bin</option> <option value="koi8r_general_ci" title="Russian, case-insensitive">koi8r_general_ci</option> <option value="koi8r_general_nopad_ci" title="Russian, no-pad, case-insensitive">koi8r_general_nopad_ci</option> <option value="koi8r_nopad_bin" title="Russian, no-pad, binary">koi8r_nopad_bin</option> </optgroup> <optgroup label="koi8u" title="KOI8-U Ukrainian"> <option value="koi8u_bin" title="Ukrainian, binary">koi8u_bin</option> <option value="koi8u_general_ci" title="Ukrainian, case-insensitive">koi8u_general_ci</option> <option value="koi8u_general_nopad_ci" title="Ukrainian, no-pad, case-insensitive">koi8u_general_nopad_ci</option> <option value="koi8u_nopad_bin" title="Ukrainian, no-pad, binary">koi8u_nopad_bin</option> </optgroup> <optgroup label="latin1" title="cp1252 West European"> <option value="latin1_bin" title="West European, binary">latin1_bin</option> <option value="latin1_danish_ci" title="Danish, case-insensitive">latin1_danish_ci</option> <option value="latin1_general_ci" title="West European, case-insensitive">latin1_general_ci</option> <option value="latin1_general_cs" title="West European, case-sensitive">latin1_general_cs</option> <option value="latin1_german1_ci" title="German (dictionary order), case-insensitive">latin1_german1_ci</option> <option value="latin1_german2_ci" title="German (phone book order), case-insensitive">latin1_german2_ci</option> <option value="latin1_nopad_bin" title="West European, no-pad, binary">latin1_nopad_bin</option> <option value="latin1_spanish_ci" title="Spanish (modern), case-insensitive">latin1_spanish_ci</option> <option value="latin1_swedish_ci" title="Swedish, case-insensitive">latin1_swedish_ci</option> <option value="latin1_swedish_nopad_ci" title="Swedish, no-pad, case-insensitive">latin1_swedish_nopad_ci</option> </optgroup> <optgroup label="latin2" title="ISO 8859-2 Central European"> <option value="latin2_bin" title="Central European, binary">latin2_bin</option> <option value="latin2_croatian_ci" title="Croatian, case-insensitive">latin2_croatian_ci</option> <option value="latin2_czech_cs" title="Czech, case-sensitive">latin2_czech_cs</option> <option value="latin2_general_ci" title="Central European, case-insensitive">latin2_general_ci</option> <option value="latin2_general_nopad_ci" title="Central European, no-pad, case-insensitive">latin2_general_nopad_ci</option> <option value="latin2_hungarian_ci" title="Hungarian, case-insensitive">latin2_hungarian_ci</option> <option value="latin2_nopad_bin" title="Central European, no-pad, binary">latin2_nopad_bin</option> </optgroup> <optgroup label="latin5" title="ISO 8859-9 Turkish"> <option value="latin5_bin" title="Turkish, binary">latin5_bin</option> <option value="latin5_nopad_bin" title="Turkish, no-pad, binary">latin5_nopad_bin</option> <option value="latin5_turkish_ci" title="Turkish, case-insensitive">latin5_turkish_ci</option> <option value="latin5_turkish_nopad_ci" title="Turkish, no-pad, case-insensitive">latin5_turkish_nopad_ci</option> </optgroup> <optgroup label="latin7" title="ISO 8859-13 Baltic"> <option value="latin7_bin" title="Baltic, binary">latin7_bin</option> <option value="latin7_estonian_cs" title="Estonian, case-sensitive">latin7_estonian_cs</option> <option value="latin7_general_ci" title="Baltic, case-insensitive">latin7_general_ci</option> <option value="latin7_general_cs" title="Baltic, case-sensitive">latin7_general_cs</option> <option value="latin7_general_nopad_ci" title="Baltic, no-pad, case-insensitive">latin7_general_nopad_ci</option> <option value="latin7_nopad_bin" title="Baltic, no-pad, binary">latin7_nopad_bin</option> </optgroup> <optgroup label="macce" title="Mac Central European"> <option value="macce_bin" title="Central European, binary">macce_bin</option> <option value="macce_general_ci" title="Central European, case-insensitive">macce_general_ci</option> <option value="macce_general_nopad_ci" title="Central European, no-pad, case-insensitive">macce_general_nopad_ci</option> <option value="macce_nopad_bin" title="Central European, no-pad, binary">macce_nopad_bin</option> </optgroup> <optgroup label="macroman" title="Mac West European"> <option value="macroman_bin" title="West European, binary">macroman_bin</option> <option value="macroman_general_ci" title="West European, case-insensitive">macroman_general_ci</option> <option value="macroman_general_nopad_ci" title="West European, no-pad, case-insensitive">macroman_general_nopad_ci</option> <option value="macroman_nopad_bin" title="West European, no-pad, binary">macroman_nopad_bin</option> </optgroup> <optgroup label="sjis" title="Shift-JIS Japanese"> <option value="sjis_bin" title="Japanese, binary">sjis_bin</option> <option value="sjis_japanese_ci" title="Japanese, case-insensitive">sjis_japanese_ci</option> <option value="sjis_japanese_nopad_ci" title="Japanese, no-pad, case-insensitive">sjis_japanese_nopad_ci</option> <option value="sjis_nopad_bin" title="Japanese, no-pad, binary">sjis_nopad_bin</option> </optgroup> <optgroup label="swe7" title="7bit Swedish"> <option value="swe7_bin" title="Swedish, binary">swe7_bin</option> <option value="swe7_nopad_bin" title="Swedish, no-pad, binary">swe7_nopad_bin</option> <option value="swe7_swedish_ci" title="Swedish, case-insensitive">swe7_swedish_ci</option> <option value="swe7_swedish_nopad_ci" title="Swedish, no-pad, case-insensitive">swe7_swedish_nopad_ci</option> </optgroup> <optgroup label="tis620" title="TIS620 Thai"> <option value="tis620_bin" title="Thai, binary">tis620_bin</option> <option value="tis620_nopad_bin" title="Thai, no-pad, binary">tis620_nopad_bin</option> <option value="tis620_thai_ci" title="Thai, case-insensitive">tis620_thai_ci</option> <option value="tis620_thai_nopad_ci" title="Thai, no-pad, case-insensitive">tis620_thai_nopad_ci</option> </optgroup> <optgroup label="ucs2" title="UCS-2 Unicode"> <option value="ucs2_bin" title="Unicode, binary">ucs2_bin</option> <option value="ucs2_croatian_ci" title="Croatian, case-insensitive">ucs2_croatian_ci</option> <option value="ucs2_croatian_mysql561_ci" title="Croatian (MySQL 5.6.1), case-insensitive">ucs2_croatian_mysql561_ci</option> <option value="ucs2_czech_ci" title="Czech, case-insensitive">ucs2_czech_ci</option> <option value="ucs2_danish_ci" title="Danish, case-insensitive">ucs2_danish_ci</option> <option value="ucs2_esperanto_ci" title="Esperanto, case-insensitive">ucs2_esperanto_ci</option> <option value="ucs2_estonian_ci" title="Estonian, case-insensitive">ucs2_estonian_ci</option> <option value="ucs2_general_ci" title="Unicode, case-insensitive">ucs2_general_ci</option> <option value="ucs2_general_mysql500_ci" title="Unicode (MySQL 5.0.0), case-insensitive">ucs2_general_mysql500_ci</option> <option value="ucs2_general_nopad_ci" title="Unicode, no-pad, case-insensitive">ucs2_general_nopad_ci</option> <option value="ucs2_german2_ci" title="German (phone book order), case-insensitive">ucs2_german2_ci</option> <option value="ucs2_hungarian_ci" title="Hungarian, case-insensitive">ucs2_hungarian_ci</option> <option value="ucs2_icelandic_ci" title="Icelandic, case-insensitive">ucs2_icelandic_ci</option> <option value="ucs2_latvian_ci" title="Latvian, case-insensitive">ucs2_latvian_ci</option> <option value="ucs2_lithuanian_ci" title="Lithuanian, case-insensitive">ucs2_lithuanian_ci</option> <option value="ucs2_myanmar_ci" title="Burmese, case-insensitive">ucs2_myanmar_ci</option> <option value="ucs2_nopad_bin" title="Unicode, no-pad, binary">ucs2_nopad_bin</option> <option value="ucs2_persian_ci" title="Persian, case-insensitive">ucs2_persian_ci</option> <option value="ucs2_polish_ci" title="Polish, case-insensitive">ucs2_polish_ci</option> <option value="ucs2_roman_ci" title="West European, case-insensitive">ucs2_roman_ci</option> <option value="ucs2_romanian_ci" title="Romanian, case-insensitive">ucs2_romanian_ci</option> <option value="ucs2_sinhala_ci" title="Sinhalese, case-insensitive">ucs2_sinhala_ci</option> <option value="ucs2_slovak_ci" title="Slovak, case-insensitive">ucs2_slovak_ci</option> <option value="ucs2_slovenian_ci" title="Slovenian, case-insensitive">ucs2_slovenian_ci</option> <option value="ucs2_spanish2_ci" title="Spanish (traditional), case-insensitive">ucs2_spanish2_ci</option> <option value="ucs2_spanish_ci" title="Spanish (modern), case-insensitive">ucs2_spanish_ci</option> <option value="ucs2_swedish_ci" title="Swedish, case-insensitive">ucs2_swedish_ci</option> <option value="ucs2_thai_520_w2" title="Thai (UCA 5.2.0), multi-level">ucs2_thai_520_w2</option> <option value="ucs2_turkish_ci" title="Turkish, case-insensitive">ucs2_turkish_ci</option> <option value="ucs2_unicode_520_ci" title="Unicode (UCA 5.2.0), case-insensitive">ucs2_unicode_520_ci</option> <option value="ucs2_unicode_520_nopad_ci" title="Unicode (UCA 5.2.0), no-pad, case-insensitive">ucs2_unicode_520_nopad_ci</option> <option value="ucs2_unicode_ci" title="Unicode, case-insensitive">ucs2_unicode_ci</option> <option value="ucs2_unicode_nopad_ci" title="Unicode, no-pad, case-insensitive">ucs2_unicode_nopad_ci</option> <option value="ucs2_vietnamese_ci" title="Vietnamese, case-insensitive">ucs2_vietnamese_ci</option> </optgroup> <optgroup label="ujis" title="EUC-JP Japanese"> <option value="ujis_bin" title="Japanese, binary">ujis_bin</option> <option value="ujis_japanese_ci" title="Japanese, case-insensitive">ujis_japanese_ci</option> <option value="ujis_japanese_nopad_ci" title="Japanese, no-pad, case-insensitive">ujis_japanese_nopad_ci</option> <option value="ujis_nopad_bin" title="Japanese, no-pad, binary">ujis_nopad_bin</option> </optgroup> <optgroup label="utf16" title="UTF-16 Unicode"> <option value="utf16_bin" title="Unicode, binary">utf16_bin</option> <option value="utf16_croatian_ci" title="Croatian, case-insensitive">utf16_croatian_ci</option> <option value="utf16_croatian_mysql561_ci" title="Croatian (MySQL 5.6.1), case-insensitive">utf16_croatian_mysql561_ci</option> <option value="utf16_czech_ci" title="Czech, case-insensitive">utf16_czech_ci</option> <option value="utf16_danish_ci" title="Danish, case-insensitive">utf16_danish_ci</option> <option value="utf16_esperanto_ci" title="Esperanto, case-insensitive">utf16_esperanto_ci</option> <option value="utf16_estonian_ci" title="Estonian, case-insensitive">utf16_estonian_ci</option> <option value="utf16_general_ci" title="Unicode, case-insensitive">utf16_general_ci</option> <option value="utf16_general_nopad_ci" title="Unicode, no-pad, case-insensitive">utf16_general_nopad_ci</option> <option value="utf16_german2_ci" title="German (phone book order), case-insensitive">utf16_german2_ci</option> <option value="utf16_hungarian_ci" title="Hungarian, case-insensitive">utf16_hungarian_ci</option> <option value="utf16_icelandic_ci" title="Icelandic, case-insensitive">utf16_icelandic_ci</option> <option value="utf16_latvian_ci" title="Latvian, case-insensitive">utf16_latvian_ci</option> <option value="utf16_lithuanian_ci" title="Lithuanian, case-insensitive">utf16_lithuanian_ci</option> <option value="utf16_myanmar_ci" title="Burmese, case-insensitive">utf16_myanmar_ci</option> <option value="utf16_nopad_bin" title="Unicode, no-pad, binary">utf16_nopad_bin</option> <option value="utf16_persian_ci" title="Persian, case-insensitive">utf16_persian_ci</option> <option value="utf16_polish_ci" title="Polish, case-insensitive">utf16_polish_ci</option> <option value="utf16_roman_ci" title="West European, case-insensitive">utf16_roman_ci</option> <option value="utf16_romanian_ci" title="Romanian, case-insensitive">utf16_romanian_ci</option> <option value="utf16_sinhala_ci" title="Sinhalese, case-insensitive">utf16_sinhala_ci</option> <option value="utf16_slovak_ci" title="Slovak, case-insensitive">utf16_slovak_ci</option> <option value="utf16_slovenian_ci" title="Slovenian, case-insensitive">utf16_slovenian_ci</option> <option value="utf16_spanish2_ci" title="Spanish (traditional), case-insensitive">utf16_spanish2_ci</option> <option value="utf16_spanish_ci" title="Spanish (modern), case-insensitive">utf16_spanish_ci</option> <option value="utf16_swedish_ci" title="Swedish, case-insensitive">utf16_swedish_ci</option> <option value="utf16_thai_520_w2" title="Thai (UCA 5.2.0), multi-level">utf16_thai_520_w2</option> <option value="utf16_turkish_ci" title="Turkish, case-insensitive">utf16_turkish_ci</option> <option value="utf16_unicode_520_ci" title="Unicode (UCA 5.2.0), case-insensitive">utf16_unicode_520_ci</option> <option value="utf16_unicode_520_nopad_ci" title="Unicode (UCA 5.2.0), no-pad, case-insensitive">utf16_unicode_520_nopad_ci</option> <option value="utf16_unicode_ci" title="Unicode, case-insensitive">utf16_unicode_ci</option> <option value="utf16_unicode_nopad_ci" title="Unicode, no-pad, case-insensitive">utf16_unicode_nopad_ci</option> <option value="utf16_vietnamese_ci" title="Vietnamese, case-insensitive">utf16_vietnamese_ci</option> </optgroup> <optgroup label="utf16le" title="UTF-16LE Unicode"> <option value="utf16le_bin" title="Unicode, binary">utf16le_bin</option> <option value="utf16le_general_ci" title="Unicode, case-insensitive">utf16le_general_ci</option> <option value="utf16le_general_nopad_ci" title="Unicode, no-pad, case-insensitive">utf16le_general_nopad_ci</option> <option value="utf16le_nopad_bin" title="Unicode, no-pad, binary">utf16le_nopad_bin</option> </optgroup> <optgroup label="utf32" title="UTF-32 Unicode"> <option value="utf32_bin" title="Unicode, binary">utf32_bin</option> <option value="utf32_croatian_ci" title="Croatian, case-insensitive">utf32_croatian_ci</option> <option value="utf32_croatian_mysql561_ci" title="Croatian (MySQL 5.6.1), case-insensitive">utf32_croatian_mysql561_ci</option> <option value="utf32_czech_ci" title="Czech, case-insensitive">utf32_czech_ci</option> <option value="utf32_danish_ci" title="Danish, case-insensitive">utf32_danish_ci</option> <option value="utf32_esperanto_ci" title="Esperanto, case-insensitive">utf32_esperanto_ci</option> <option value="utf32_estonian_ci" title="Estonian, case-insensitive">utf32_estonian_ci</option> <option value="utf32_general_ci" title="Unicode, case-insensitive">utf32_general_ci</option> <option value="utf32_general_nopad_ci" title="Unicode, no-pad, case-insensitive">utf32_general_nopad_ci</option> <option value="utf32_german2_ci" title="German (phone book order), case-insensitive">utf32_german2_ci</option> <option value="utf32_hungarian_ci" title="Hungarian, case-insensitive">utf32_hungarian_ci</option> <option value="utf32_icelandic_ci" title="Icelandic, case-insensitive">utf32_icelandic_ci</option> <option value="utf32_latvian_ci" title="Latvian, case-insensitive">utf32_latvian_ci</option> <option value="utf32_lithuanian_ci" title="Lithuanian, case-insensitive">utf32_lithuanian_ci</option> <option value="utf32_myanmar_ci" title="Burmese, case-insensitive">utf32_myanmar_ci</option> <option value="utf32_nopad_bin" title="Unicode, no-pad, binary">utf32_nopad_bin</option> <option value="utf32_persian_ci" title="Persian, case-insensitive">utf32_persian_ci</option> <option value="utf32_polish_ci" title="Polish, case-insensitive">utf32_polish_ci</option> <option value="utf32_roman_ci" title="West European, case-insensitive">utf32_roman_ci</option> <option value="utf32_romanian_ci" title="Romanian, case-insensitive">utf32_romanian_ci</option> <option value="utf32_sinhala_ci" title="Sinhalese, case-insensitive">utf32_sinhala_ci</option> <option value="utf32_slovak_ci" title="Slovak, case-insensitive">utf32_slovak_ci</option> <option value="utf32_slovenian_ci" title="Slovenian, case-insensitive">utf32_slovenian_ci</option> <option value="utf32_spanish2_ci" title="Spanish (traditional), case-insensitive">utf32_spanish2_ci</option> <option value="utf32_spanish_ci" title="Spanish (modern), case-insensitive">utf32_spanish_ci</option> <option value="utf32_swedish_ci" title="Swedish, case-insensitive">utf32_swedish_ci</option> <option value="utf32_thai_520_w2" title="Thai (UCA 5.2.0), multi-level">utf32_thai_520_w2</option> <option value="utf32_turkish_ci" title="Turkish, case-insensitive">utf32_turkish_ci</option> <option value="utf32_unicode_520_ci" title="Unicode (UCA 5.2.0), case-insensitive">utf32_unicode_520_ci</option> <option value="utf32_unicode_520_nopad_ci" title="Unicode (UCA 5.2.0), no-pad, case-insensitive">utf32_unicode_520_nopad_ci</option> <option value="utf32_unicode_ci" title="Unicode, case-insensitive">utf32_unicode_ci</option> <option value="utf32_unicode_nopad_ci" title="Unicode, no-pad, case-insensitive">utf32_unicode_nopad_ci</option> <option value="utf32_vietnamese_ci" title="Vietnamese, case-insensitive">utf32_vietnamese_ci</option> </optgroup> <optgroup label="utf8" title="UTF-8 Unicode"> <option value="utf8_bin" title="Unicode, binary">utf8_bin</option> <option value="utf8_croatian_ci" title="Croatian, case-insensitive">utf8_croatian_ci</option> <option value="utf8_croatian_mysql561_ci" title="Croatian (MySQL 5.6.1), case-insensitive">utf8_croatian_mysql561_ci</option> <option value="utf8_czech_ci" title="Czech, case-insensitive">utf8_czech_ci</option> <option value="utf8_danish_ci" title="Danish, case-insensitive">utf8_danish_ci</option> <option value="utf8_esperanto_ci" title="Esperanto, case-insensitive">utf8_esperanto_ci</option> <option value="utf8_estonian_ci" title="Estonian, case-insensitive">utf8_estonian_ci</option> <option value="utf8_general_ci" title="Unicode, case-insensitive">utf8_general_ci</option> <option value="utf8_general_mysql500_ci" title="Unicode (MySQL 5.0.0), case-insensitive">utf8_general_mysql500_ci</option> <option value="utf8_general_nopad_ci" title="Unicode, no-pad, case-insensitive">utf8_general_nopad_ci</option> <option value="utf8_german2_ci" title="German (phone book order), case-insensitive">utf8_german2_ci</option> <option value="utf8_hungarian_ci" title="Hungarian, case-insensitive">utf8_hungarian_ci</option> <option value="utf8_icelandic_ci" title="Icelandic, case-insensitive">utf8_icelandic_ci</option> <option value="utf8_latvian_ci" title="Latvian, case-insensitive">utf8_latvian_ci</option> <option value="utf8_lithuanian_ci" title="Lithuanian, case-insensitive">utf8_lithuanian_ci</option> <option value="utf8_myanmar_ci" title="Burmese, case-insensitive">utf8_myanmar_ci</option> <option value="utf8_nopad_bin" title="Unicode, no-pad, binary">utf8_nopad_bin</option> <option value="utf8_persian_ci" title="Persian, case-insensitive">utf8_persian_ci</option> <option value="utf8_polish_ci" title="Polish, case-insensitive">utf8_polish_ci</option> <option value="utf8_roman_ci" title="West European, case-insensitive">utf8_roman_ci</option> <option value="utf8_romanian_ci" title="Romanian, case-insensitive">utf8_romanian_ci</option> <option value="utf8_sinhala_ci" title="Sinhalese, case-insensitive">utf8_sinhala_ci</option> <option value="utf8_slovak_ci" title="Slovak, case-insensitive">utf8_slovak_ci</option> <option value="utf8_slovenian_ci" title="Slovenian, case-insensitive">utf8_slovenian_ci</option> <option value="utf8_spanish2_ci" title="Spanish (traditional), case-insensitive">utf8_spanish2_ci</option> <option value="utf8_spanish_ci" title="Spanish (modern), case-insensitive">utf8_spanish_ci</option> <option value="utf8_swedish_ci" title="Swedish, case-insensitive">utf8_swedish_ci</option> <option value="utf8_thai_520_w2" title="Thai (UCA 5.2.0), multi-level">utf8_thai_520_w2</option> <option value="utf8_turkish_ci" title="Turkish, case-insensitive">utf8_turkish_ci</option> <option value="utf8_unicode_520_ci" title="Unicode (UCA 5.2.0), case-insensitive">utf8_unicode_520_ci</option> <option value="utf8_unicode_520_nopad_ci" title="Unicode (UCA 5.2.0), no-pad, case-insensitive">utf8_unicode_520_nopad_ci</option> <option value="utf8_unicode_ci" title="Unicode, case-insensitive">utf8_unicode_ci</option> <option value="utf8_unicode_nopad_ci" title="Unicode, no-pad, case-insensitive">utf8_unicode_nopad_ci</option> <option value="utf8_vietnamese_ci" title="Vietnamese, case-insensitive">utf8_vietnamese_ci</option> </optgroup> <optgroup label="utf8mb4" title="UTF-8 Unicode"> <option value="utf8mb4_bin" title="Unicode (UCA 4.0.0), binary">utf8mb4_bin</option> <option value="utf8mb4_croatian_ci" title="Croatian (UCA 4.0.0), case-insensitive">utf8mb4_croatian_ci</option> <option value="utf8mb4_croatian_mysql561_ci" title="Croatian (MySQL 5.6.1), case-insensitive">utf8mb4_croatian_mysql561_ci</option> <option value="utf8mb4_czech_ci" title="Czech (UCA 4.0.0), case-insensitive">utf8mb4_czech_ci</option> <option value="utf8mb4_danish_ci" title="Danish (UCA 4.0.0), case-insensitive">utf8mb4_danish_ci</option> <option value="utf8mb4_esperanto_ci" title="Esperanto (UCA 4.0.0), case-insensitive">utf8mb4_esperanto_ci</option> <option value="utf8mb4_estonian_ci" title="Estonian (UCA 4.0.0), case-insensitive">utf8mb4_estonian_ci</option> <option value="utf8mb4_general_ci" title="Unicode (UCA 4.0.0), case-insensitive">utf8mb4_general_ci</option> <option value="utf8mb4_general_nopad_ci" title="Unicode (UCA 4.0.0), no-pad, case-insensitive">utf8mb4_general_nopad_ci</option> <option value="utf8mb4_german2_ci" title="German (phone book order) (UCA 4.0.0), case-insensitive">utf8mb4_german2_ci</option> <option value="utf8mb4_hungarian_ci" title="Hungarian (UCA 4.0.0), case-insensitive">utf8mb4_hungarian_ci</option> <option value="utf8mb4_icelandic_ci" title="Icelandic (UCA 4.0.0), case-insensitive">utf8mb4_icelandic_ci</option> <option value="utf8mb4_latvian_ci" title="Latvian (UCA 4.0.0), case-insensitive">utf8mb4_latvian_ci</option> <option value="utf8mb4_lithuanian_ci" title="Lithuanian (UCA 4.0.0), case-insensitive">utf8mb4_lithuanian_ci</option> <option value="utf8mb4_myanmar_ci" title="Burmese (UCA 4.0.0), case-insensitive">utf8mb4_myanmar_ci</option> <option value="utf8mb4_nopad_bin" title="Unicode (UCA 4.0.0), no-pad, binary">utf8mb4_nopad_bin</option> <option value="utf8mb4_persian_ci" title="Persian (UCA 4.0.0), case-insensitive">utf8mb4_persian_ci</option> <option value="utf8mb4_polish_ci" title="Polish (UCA 4.0.0), case-insensitive">utf8mb4_polish_ci</option> <option value="utf8mb4_roman_ci" title="West European (UCA 4.0.0), case-insensitive">utf8mb4_roman_ci</option> <option value="utf8mb4_romanian_ci" title="Romanian (UCA 4.0.0), case-insensitive">utf8mb4_romanian_ci</option> <option value="utf8mb4_sinhala_ci" title="Sinhalese (UCA 4.0.0), case-insensitive">utf8mb4_sinhala_ci</option> <option value="utf8mb4_slovak_ci" title="Slovak (UCA 4.0.0), case-insensitive">utf8mb4_slovak_ci</option> <option value="utf8mb4_slovenian_ci" title="Slovenian (UCA 4.0.0), case-insensitive">utf8mb4_slovenian_ci</option> <option value="utf8mb4_spanish2_ci" title="Spanish (traditional) (UCA 4.0.0), case-insensitive">utf8mb4_spanish2_ci</option> <option value="utf8mb4_spanish_ci" title="Spanish (modern) (UCA 4.0.0), case-insensitive">utf8mb4_spanish_ci</option> <option value="utf8mb4_swedish_ci" title="Swedish (UCA 4.0.0), case-insensitive">utf8mb4_swedish_ci</option> <option value="utf8mb4_thai_520_w2" title="Thai (UCA 5.2.0), multi-level">utf8mb4_thai_520_w2</option> <option value="utf8mb4_turkish_ci" title="Turkish (UCA 4.0.0), case-insensitive">utf8mb4_turkish_ci</option> <option value="utf8mb4_unicode_520_ci" title="Unicode (UCA 5.2.0), case-insensitive">utf8mb4_unicode_520_ci</option> <option value="utf8mb4_unicode_520_nopad_ci" title="Unicode (UCA 5.2.0), no-pad, case-insensitive">utf8mb4_unicode_520_nopad_ci</option> <option value="utf8mb4_unicode_ci" title="Unicode (UCA 4.0.0), case-insensitive" selected>utf8mb4_unicode_ci</option> <option value="utf8mb4_unicode_nopad_ci" title="Unicode (UCA 4.0.0), no-pad, case-insensitive">utf8mb4_unicode_nopad_ci</option> <option value="utf8mb4_vietnamese_ci" title="Vietnamese (UCA 4.0.0), case-insensitive">utf8mb4_vietnamese_ci</option> </optgroup> </select> </div> </form> </li> <li id="li_user_preferences" class="list-group-item"> <a href="index.php?route=/preferences/manage&lang=en"> <span class="text-nowrap"><img src="themes/dot.gif" title="More settings" alt="More settings" class="icon ic_b_tblops"> More settings</span> </a> </li> </ul> </div> <div class="card mt-4"> <div class="card-header"> Appearance settings </div> <ul class="list-group list-group-flush"> <li id="li_select_lang" class="list-group-item"> <form method="get" action="index.php?route=/&lang=en" class="row row-cols-lg-auto align-items-center disableAjax"> <input type="hidden" name="db" value=""><input type="hidden" name="table" value=""><input type="hidden" name="lang" value="en"><input type="hidden" name="token" value="68796d444825575e6d2d604f364a4658"> <div class="col-12"> <label for="languageSelect" class="col-form-label text-nowrap"> <img src="themes/dot.gif" title="" alt="" class="icon ic_s_lang"> Language <a href="./doc/html/faq.html#faq7-2" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </label> </div> <div class="col-12"> <select name="lang" class="form-select autosubmit w-auto" lang="en" dir="ltr" id="languageSelect"> <option value="sq">Shqip - Albanian</option> <option value="ar">العربية - Arabic</option> <option value="hy">Հայերէն - Armenian</option> <option value="az">Azərbaycanca - Azerbaijani</option> <option value="bn">বাংলা - Bangla</option> <option value="be">Беларуская - Belarusian</option> <option value="bg">Български - Bulgarian</option> <option value="ca">Català - Catalan</option> <option value="zh_cn">中文 - Chinese simplified</option> <option value="zh_tw">中文 - Chinese traditional</option> <option value="cs">Čeština - Czech</option> <option value="da">Dansk - Danish</option> <option value="nl">Nederlands - Dutch</option> <option value="en" selected>English</option> <option value="en_gb">English (United Kingdom)</option> <option value="et">Eesti - Estonian</option> <option value="fi">Suomi - Finnish</option> <option value="fr">Français - French</option> <option value="gl">Galego - Galician</option> <option value="de">Deutsch - German</option> <option value="el">Ελληνικά - Greek</option> <option value="he">עברית - Hebrew</option> <option value="hu">Magyar - Hungarian</option> <option value="id">Bahasa Indonesia - Indonesian</option> <option value="ia">Interlingua</option> <option value="it">Italiano - Italian</option> <option value="ja">日本語 - Japanese</option> <option value="kk">Қазақ - Kazakh</option> <option value="ko">한국어 - Korean</option> <option value="nb">Norsk - Norwegian</option> <option value="pl">Polski - Polish</option> <option value="pt">Português - Portuguese</option> <option value="pt_br">Português (Brasil) - Portuguese (Brazil)</option> <option value="ro">Română - Romanian</option> <option value="ru">Русский - Russian</option> <option value="si">සිංහල - Sinhala</option> <option value="sk">Slovenčina - Slovak</option> <option value="sl">Slovenščina - Slovenian</option> <option value="es">Español - Spanish</option> <option value="sv">Svenska - Swedish</option> <option value="tr">Türkçe - Turkish</option> <option value="uk">Українська - Ukrainian</option> <option value="vi">Tiếng Việt - Vietnamese</option> </select> </div> </form> </li> <li id="li_select_theme" class="list-group-item"> <form method="post" action="index.php?route=/themes/set&lang=en" class="row row-cols-lg-auto align-items-center disableAjax"> <input type="hidden" name="lang" value="en"><input type="hidden" name="token" value="68796d444825575e6d2d604f364a4658"> <div class="col-12"> <label for="themeSelect" class="col-form-label"> <span class="text-nowrap"><img src="themes/dot.gif" title="Theme" alt="Theme" class="icon ic_s_theme"> Theme</span> </label> </div> <div class="col-12"> <div class="input-group"> <select name="set_theme" class="form-select autosubmit" lang="en" dir="ltr" id="themeSelect"> <option value="bootstrap">Bootstrap</option> <option value="metro">Metro</option> <option value="original">Original</option> <option value="pmahomme" selected>pmahomme</option> </select> <button type="button" class="btn btn-outline-secondary" data-bs-toggle="modal" data-bs-target="#themesModal"> View all </button> </div> </div> </form> </li> </ul> </div> </div> <div class="col-lg-5 col-12"> <div class="card mt-4"> <div class="card-header"> Database server </div> <ul class="list-group list-group-flush"> <li class="list-group-item"> Server: Localhost via UNIX socket </li> <li class="list-group-item"> Server type: MariaDB </li> <li class="list-group-item"> Server connection: <span class="">SSL is not being used</span> <a href="./doc/html/setup.html#ssl" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </li> <li class="list-group-item"> Server version: 10.4.27-MariaDB - Source distribution </li> <li class="list-group-item"> Protocol version: 10 </li> <li class="list-group-item"> User: root@localhost </li> <li class="list-group-item"> Server charset: <span lang="en" dir="ltr"> UTF-8 Unicode (utf8mb4) </span> </li> </ul> </div> <div class="card mt-4"> <div class="card-header"> Web server </div> <ul class="list-group list-group-flush"> <li class="list-group-item"> Apache/2.4.54 (Unix) OpenSSL/1.1.1s PHP/7.4.33 mod_perl/2.0.12 Perl/v5.34.1 </li> <li class="list-group-item" id="li_mysql_client_version"> Database client version: libmysql - mysqlnd 7.4.33 </li> <li class="list-group-item"> PHP extension: mysqli <a href="./url.php?url=https%3A%2F%2Fwww.php.net%2Fmanual%2Fen%2Fbook.mysqli.php" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> curl <a href="./url.php?url=https%3A%2F%2Fwww.php.net%2Fmanual%2Fen%2Fbook.curl.php" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> mbstring <a href="./url.php?url=https%3A%2F%2Fwww.php.net%2Fmanual%2Fen%2Fbook.mbstring.php" target="documentation"><img src="themes/dot.gif" title="Documentation" alt="Documentation" class="icon ic_b_help"></a> </li> <li class="list-group-item"> PHP version: 7.4.33 </li> </ul> </div> <div class="card mt-4"> <div class="card-header"> phpMyAdmin </div> <ul class="list-group list-group-flush"> <li id="li_pma_version" class="list-group-item jsversioncheck"> Version information: <span class="version">5.2.0</span> </li> <li class="list-group-item"> <a href="./doc/html/index.html" target="_blank" rel="noopener noreferrer"> Documentation </a> </li> <li class="list-group-item"> <a href="./url.php?url=https%3A%2F%2Fwww.phpmyadmin.net%2F" target="_blank" rel="noopener noreferrer"> Official Homepage </a> </li> <li class="list-group-item"> <a href="./url.php?url=https%3A%2F%2Fwww.phpmyadmin.net%2Fcontribute%2F" target="_blank" rel="noopener noreferrer"> Contribute </a> </li> <li class="list-group-item"> <a href="./url.php?url=https%3A%2F%2Fwww.phpmyadmin.net%2Fsupport%2F" target="_blank" rel="noopener noreferrer"> Get support </a> </li> <li class="list-group-item"> <a href="index.php?route=/changelog&lang=en" target="_blank"> List of changes </a> </li> <li class="list-group-item"> <a href="index.php?route=/license&lang=en" target="_blank"> License </a> </li> </ul> </div> </div> </div> </div> </div> <div class="modal fade" id="themesModal" tabindex="-1" aria-labelledby="themesModalLabel" aria-hidden="true"> <div class="modal-dialog modal-xl"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="themesModalLabel">phpMyAdmin Themes</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"> <div class="spinner-border" role="status"> <span class="visually-hidden">Loading…</span> </div> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> <a href="./url.php?url=https%3A%2F%2Fwww.phpmyadmin.net%2Fthemes%2F#pma_5_2" class="btn btn-primary" rel="noopener noreferrer" target="_blank"> Get more themes! </a> </div> </div> </div> </div> </div> <div id="selflink" class="d-print-none"> <a href="index.php?route=%2F&server=1&lang=en" title="Open new phpMyAdmin window" target="_blank" rel="noopener noreferrer"> <img src="themes/dot.gif" title="Open new phpMyAdmin window" alt="Open new phpMyAdmin window" class="icon ic_window-new"> </a> </div> <div class="clearfloat d-print-none" id="pma_errors"> </div> <script data-cfasync="false" type="text/javascript"> // <![CDATA[ var debugSQLInfo = 'null'; // ]]> </script> </body> </html>Solution Ensure that your web server, application server, load balancer, etc. is configured to set the Content-Security-Policy header.
-
Session Management Response Identified (1)
GET http://localhost/phpmyadmin/index.php?add_favorite=1&ajax_request=1&db=information_schema&favorite_table=ALL_PLUGINS&route=/database/structure/favorite-table
Alert tags Alert description The given response has been identified as containing a session management token. The 'Other Info' field contains a set of header tokens that can be used in the Header Based Session Management Method. If the request is in a context which has a Session Management Method set to "Auto-Detect" then this rule will change the session management to use the tokens identified.
Other info cookie:phpMyAdmin
Request Request line and header section (354 bytes)
GET http://localhost/phpmyadmin/doc/html/index.html HTTP/1.1 host: localhost user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 pragma: no-cache cache-control: no-cache referer: http://localhost/phpmyadmin/ Cookie: phpMyAdmin=610f86c60f00a8f4dc92fe660c217e62; pma_lang=enRequest body (0 bytes)
Response Status line and header section (285 bytes)
HTTP/1.1 200 OK Date: Sat, 19 Apr 2025 15:17:45 GMT Server: Apache/2.4.54 (Unix) OpenSSL/1.1.1s PHP/7.4.33 mod_perl/2.0.12 Perl/v5.34.1 Last-Modified: Wed, 11 May 2022 04:39:14 GMT ETag: "3b0e-5deb505f5e080" Accept-Ranges: bytes Content-Length: 15118 Content-Type: text/htmlResponse body (15118 bytes)
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Welcome to phpMyAdmin’s documentation! — phpMyAdmin 5.2.0 documentation</title> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> <link rel="stylesheet" href="_static/classic.css" type="text/css" /> <script id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script> <script src="_static/jquery.js"></script> <script src="_static/underscore.js"></script> <script src="_static/doctools.js"></script> <link rel="index" title="Index" href="genindex.html" /> <link rel="search" title="Search" href="search.html" /> <link rel="copyright" title="Copyright" href="copyright.html" /> <link rel="next" title="Introduction" href="intro.html" /> </head><body> <div class="related" role="navigation" aria-label="related navigation"> <h3>Navigation</h3> <ul> <li class="right" style="margin-right: 10px"> <a href="genindex.html" title="General Index" accesskey="I">index</a></li> <li class="right" > <a href="intro.html" title="Introduction" accesskey="N">next</a> |</li> <li class="nav-item nav-item-0"><a href="#">phpMyAdmin 5.2.0 documentation</a> »</li> <li class="nav-item nav-item-this"><a href="">Welcome to phpMyAdmin’s documentation!</a></li> </ul> </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body" role="main"> <div class="section" id="welcome-to-phpmyadmin-s-documentation"> <h1>Welcome to phpMyAdmin’s documentation!<a class="headerlink" href="#welcome-to-phpmyadmin-s-documentation" title="Permalink to this headline">¶</a></h1> <p>Contents:</p> <div class="toctree-wrapper compound"> <ul> <li class="toctree-l1"><a class="reference internal" href="intro.html">Introduction</a><ul> <li class="toctree-l2"><a class="reference internal" href="intro.html#supported-features">Supported features</a></li> <li class="toctree-l2"><a class="reference internal" href="intro.html#shortcut-keys">Shortcut keys</a></li> <li class="toctree-l2"><a class="reference internal" href="intro.html#a-word-about-users">A word about users</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="require.html">Requirements</a><ul> <li class="toctree-l2"><a class="reference internal" href="require.html#web-server">Web server</a></li> <li class="toctree-l2"><a class="reference internal" href="require.html#php">PHP</a></li> <li class="toctree-l2"><a class="reference internal" href="require.html#database">Database</a></li> <li class="toctree-l2"><a class="reference internal" href="require.html#web-browser">Web browser</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="setup.html">Installation</a><ul> <li class="toctree-l2"><a class="reference internal" href="setup.html#linux-distributions">Linux distributions</a></li> <li class="toctree-l2"><a class="reference internal" href="setup.html#installing-on-windows">Installing on Windows</a></li> <li class="toctree-l2"><a class="reference internal" href="setup.html#installing-from-git">Installing from Git</a></li> <li class="toctree-l2"><a class="reference internal" href="setup.html#installing-using-composer">Installing using Composer</a></li> <li class="toctree-l2"><a class="reference internal" href="setup.html#installing-using-docker">Installing using Docker</a></li> <li class="toctree-l2"><a class="reference internal" href="setup.html#ibm-cloud">IBM Cloud</a></li> <li class="toctree-l2"><a class="reference internal" href="setup.html#quick-install">Quick Install</a></li> <li class="toctree-l2"><a class="reference internal" href="setup.html#verifying-phpmyadmin-releases">Verifying phpMyAdmin releases</a></li> <li class="toctree-l2"><a class="reference internal" href="setup.html#phpmyadmin-configuration-storage">phpMyAdmin configuration storage</a></li> <li class="toctree-l2"><a class="reference internal" href="setup.html#upgrading-from-an-older-version">Upgrading from an older version</a></li> <li class="toctree-l2"><a class="reference internal" href="setup.html#using-authentication-modes">Using authentication modes</a></li> <li class="toctree-l2"><a class="reference internal" href="setup.html#securing-your-phpmyadmin-installation">Securing your phpMyAdmin installation</a></li> <li class="toctree-l2"><a class="reference internal" href="setup.html#using-ssl-for-connection-to-database-server">Using SSL for connection to database server</a></li> <li class="toctree-l2"><a class="reference internal" href="setup.html#known-issues">Known issues</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="config.html">Configuration</a><ul> <li class="toctree-l2"><a class="reference internal" href="config.html#basic-settings">Basic settings</a></li> <li class="toctree-l2"><a class="reference internal" href="config.html#server-connection-settings">Server connection settings</a></li> <li class="toctree-l2"><a class="reference internal" href="config.html#generic-settings">Generic settings</a></li> <li class="toctree-l2"><a class="reference internal" href="config.html#cookie-authentication-options">Cookie authentication options</a></li> <li class="toctree-l2"><a class="reference internal" href="config.html#navigation-panel-setup">Navigation panel setup</a></li> <li class="toctree-l2"><a class="reference internal" href="config.html#main-panel">Main panel</a></li> <li class="toctree-l2"><a class="reference internal" href="config.html#database-structure">Database structure</a></li> <li class="toctree-l2"><a class="reference internal" href="config.html#browse-mode">Browse mode</a></li> <li class="toctree-l2"><a class="reference internal" href="config.html#editing-mode">Editing mode</a></li> <li class="toctree-l2"><a class="reference internal" href="config.html#export-and-import-settings">Export and import settings</a></li> <li class="toctree-l2"><a class="reference internal" href="config.html#tabs-display-settings">Tabs display settings</a></li> <li class="toctree-l2"><a class="reference internal" href="config.html#pdf-options">PDF Options</a></li> <li class="toctree-l2"><a class="reference internal" href="config.html#languages">Languages</a></li> <li class="toctree-l2"><a class="reference internal" href="config.html#web-server-settings">Web server settings</a></li> <li class="toctree-l2"><a class="reference internal" href="config.html#theme-settings">Theme settings</a></li> <li class="toctree-l2"><a class="reference internal" href="config.html#design-customization">Design customization</a></li> <li class="toctree-l2"><a class="reference internal" href="config.html#text-fields">Text fields</a></li> <li class="toctree-l2"><a class="reference internal" href="config.html#sql-query-box-settings">SQL query box settings</a></li> <li class="toctree-l2"><a class="reference internal" href="config.html#web-server-upload-save-import-directories">Web server upload/save/import directories</a></li> <li class="toctree-l2"><a class="reference internal" href="config.html#various-display-setting">Various display setting</a></li> <li class="toctree-l2"><a class="reference internal" href="config.html#page-titles">Page titles</a></li> <li class="toctree-l2"><a class="reference internal" href="config.html#theme-manager-settings">Theme manager settings</a></li> <li class="toctree-l2"><a class="reference internal" href="config.html#default-queries">Default queries</a></li> <li class="toctree-l2"><a class="reference internal" href="config.html#mysql-settings">MySQL settings</a></li> <li class="toctree-l2"><a class="reference internal" href="config.html#default-options-for-transformations">Default options for Transformations</a></li> <li class="toctree-l2"><a class="reference internal" href="config.html#console-settings">Console settings</a></li> <li class="toctree-l2"><a class="reference internal" href="config.html#developer">Developer</a></li> <li class="toctree-l2"><a class="reference internal" href="config.html#examples">Examples</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="user.html">User Guide</a><ul> <li class="toctree-l2"><a class="reference internal" href="settings.html">Configuring phpMyAdmin</a></li> <li class="toctree-l2"><a class="reference internal" href="two_factor.html">Two-factor authentication</a></li> <li class="toctree-l2"><a class="reference internal" href="transformations.html">Transformations</a></li> <li class="toctree-l2"><a class="reference internal" href="bookmarks.html">Bookmarks</a></li> <li class="toctree-l2"><a class="reference internal" href="privileges.html">User management</a></li> <li class="toctree-l2"><a class="reference internal" href="relations.html">Relations</a></li> <li class="toctree-l2"><a class="reference internal" href="charts.html">Charts</a></li> <li class="toctree-l2"><a class="reference internal" href="import_export.html">Import and export</a></li> <li class="toctree-l2"><a class="reference internal" href="themes.html">Custom Themes</a></li> <li class="toctree-l2"><a class="reference internal" href="other.html">Other sources of information</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="faq.html">FAQ - Frequently Asked Questions</a><ul> <li class="toctree-l2"><a class="reference internal" href="faq.html#server">Server</a></li> <li class="toctree-l2"><a class="reference internal" href="faq.html#configuration">Configuration</a></li> <li class="toctree-l2"><a class="reference internal" href="faq.html#known-limitations">Known limitations</a></li> <li class="toctree-l2"><a class="reference internal" href="faq.html#isps-multi-user-installations">ISPs, multi-user installations</a></li> <li class="toctree-l2"><a class="reference internal" href="faq.html#browsers-or-client-os">Browsers or client OS</a></li> <li class="toctree-l2"><a class="reference internal" href="faq.html#using-phpmyadmin">Using phpMyAdmin</a></li> <li class="toctree-l2"><a class="reference internal" href="faq.html#phpmyadmin-project">phpMyAdmin project</a></li> <li class="toctree-l2"><a class="reference internal" href="faq.html#security">Security</a></li> <li class="toctree-l2"><a class="reference internal" href="faq.html#synchronization">Synchronization</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="developers.html">Developers Information</a></li> <li class="toctree-l1"><a class="reference internal" href="security.html">Security policy</a><ul> <li class="toctree-l2"><a class="reference internal" href="security.html#typical-vulnerabilities">Typical vulnerabilities</a></li> <li class="toctree-l2"><a class="reference internal" href="security.html#reporting-security-issues">Reporting security issues</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="vendors.html">Distributing and packaging phpMyAdmin</a><ul> <li class="toctree-l2"><a class="reference internal" href="vendors.html#external-libraries">External libraries</a></li> <li class="toctree-l2"><a class="reference internal" href="vendors.html#specific-files-licenses">Specific files LICENSES</a></li> <li class="toctree-l2"><a class="reference internal" href="vendors.html#licenses-for-vendors">Licenses for vendors</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="copyright.html">Copyright</a><ul> <li class="toctree-l2"><a class="reference internal" href="copyright.html#third-party-licenses">Third party licenses</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="credits.html">Credits</a><ul> <li class="toctree-l2"><a class="reference internal" href="credits.html#credits-in-chronological-order">Credits, in chronological order</a></li> <li class="toctree-l2"><a class="reference internal" href="credits.html#translators">Translators</a></li> <li class="toctree-l2"><a class="reference internal" href="credits.html#documentation-translators">Documentation translators</a></li> <li class="toctree-l2"><a class="reference internal" href="credits.html#original-credits-of-version-2-1-0">Original Credits of Version 2.1.0</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="glossary.html">Glossary</a></li> </ul> </div> </div> <div class="section" id="indices-and-tables"> <h1>Indices and tables<a class="headerlink" href="#indices-and-tables" title="Permalink to this headline">¶</a></h1> <ul class="simple"> <li><p><a class="reference internal" href="genindex.html"><span class="std std-ref">Index</span></a></p></li> <li><p><a class="reference internal" href="search.html"><span class="std std-ref">Search Page</span></a></p></li> <li><p><a class="reference internal" href="glossary.html#glossary"><span class="std std-ref">Glossary</span></a></p></li> </ul> </div> <div class="clearer"></div> </div> </div> </div> <div class="sphinxsidebar" role="navigation" aria-label="main navigation"> <div class="sphinxsidebarwrapper"> <h3><a href="#">Table of Contents</a></h3> <ul> <li><a class="reference internal" href="#">Welcome to phpMyAdmin’s documentation!</a></li> <li><a class="reference internal" href="#indices-and-tables">Indices and tables</a></li> </ul> <h4>Next topic</h4> <p class="topless"><a href="intro.html" title="next chapter">Introduction</a></p> <div role="note" aria-label="source link"> <h3>This Page</h3> <ul class="this-page-menu"> <li><a href="_sources/index.rst.txt" rel="nofollow">Show Source</a></li> </ul> </div> <div id="searchbox" style="display: none" role="search"> <h3 id="searchlabel">Quick search</h3> <div class="searchformwrapper"> <form class="search" action="search.html" method="get"> <input type="text" name="q" aria-labelledby="searchlabel" /> <input type="submit" value="Go" /> </form> </div> </div> <script>$('#searchbox').show(0);</script> </div> </div> <div class="clearer"></div> </div> <div class="related" role="navigation" aria-label="related navigation"> <h3>Navigation</h3> <ul> <li class="right" style="margin-right: 10px"> <a href="genindex.html" title="General Index" >index</a></li> <li class="right" > <a href="intro.html" title="Introduction" >next</a> |</li> <li class="nav-item nav-item-0"><a href="#">phpMyAdmin 5.2.0 documentation</a> »</li> <li class="nav-item nav-item-this"><a href="">Welcome to phpMyAdmin’s documentation!</a></li> </ul> </div> <div class="footer" role="contentinfo"> © <a href="copyright.html">Copyright</a> 2012 - 2021, The phpMyAdmin devel team. Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 3.4.3. </div> </body> </html>Parameter phpMyAdminEvidence 610f86c60f00a8f4dc92fe660c217e62Solution This is an informational alert rather than a vulnerability and so there is nothing to fix.
-
-
-
Risk=Informational, Confidence=Medium (37)
-
https://connect.facebook.net (1)
-
Tech Detected - HSTS (1)
GET https://connect.facebook.net/en_US/all.js
Alert tags Alert description The following "Security" technology was identified: HSTS.
Described as:
HTTP Strict Transport Security (HSTS) informs browsers that the site should only be accessed using HTTPS.
Request Request line and header section (371 bytes)
GET https://connect.facebook.net/en_US/all.js HTTP/1.1 host: connect.facebook.net User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:136.0) Gecko/20100101 Firefox/136.0 Accept: */* Accept-Language: en-CA,en-US;q=0.7,en;q=0.3 Referer: http://localhost/ Connection: keep-alive Sec-Fetch-Dest: script Sec-Fetch-Mode: no-cors Sec-Fetch-Site: cross-siteRequest body (0 bytes)
Response Status line and header section (2713 bytes)
HTTP/1.1 200 OK Vary: Accept-Encoding Access-Control-Expose-Headers: X-FB-Content-MD5 x-fb-content-md5: 93db2f5738682b72f69b43fa7e130c25 ETag: "3e251739ba299a51c086905cfb309ee3" Content-Type: application/x-javascript; charset=utf-8 timing-allow-origin: * Access-Control-Allow-Origin: * content-md5: k9svVzhoK3L2m0P6fhMMJQ== Expires: Sat, 19 Apr 2025 15:40:35 GMT Cache-Control: public,max-age=1200,stale-while-revalidate=3600 reporting-endpoints: coop_report="https://www.facebook.com/browser_reporting/coop/?minimize=0", coep_report="https://www.facebook.com/browser_reporting/coep/?minimize=0", permissions_policy="https://www.facebook.com/ajax/browser_error_reports/" document-policy: force-load-at-top permissions-policy: accelerometer=(), attribution-reporting=(), autoplay=(), bluetooth=(), camera=(), ch-device-memory=(), ch-downlink=(), ch-dpr=(), ch-ect=(), ch-rtt=(), ch-save-data=(), ch-ua-arch=(), ch-ua-bitness=(), ch-viewport-height=(), ch-viewport-width=(), ch-width=(), clipboard-read=(), clipboard-write=(), compute-pressure=(), display-capture=(), encrypted-media=(), fullscreen=(self), gamepad=(), geolocation=(), gyroscope=(), hid=(), idle-detection=(), interest-cohort=(), keyboard-map=(), local-fonts=(), magnetometer=(), microphone=(), midi=(), otp-credentials=(), payment=(), picture-in-picture=(), private-state-token-issuance=(), publickey-credentials-get=(), screen-wake-lock=(), serial=(), shared-storage=(), shared-storage-select-url=(), private-state-token-redemption=(), usb=(), unload=(self), window-management=(), xr-spatial-tracking=();report-to="permissions_policy" cross-origin-resource-policy: cross-origin cross-origin-embedder-policy-report-only: require-corp;report-to="coep_report" cross-origin-opener-policy: same-origin-allow-popups X-Content-Type-Options: nosniff report-to: {"max_age":2592000,"endpoints":[{"url":"https:\/\/www.facebook.com\/browser_reporting\/coop\/?minimize=0"}],"group":"coop_report","include_subdomains":true}, {"max_age":86400,"endpoints":[{"url":"https:\/\/www.facebook.com\/browser_reporting\/coep\/?minimize=0"}],"group":"coep_report"}, {"max_age":21600,"endpoints":[{"url":"https:\/\/www.facebook.com\/ajax\/browser_error_reports\/"}],"group":"permissions_policy"} X-Frame-Options: DENY origin-agent-cluster: ?1 Strict-Transport-Security: max-age=31536000; preload; includeSubDomains X-FB-Debug: /2oR3Dla6RyjZQIQGp5jh7MTSUbTX+fmYlVY4PozymK3rih8Qku6bT7v9meovdhq6fTTTiMd//ftLgvpKxOGhQ== Date: Sat, 19 Apr 2025 15:20:35 GMT X-FB-Connection-Quality: EXCELLENT; q=0.9, rtt=22, rtx=0, c=14, mss=1380, tbw=3410, tp=-1, tpl=-1, uplat=119, ullat=0 Alt-Svc: h3=":443"; ma=86400 Connection: keep-alive Content-Length: 3093Response body (3093 bytes)
/*1745076035,,JIT Construction: v1022054384,en_US*/ /** * Copyright (c) 2017-present, Facebook, Inc. All rights reserved. * * You are hereby granted a non-exclusive, worldwide, royalty-free license to use, * copy, modify, and distribute this software in source code or binary form for use * in connection with the web services and APIs provided by Facebook. * * As with any software that integrates with the Facebook platform, your use of * this software is subject to the Facebook Platform Policy * [http://developers.facebook.com/policy/]. This copyright notice shall be * included in all copies or substantial portions of the software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ (function _(a,b,c,d,e){var f=window.console;f&&Math.floor(new Date().getTime()/1e3)-b>7*24*60*60&&f.warn("The Facebook JSSDK is more than 7 days old.");if(window[c])return;if(!window.JSON)return;var g=window[c]={__buffer:{replay:function(){var a=this,b=function(d){var b=window[c];a.calls[d][0].split(".").forEach(function(a){return b=b[a]});b.apply(null,a.calls[d][1])};for(var d=0;d<this.calls.length;d++)b(d);this.calls=[]},calls:[],opts:null},getUserID:function(){return""},getAuthResponse:function(){return null},getAccessToken:function(){return null},init:function(a){g.__buffer.opts=a}};for(b=0;b<d.length;b++){f=d[b];if(f in g)continue;var h=f.split("."),i=h.pop(),j=g;for(var k=0;k<h.length;k++)j=j[h[k]]||(j[h[k]]={});j[i]=function(a){if(a==="init")return;return function(){g.__buffer.calls.push([a,Array.prototype.slice.call(arguments)])}}(f)}k=document.createElement("script");k.src=a;k.async=!0;e&&(k.crossOrigin="anonymous");h=document.getElementsByTagName("script")[0];h.parentNode&&h.parentNode.insertBefore(k,h)})("https:\/\/connect.facebook.net\/en_US\/all.js?hash=4c99c206a53e2552d3f75237c3ee00a3", 1745076035, "FB", ["AppEvents.EventNames","AppEvents.ParameterNames","AppEvents.activateApp","AppEvents.clearAppVersion","AppEvents.clearUserID","AppEvents.getAppVersion","AppEvents.getUserID","AppEvents.logEvent","AppEvents.logPageView","AppEvents.logPurchase","AppEvents.setAppVersion","AppEvents.setUserID","AppEvents.updateUserProperties","Canvas.Plugin.showPluginElement","Canvas.Plugin.hidePluginElement","Canvas.Prefetcher.addStaticResource","Canvas.Prefetcher.setCollectionMode","Canvas.getPageInfo","Canvas.scrollTo","Canvas.setAutoGrow","Canvas.setDoneLoading","Canvas.setSize","Canvas.setUrlHandler","Canvas.startTimer","Canvas.stopTimer","Event.subscribe","Event.unsubscribe","XFBML.parse","addFriend","api","getAccessToken","getAuthResponse","getLoginStatus","getUserID","init","login","logout","publish","share","ui"], true);Evidence Strict-Transport-Security
-
-
http://cdnjs.cloudflare.com (2)
-
Tech Detected - Cloudflare (1)
GET http://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.1.0/css/font-awesome.min.css
Alert tags Alert description The following "CDN" technology was identified: Cloudflare.
Described as:
Cloudflare is a web-infrastructure and website-security company, providing content-delivery-network services, DDoS mitigation, Internet security, and distributed domain-name-server services.
Other info The following CPE is associated with the identified tech: cpe:2.3:a:cloudflare:cloudflare:*:*:*:*:*:*:*:*
Request Request line and header section (364 bytes)
GET http://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.1.0/css/font-awesome.min.css HTTP/1.1 host: cdnjs.cloudflare.com User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:136.0) Gecko/20100101 Firefox/136.0 Accept: text/css,*/*;q=0.1 Accept-Language: en-CA,en-US;q=0.7,en;q=0.3 Connection: keep-alive Referer: http://localhost/ Priority: u=2Request body (0 bytes)
Response Status line and header section (887 bytes)
HTTP/1.1 200 OK Date: Sat, 19 Apr 2025 15:20:33 GMT Content-Type: text/css; charset=utf-8 Connection: keep-alive Access-Control-Allow-Origin: * Cache-Control: public, max-age=30672000 ETag: W/"5eb03e5f-4bcb" Last-Modified: Mon, 04 May 2020 16:10:07 GMT cf-cdnjs-via: cfworker/kv Cross-Origin-Resource-Policy: cross-origin Timing-Allow-Origin: * X-Content-Type-Options: nosniff CF-Cache-Status: MISS Expires: Thu, 09 Apr 2026 15:20:33 GMT Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=nAQsN8vcxKmw4nMiqIwHZJuDTW%2BCO8ZQQzgIZN9SHoFDFr8Sg8vcgdAg64sSVjKAwTWsV0BEUv5821mx2aVRvJH3YRBrjQw0oB7iqKHmSmpN0%2BXR4YAkPcmSqfj53qN5EGD%2F9FMx"}],"group":"cf-nel","max_age":604800} NEL: {"success_fraction":0.01,"report_to":"cf-nel","max_age":604800} Server: cloudflare CF-RAY: 932d62f7cbdca294-YUL alt-svc: h3=":443"; ma=86400 content-length: 19403Response body (19403 bytes)
/*! * Font Awesome 3.1.0 * the iconic font designed for Bootstrap * ------------------------------------------------------- * The full suite of pictographic icons, examples, and documentation * can be found at: http://fontawesome.io * * License * ------------------------------------------------------- * - The Font Awesome font is licensed under the SIL Open Font License v1.1 - * http://scripts.sil.org/OFL * - Font Awesome CSS, LESS, and SASS files are licensed under the MIT License - * http://opensource.org/licenses/mit-license.html * - Font Awesome documentation licensed under CC BY 3.0 License - * http://creativecommons.org/licenses/by/3.0/ * - Attribution is no longer required in Font Awesome 3.0, but much appreciated: * "Font Awesome by Dave Gandy - http://fontawesome.io" * Contact * ------------------------------------------------------- * Email: dave@fontawesome.io * Twitter: http://twitter.com/fortaweso_me * Work: Lead Product Designer @ http://kyruus.com */@font-face{font-family:'FontAwesome';src:url('../font/fontawesome-webfont.eot?v=3.1.0');src:url('../font/fontawesome-webfont.eot?#iefix&v=3.1.0') format('embedded-opentype'),url('../font/fontawesome-webfont.woff?v=3.1.0') format('woff'),url('../font/fontawesome-webfont.ttf?v=3.1.0') format('truetype'),url('../font/fontawesome-webfont.svg#fontawesomeregular?v=3.1.0') format('svg');font-weight:normal;font-style:normal}[class^="icon-"],[class*=" icon-"]{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em}[class^="icon-"]:before,[class*=" icon-"]:before{text-decoration:inherit;display:inline-block;speak:none}.icon-large:before{vertical-align:-10%;font-size:1.3333333333333333em}a [class^="icon-"],a [class*=" icon-"],a [class^="icon-"]:before,a [class*=" icon-"]:before{display:inline}[class^="icon-"].icon-fixed-width,[class*=" icon-"].icon-fixed-width{display:inline-block;width:1.2857142857142858em;text-align:center}[class^="icon-"].icon-fixed-width.icon-large,[class*=" icon-"].icon-fixed-width.icon-large{width:1.5714285714285714em}ul.icons-ul{list-style-type:none;text-indent:-0.7142857142857143em;margin-left:2.142857142857143em}ul.icons-ul>li .icon-li{width:.7142857142857143em;display:inline-block;text-align:center}[class^="icon-"].hide,[class*=" icon-"].hide{display:none}.icon-muted{color:#eee}.icon-light{color:#fff}.icon-dark{color:#333}.icon-border{border:solid 1px #eee;padding:.2em .25em .15em;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.icon-2x{font-size:2em}.icon-2x.icon-border{border-width:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.icon-3x{font-size:3em}.icon-3x.icon-border{border-width:3px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.icon-4x{font-size:4em}.icon-4x.icon-border{border-width:4px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.icon-5x{font-size:5em}.icon-5x.icon-border{border-width:5px;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px}.pull-right{float:right}.pull-left{float:left}[class^="icon-"].pull-left,[class*=" icon-"].pull-left{margin-right:.3em}[class^="icon-"].pull-right,[class*=" icon-"].pull-right{margin-left:.3em}[class^="icon-"],[class*=" icon-"]{display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none;background-position:0 0;background-repeat:repeat;margin-top:0}.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"]{background-image:none}.btn [class^="icon-"].icon-large,.nav [class^="icon-"].icon-large,.btn [class*=" icon-"].icon-large,.nav [class*=" icon-"].icon-large{line-height:.9em}.btn [class^="icon-"].icon-spin,.nav [class^="icon-"].icon-spin,.btn [class*=" icon-"].icon-spin,.nav [class*=" icon-"].icon-spin{display:inline-block}.nav-tabs [class^="icon-"],.nav-pills [class^="icon-"],.nav-tabs [class*=" icon-"],.nav-pills [class*=" icon-"],.nav-tabs [class^="icon-"].icon-large,.nav-pills [class^="icon-"].icon-large,.nav-tabs [class*=" icon-"].icon-large,.nav-pills [class*=" icon-"].icon-large{line-height:.9em}.btn [class^="icon-"].pull-left.icon-2x,.btn [class*=" icon-"].pull-left.icon-2x,.btn [class^="icon-"].pull-right.icon-2x,.btn [class*=" icon-"].pull-right.icon-2x{margin-top:.18em}.btn [class^="icon-"].icon-spin.icon-large,.btn [class*=" icon-"].icon-spin.icon-large{line-height:.8em}.btn.btn-small [class^="icon-"].pull-left.icon-2x,.btn.btn-small [class*=" icon-"].pull-left.icon-2x,.btn.btn-small [class^="icon-"].pull-right.icon-2x,.btn.btn-small [class*=" icon-"].pull-right.icon-2x{margin-top:.25em}.btn.btn-large [class^="icon-"],.btn.btn-large [class*=" icon-"]{margin-top:0}.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x,.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-top:.05em}.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x{margin-right:.2em}.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-left:.2em}.icon-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:-35%}.icon-stack [class^="icon-"],.icon-stack [class*=" icon-"]{display:block;text-align:center;position:absolute;width:100%;height:100%;font-size:1em;line-height:inherit;*line-height:2em}.icon-stack .icon-stack-base{font-size:2em;*line-height:1em}.icon-spin{display:inline-block;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)}100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)}100%{-o-transform:rotate(359deg)}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg)}100%{-ms-transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(359deg)}}.icon-rotate-90:before{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1)}.icon-rotate-180:before{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2)}.icon-rotate-270:before{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)}.icon-flip-horizontal:before{-webkit-transform:scale(-1,1);-moz-transform:scale(-1,1);-ms-transform:scale(-1,1);-o-transform:scale(-1,1);transform:scale(-1,1)}.icon-flip-vertical:before{-webkit-transform:scale(1,-1);-moz-transform:scale(1,-1);-ms-transform:scale(1,-1);-o-transform:scale(1,-1);transform:scale(1,-1)}.icon-glass:before{content:"\f000"}.icon-music:before{content:"\f001"}.icon-search:before{content:"\f002"}.icon-envelope:before{content:"\f003"}.icon-heart:before{content:"\f004"}.icon-star:before{content:"\f005"}.icon-star-empty:before{content:"\f006"}.icon-user:before{content:"\f007"}.icon-film:before{content:"\f008"}.icon-th-large:before{content:"\f009"}.icon-th:before{content:"\f00a"}.icon-th-list:before{content:"\f00b"}.icon-ok:before{content:"\f00c"}.icon-remove:before{content:"\f00d"}.icon-zoom-in:before{content:"\f00e"}.icon-zoom-out:before{content:"\f010"}.icon-off:before{content:"\f011"}.icon-signal:before{content:"\f012"}.icon-cog:before{content:"\f013"}.icon-trash:before{content:"\f014"}.icon-home:before{content:"\f015"}.icon-file:before{content:"\f016"}.icon-time:before{content:"\f017"}.icon-road:before{content:"\f018"}.icon-download-alt:before{content:"\f019"}.icon-download:before{content:"\f01a"}.icon-upload:before{content:"\f01b"}.icon-inbox:before{content:"\f01c"}.icon-play-circle:before{content:"\f01d"}.icon-repeat:before,.icon-rotate-right:before{content:"\f01e"}.icon-refresh:before{content:"\f021"}.icon-list-alt:before{content:"\f022"}.icon-lock:before{content:"\f023"}.icon-flag:before{content:"\f024"}.icon-headphones:before{content:"\f025"}.icon-volume-off:before{content:"\f026"}.icon-volume-down:before{content:"\f027"}.icon-volume-up:before{content:"\f028"}.icon-qrcode:before{content:"\f029"}.icon-barcode:before{content:"\f02a"}.icon-tag:before{content:"\f02b"}.icon-tags:before{content:"\f02c"}.icon-book:before{content:"\f02d"}.icon-bookmark:before{content:"\f02e"}.icon-print:before{content:"\f02f"}.icon-camera:before{content:"\f030"}.icon-font:before{content:"\f031"}.icon-bold:before{content:"\f032"}.icon-italic:before{content:"\f033"}.icon-text-height:before{content:"\f034"}.icon-text-width:before{content:"\f035"}.icon-align-left:before{content:"\f036"}.icon-align-center:before{content:"\f037"}.icon-align-right:before{content:"\f038"}.icon-align-justify:before{content:"\f039"}.icon-list:before{content:"\f03a"}.icon-indent-left:before{content:"\f03b"}.icon-indent-right:before{content:"\f03c"}.icon-facetime-video:before{content:"\f03d"}.icon-picture:before{content:"\f03e"}.icon-pencil:before{content:"\f040"}.icon-map-marker:before{content:"\f041"}.icon-adjust:before{content:"\f042"}.icon-tint:before{content:"\f043"}.icon-edit:before{content:"\f044"}.icon-share:before{content:"\f045"}.icon-check:before{content:"\f046"}.icon-move:before{content:"\f047"}.icon-step-backward:before{content:"\f048"}.icon-fast-backward:before{content:"\f049"}.icon-backward:before{content:"\f04a"}.icon-play:before{content:"\f04b"}.icon-pause:before{content:"\f04c"}.icon-stop:before{content:"\f04d"}.icon-forward:before{content:"\f04e"}.icon-fast-forward:before{content:"\f050"}.icon-step-forward:before{content:"\f051"}.icon-eject:before{content:"\f052"}.icon-chevron-left:before{content:"\f053"}.icon-chevron-right:before{content:"\f054"}.icon-plus-sign:before{content:"\f055"}.icon-minus-sign:before{content:"\f056"}.icon-remove-sign:before{content:"\f057"}.icon-ok-sign:before{content:"\f058"}.icon-question-sign:before{content:"\f059"}.icon-info-sign:before{content:"\f05a"}.icon-screenshot:before{content:"\f05b"}.icon-remove-circle:before{content:"\f05c"}.icon-ok-circle:before{content:"\f05d"}.icon-ban-circle:before{content:"\f05e"}.icon-arrow-left:before{content:"\f060"}.icon-arrow-right:before{content:"\f061"}.icon-arrow-up:before{content:"\f062"}.icon-arrow-down:before{content:"\f063"}.icon-share-alt:before,.icon-mail-forward:before{content:"\f064"}.icon-resize-full:before{content:"\f065"}.icon-resize-small:before{content:"\f066"}.icon-plus:before{content:"\f067"}.icon-minus:before{content:"\f068"}.icon-asterisk:before{content:"\f069"}.icon-exclamation-sign:before{content:"\f06a"}.icon-gift:before{content:"\f06b"}.icon-leaf:before{content:"\f06c"}.icon-fire:before{content:"\f06d"}.icon-eye-open:before{content:"\f06e"}.icon-eye-close:before{content:"\f070"}.icon-warning-sign:before{content:"\f071"}.icon-plane:before{content:"\f072"}.icon-calendar:before{content:"\f073"}.icon-random:before{content:"\f074"}.icon-comment:before{content:"\f075"}.icon-magnet:before{content:"\f076"}.icon-chevron-up:before{content:"\f077"}.icon-chevron-down:before{content:"\f078"}.icon-retweet:before{content:"\f079"}.icon-shopping-cart:before{content:"\f07a"}.icon-folder-close:before{content:"\f07b"}.icon-folder-open:before{content:"\f07c"}.icon-resize-vertical:before{content:"\f07d"}.icon-resize-horizontal:before{content:"\f07e"}.icon-bar-chart:before{content:"\f080"}.icon-twitter-sign:before{content:"\f081"}.icon-facebook-sign:before{content:"\f082"}.icon-camera-retro:before{content:"\f083"}.icon-key:before{content:"\f084"}.icon-cogs:before{content:"\f085"}.icon-comments:before{content:"\f086"}.icon-thumbs-up:before{content:"\f087"}.icon-thumbs-down:before{content:"\f088"}.icon-star-half:before{content:"\f089"}.icon-heart-empty:before{content:"\f08a"}.icon-signout:before{content:"\f08b"}.icon-linkedin-sign:before{content:"\f08c"}.icon-pushpin:before{content:"\f08d"}.icon-external-link:before{content:"\f08e"}.icon-signin:before{content:"\f090"}.icon-trophy:before{content:"\f091"}.icon-github-sign:before{content:"\f092"}.icon-upload-alt:before{content:"\f093"}.icon-lemon:before{content:"\f094"}.icon-phone:before{content:"\f095"}.icon-check-empty:before{content:"\f096"}.icon-bookmark-empty:before{content:"\f097"}.icon-phone-sign:before{content:"\f098"}.icon-twitter:before{content:"\f099"}.icon-facebook:before{content:"\f09a"}.icon-github:before{content:"\f09b"}.icon-unlock:before{content:"\f09c"}.icon-credit-card:before{content:"\f09d"}.icon-rss:before{content:"\f09e"}.icon-hdd:before{content:"\f0a0"}.icon-bullhorn:before{content:"\f0a1"}.icon-bell:before{content:"\f0a2"}.icon-certificate:before{content:"\f0a3"}.icon-hand-right:before{content:"\f0a4"}.icon-hand-left:before{content:"\f0a5"}.icon-hand-up:before{content:"\f0a6"}.icon-hand-down:before{content:"\f0a7"}.icon-circle-arrow-left:before{content:"\f0a8"}.icon-circle-arrow-right:before{content:"\f0a9"}.icon-circle-arrow-up:before{content:"\f0aa"}.icon-circle-arrow-down:before{content:"\f0ab"}.icon-globe:before{content:"\f0ac"}.icon-wrench:before{content:"\f0ad"}.icon-tasks:before{content:"\f0ae"}.icon-filter:before{content:"\f0b0"}.icon-briefcase:before{content:"\f0b1"}.icon-fullscreen:before{content:"\f0b2"}.icon-group:before{content:"\f0c0"}.icon-link:before{content:"\f0c1"}.icon-cloud:before{content:"\f0c2"}.icon-beaker:before{content:"\f0c3"}.icon-cut:before{content:"\f0c4"}.icon-copy:before{content:"\f0c5"}.icon-paper-clip:before{content:"\f0c6"}.icon-save:before{content:"\f0c7"}.icon-sign-blank:before{content:"\f0c8"}.icon-reorder:before{content:"\f0c9"}.icon-list-ul:before{content:"\f0ca"}.icon-list-ol:before{content:"\f0cb"}.icon-strikethrough:before{content:"\f0cc"}.icon-underline:before{content:"\f0cd"}.icon-table:before{content:"\f0ce"}.icon-magic:before{content:"\f0d0"}.icon-truck:before{content:"\f0d1"}.icon-pinterest:before{content:"\f0d2"}.icon-pinterest-sign:before{content:"\f0d3"}.icon-google-plus-sign:before{content:"\f0d4"}.icon-google-plus:before{content:"\f0d5"}.icon-money:before{content:"\f0d6"}.icon-caret-down:before{content:"\f0d7"}.icon-caret-up:before{content:"\f0d8"}.icon-caret-left:before{content:"\f0d9"}.icon-caret-right:before{content:"\f0da"}.icon-columns:before{content:"\f0db"}.icon-sort:before{content:"\f0dc"}.icon-sort-down:before{content:"\f0dd"}.icon-sort-up:before{content:"\f0de"}.icon-envelope-alt:before{content:"\f0e0"}.icon-linkedin:before{content:"\f0e1"}.icon-undo:before,.icon-rotate-left:before{content:"\f0e2"}.icon-legal:before{content:"\f0e3"}.icon-dashboard:before{content:"\f0e4"}.icon-comment-alt:before{content:"\f0e5"}.icon-comments-alt:before{content:"\f0e6"}.icon-bolt:before{content:"\f0e7"}.icon-sitemap:before{content:"\f0e8"}.icon-umbrella:before{content:"\f0e9"}.icon-paste:before{content:"\f0ea"}.icon-lightbulb:before{content:"\f0eb"}.icon-exchange:before{content:"\f0ec"}.icon-cloud-download:before{content:"\f0ed"}.icon-cloud-upload:before{content:"\f0ee"}.icon-user-md:before{content:"\f0f0"}.icon-stethoscope:before{content:"\f0f1"}.icon-suitcase:before{content:"\f0f2"}.icon-bell-alt:before{content:"\f0f3"}.icon-coffee:before{content:"\f0f4"}.icon-food:before{content:"\f0f5"}.icon-file-alt:before{content:"\f0f6"}.icon-building:before{content:"\f0f7"}.icon-hospital:before{content:"\f0f8"}.icon-ambulance:before{content:"\f0f9"}.icon-medkit:before{content:"\f0fa"}.icon-fighter-jet:before{content:"\f0fb"}.icon-beer:before{content:"\f0fc"}.icon-h-sign:before{content:"\f0fd"}.icon-plus-sign-alt:before{content:"\f0fe"}.icon-double-angle-left:before{content:"\f100"}.icon-double-angle-right:before{content:"\f101"}.icon-double-angle-up:before{content:"\f102"}.icon-double-angle-down:before{content:"\f103"}.icon-angle-left:before{content:"\f104"}.icon-angle-right:before{content:"\f105"}.icon-angle-up:before{content:"\f106"}.icon-angle-down:before{content:"\f107"}.icon-desktop:before{content:"\f108"}.icon-laptop:before{content:"\f109"}.icon-tablet:before{content:"\f10a"}.icon-mobile-phone:before{content:"\f10b"}.icon-circle-blank:before{content:"\f10c"}.icon-quote-left:before{content:"\f10d"}.icon-quote-right:before{content:"\f10e"}.icon-spinner:before{content:"\f110"}.icon-circle:before{content:"\f111"}.icon-reply:before,.icon-mail-reply:before{content:"\f112"}.icon-folder-close-alt:before{content:"\f114"}.icon-folder-open-alt:before{content:"\f115"}.icon-expand-alt:before{content:"\f116"}.icon-collapse-alt:before{content:"\f117"}.icon-smile:before{content:"\f118"}.icon-frown:before{content:"\f119"}.icon-meh:before{content:"\f11a"}.icon-gamepad:before{content:"\f11b"}.icon-keyboard:before{content:"\f11c"}.icon-flag-alt:before{content:"\f11d"}.icon-flag-checkered:before{content:"\f11e"}.icon-terminal:before{content:"\f120"}.icon-code:before{content:"\f121"}.icon-reply-all:before{content:"\f122"}.icon-mail-reply-all:before{content:"\f122"}.icon-star-half-empty:before{content:"\f123"}.icon-location-arrow:before{content:"\f124"}.icon-crop:before{content:"\f125"}.icon-code-fork:before{content:"\f126"}.icon-unlink:before{content:"\f127"}.icon-question:before{content:"\f128"}.icon-info:before{content:"\f129"}.icon-exclamation:before{content:"\f12a"}.icon-superscript:before{content:"\f12b"}.icon-subscript:before{content:"\f12c"}.icon-eraser:before{content:"\f12d"}.icon-puzzle-piece:before{content:"\f12e"}.icon-microphone:before{content:"\f130"}.icon-microphone-off:before{content:"\f131"}.icon-shield:before{content:"\f132"}.icon-calendar-empty:before{content:"\f133"}.icon-fire-extinguisher:before{content:"\f134"}.icon-rocket:before{content:"\f135"}.icon-maxcdn:before{content:"\f136"}.icon-chevron-sign-left:before{content:"\f137"}.icon-chevron-sign-right:before{content:"\f138"}.icon-chevron-sign-up:before{content:"\f139"}.icon-chevron-sign-down:before{content:"\f13a"}.icon-html5:before{content:"\f13b"}.icon-css3:before{content:"\f13c"}.icon-anchor:before{content:"\f13d"}.icon-unlock-alt:before{content:"\f13e"}.icon-bullseye:before{content:"\f140"}.icon-ellipsis-horizontal:before{content:"\f141"}.icon-ellipsis-vertical:before{content:"\f142"}.icon-rss-sign:before{content:"\f143"}.icon-play-sign:before{content:"\f144"}.icon-ticket:before{content:"\f145"}.icon-minus-sign-alt:before{content:"\f146"}.icon-check-minus:before{content:"\f147"}.icon-level-up:before{content:"\f148"}.icon-level-down:before{content:"\f149"}.icon-check-sign:before{content:"\f14a"}.icon-edit-sign:before{content:"\f14b"}.icon-external-link-sign:before{content:"\f14c"}.icon-share-sign:before{content:"\f14d"}Evidence cf-ray
-
Tech Detected - HTTP/3 (1)
GET http://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.1.0/css/font-awesome.min.css
Alert tags Alert description The following "Miscellaneous" technology was identified: HTTP/3.
Described as:
HTTP/3 is the third major version of the Hypertext Transfer Protocol used to exchange information on the World Wide Web.
Request Request line and header section (364 bytes)
GET http://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.1.0/css/font-awesome.min.css HTTP/1.1 host: cdnjs.cloudflare.com User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:136.0) Gecko/20100101 Firefox/136.0 Accept: text/css,*/*;q=0.1 Accept-Language: en-CA,en-US;q=0.7,en;q=0.3 Connection: keep-alive Referer: http://localhost/ Priority: u=2Request body (0 bytes)
Response Status line and header section (887 bytes)
HTTP/1.1 200 OK Date: Sat, 19 Apr 2025 15:20:33 GMT Content-Type: text/css; charset=utf-8 Connection: keep-alive Access-Control-Allow-Origin: * Cache-Control: public, max-age=30672000 ETag: W/"5eb03e5f-4bcb" Last-Modified: Mon, 04 May 2020 16:10:07 GMT cf-cdnjs-via: cfworker/kv Cross-Origin-Resource-Policy: cross-origin Timing-Allow-Origin: * X-Content-Type-Options: nosniff CF-Cache-Status: MISS Expires: Thu, 09 Apr 2026 15:20:33 GMT Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=nAQsN8vcxKmw4nMiqIwHZJuDTW%2BCO8ZQQzgIZN9SHoFDFr8Sg8vcgdAg64sSVjKAwTWsV0BEUv5821mx2aVRvJH3YRBrjQw0oB7iqKHmSmpN0%2BXR4YAkPcmSqfj53qN5EGD%2F9FMx"}],"group":"cf-nel","max_age":604800} NEL: {"success_fraction":0.01,"report_to":"cf-nel","max_age":604800} Server: cloudflare CF-RAY: 932d62f7cbdca294-YUL alt-svc: h3=":443"; ma=86400 content-length: 19403Response body (19403 bytes)
/*! * Font Awesome 3.1.0 * the iconic font designed for Bootstrap * ------------------------------------------------------- * The full suite of pictographic icons, examples, and documentation * can be found at: http://fontawesome.io * * License * ------------------------------------------------------- * - The Font Awesome font is licensed under the SIL Open Font License v1.1 - * http://scripts.sil.org/OFL * - Font Awesome CSS, LESS, and SASS files are licensed under the MIT License - * http://opensource.org/licenses/mit-license.html * - Font Awesome documentation licensed under CC BY 3.0 License - * http://creativecommons.org/licenses/by/3.0/ * - Attribution is no longer required in Font Awesome 3.0, but much appreciated: * "Font Awesome by Dave Gandy - http://fontawesome.io" * Contact * ------------------------------------------------------- * Email: dave@fontawesome.io * Twitter: http://twitter.com/fortaweso_me * Work: Lead Product Designer @ http://kyruus.com */@font-face{font-family:'FontAwesome';src:url('../font/fontawesome-webfont.eot?v=3.1.0');src:url('../font/fontawesome-webfont.eot?#iefix&v=3.1.0') format('embedded-opentype'),url('../font/fontawesome-webfont.woff?v=3.1.0') format('woff'),url('../font/fontawesome-webfont.ttf?v=3.1.0') format('truetype'),url('../font/fontawesome-webfont.svg#fontawesomeregular?v=3.1.0') format('svg');font-weight:normal;font-style:normal}[class^="icon-"],[class*=" icon-"]{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em}[class^="icon-"]:before,[class*=" icon-"]:before{text-decoration:inherit;display:inline-block;speak:none}.icon-large:before{vertical-align:-10%;font-size:1.3333333333333333em}a [class^="icon-"],a [class*=" icon-"],a [class^="icon-"]:before,a [class*=" icon-"]:before{display:inline}[class^="icon-"].icon-fixed-width,[class*=" icon-"].icon-fixed-width{display:inline-block;width:1.2857142857142858em;text-align:center}[class^="icon-"].icon-fixed-width.icon-large,[class*=" icon-"].icon-fixed-width.icon-large{width:1.5714285714285714em}ul.icons-ul{list-style-type:none;text-indent:-0.7142857142857143em;margin-left:2.142857142857143em}ul.icons-ul>li .icon-li{width:.7142857142857143em;display:inline-block;text-align:center}[class^="icon-"].hide,[class*=" icon-"].hide{display:none}.icon-muted{color:#eee}.icon-light{color:#fff}.icon-dark{color:#333}.icon-border{border:solid 1px #eee;padding:.2em .25em .15em;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.icon-2x{font-size:2em}.icon-2x.icon-border{border-width:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.icon-3x{font-size:3em}.icon-3x.icon-border{border-width:3px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.icon-4x{font-size:4em}.icon-4x.icon-border{border-width:4px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.icon-5x{font-size:5em}.icon-5x.icon-border{border-width:5px;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px}.pull-right{float:right}.pull-left{float:left}[class^="icon-"].pull-left,[class*=" icon-"].pull-left{margin-right:.3em}[class^="icon-"].pull-right,[class*=" icon-"].pull-right{margin-left:.3em}[class^="icon-"],[class*=" icon-"]{display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none;background-position:0 0;background-repeat:repeat;margin-top:0}.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"]{background-image:none}.btn [class^="icon-"].icon-large,.nav [class^="icon-"].icon-large,.btn [class*=" icon-"].icon-large,.nav [class*=" icon-"].icon-large{line-height:.9em}.btn [class^="icon-"].icon-spin,.nav [class^="icon-"].icon-spin,.btn [class*=" icon-"].icon-spin,.nav [class*=" icon-"].icon-spin{display:inline-block}.nav-tabs [class^="icon-"],.nav-pills [class^="icon-"],.nav-tabs [class*=" icon-"],.nav-pills [class*=" icon-"],.nav-tabs [class^="icon-"].icon-large,.nav-pills [class^="icon-"].icon-large,.nav-tabs [class*=" icon-"].icon-large,.nav-pills [class*=" icon-"].icon-large{line-height:.9em}.btn [class^="icon-"].pull-left.icon-2x,.btn [class*=" icon-"].pull-left.icon-2x,.btn [class^="icon-"].pull-right.icon-2x,.btn [class*=" icon-"].pull-right.icon-2x{margin-top:.18em}.btn [class^="icon-"].icon-spin.icon-large,.btn [class*=" icon-"].icon-spin.icon-large{line-height:.8em}.btn.btn-small [class^="icon-"].pull-left.icon-2x,.btn.btn-small [class*=" icon-"].pull-left.icon-2x,.btn.btn-small [class^="icon-"].pull-right.icon-2x,.btn.btn-small [class*=" icon-"].pull-right.icon-2x{margin-top:.25em}.btn.btn-large [class^="icon-"],.btn.btn-large [class*=" icon-"]{margin-top:0}.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x,.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-top:.05em}.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x{margin-right:.2em}.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-left:.2em}.icon-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:-35%}.icon-stack [class^="icon-"],.icon-stack [class*=" icon-"]{display:block;text-align:center;position:absolute;width:100%;height:100%;font-size:1em;line-height:inherit;*line-height:2em}.icon-stack .icon-stack-base{font-size:2em;*line-height:1em}.icon-spin{display:inline-block;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)}100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)}100%{-o-transform:rotate(359deg)}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg)}100%{-ms-transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(359deg)}}.icon-rotate-90:before{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1)}.icon-rotate-180:before{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2)}.icon-rotate-270:before{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)}.icon-flip-horizontal:before{-webkit-transform:scale(-1,1);-moz-transform:scale(-1,1);-ms-transform:scale(-1,1);-o-transform:scale(-1,1);transform:scale(-1,1)}.icon-flip-vertical:before{-webkit-transform:scale(1,-1);-moz-transform:scale(1,-1);-ms-transform:scale(1,-1);-o-transform:scale(1,-1);transform:scale(1,-1)}.icon-glass:before{content:"\f000"}.icon-music:before{content:"\f001"}.icon-search:before{content:"\f002"}.icon-envelope:before{content:"\f003"}.icon-heart:before{content:"\f004"}.icon-star:before{content:"\f005"}.icon-star-empty:before{content:"\f006"}.icon-user:before{content:"\f007"}.icon-film:before{content:"\f008"}.icon-th-large:before{content:"\f009"}.icon-th:before{content:"\f00a"}.icon-th-list:before{content:"\f00b"}.icon-ok:before{content:"\f00c"}.icon-remove:before{content:"\f00d"}.icon-zoom-in:before{content:"\f00e"}.icon-zoom-out:before{content:"\f010"}.icon-off:before{content:"\f011"}.icon-signal:before{content:"\f012"}.icon-cog:before{content:"\f013"}.icon-trash:before{content:"\f014"}.icon-home:before{content:"\f015"}.icon-file:before{content:"\f016"}.icon-time:before{content:"\f017"}.icon-road:before{content:"\f018"}.icon-download-alt:before{content:"\f019"}.icon-download:before{content:"\f01a"}.icon-upload:before{content:"\f01b"}.icon-inbox:before{content:"\f01c"}.icon-play-circle:before{content:"\f01d"}.icon-repeat:before,.icon-rotate-right:before{content:"\f01e"}.icon-refresh:before{content:"\f021"}.icon-list-alt:before{content:"\f022"}.icon-lock:before{content:"\f023"}.icon-flag:before{content:"\f024"}.icon-headphones:before{content:"\f025"}.icon-volume-off:before{content:"\f026"}.icon-volume-down:before{content:"\f027"}.icon-volume-up:before{content:"\f028"}.icon-qrcode:before{content:"\f029"}.icon-barcode:before{content:"\f02a"}.icon-tag:before{content:"\f02b"}.icon-tags:before{content:"\f02c"}.icon-book:before{content:"\f02d"}.icon-bookmark:before{content:"\f02e"}.icon-print:before{content:"\f02f"}.icon-camera:before{content:"\f030"}.icon-font:before{content:"\f031"}.icon-bold:before{content:"\f032"}.icon-italic:before{content:"\f033"}.icon-text-height:before{content:"\f034"}.icon-text-width:before{content:"\f035"}.icon-align-left:before{content:"\f036"}.icon-align-center:before{content:"\f037"}.icon-align-right:before{content:"\f038"}.icon-align-justify:before{content:"\f039"}.icon-list:before{content:"\f03a"}.icon-indent-left:before{content:"\f03b"}.icon-indent-right:before{content:"\f03c"}.icon-facetime-video:before{content:"\f03d"}.icon-picture:before{content:"\f03e"}.icon-pencil:before{content:"\f040"}.icon-map-marker:before{content:"\f041"}.icon-adjust:before{content:"\f042"}.icon-tint:before{content:"\f043"}.icon-edit:before{content:"\f044"}.icon-share:before{content:"\f045"}.icon-check:before{content:"\f046"}.icon-move:before{content:"\f047"}.icon-step-backward:before{content:"\f048"}.icon-fast-backward:before{content:"\f049"}.icon-backward:before{content:"\f04a"}.icon-play:before{content:"\f04b"}.icon-pause:before{content:"\f04c"}.icon-stop:before{content:"\f04d"}.icon-forward:before{content:"\f04e"}.icon-fast-forward:before{content:"\f050"}.icon-step-forward:before{content:"\f051"}.icon-eject:before{content:"\f052"}.icon-chevron-left:before{content:"\f053"}.icon-chevron-right:before{content:"\f054"}.icon-plus-sign:before{content:"\f055"}.icon-minus-sign:before{content:"\f056"}.icon-remove-sign:before{content:"\f057"}.icon-ok-sign:before{content:"\f058"}.icon-question-sign:before{content:"\f059"}.icon-info-sign:before{content:"\f05a"}.icon-screenshot:before{content:"\f05b"}.icon-remove-circle:before{content:"\f05c"}.icon-ok-circle:before{content:"\f05d"}.icon-ban-circle:before{content:"\f05e"}.icon-arrow-left:before{content:"\f060"}.icon-arrow-right:before{content:"\f061"}.icon-arrow-up:before{content:"\f062"}.icon-arrow-down:before{content:"\f063"}.icon-share-alt:before,.icon-mail-forward:before{content:"\f064"}.icon-resize-full:before{content:"\f065"}.icon-resize-small:before{content:"\f066"}.icon-plus:before{content:"\f067"}.icon-minus:before{content:"\f068"}.icon-asterisk:before{content:"\f069"}.icon-exclamation-sign:before{content:"\f06a"}.icon-gift:before{content:"\f06b"}.icon-leaf:before{content:"\f06c"}.icon-fire:before{content:"\f06d"}.icon-eye-open:before{content:"\f06e"}.icon-eye-close:before{content:"\f070"}.icon-warning-sign:before{content:"\f071"}.icon-plane:before{content:"\f072"}.icon-calendar:before{content:"\f073"}.icon-random:before{content:"\f074"}.icon-comment:before{content:"\f075"}.icon-magnet:before{content:"\f076"}.icon-chevron-up:before{content:"\f077"}.icon-chevron-down:before{content:"\f078"}.icon-retweet:before{content:"\f079"}.icon-shopping-cart:before{content:"\f07a"}.icon-folder-close:before{content:"\f07b"}.icon-folder-open:before{content:"\f07c"}.icon-resize-vertical:before{content:"\f07d"}.icon-resize-horizontal:before{content:"\f07e"}.icon-bar-chart:before{content:"\f080"}.icon-twitter-sign:before{content:"\f081"}.icon-facebook-sign:before{content:"\f082"}.icon-camera-retro:before{content:"\f083"}.icon-key:before{content:"\f084"}.icon-cogs:before{content:"\f085"}.icon-comments:before{content:"\f086"}.icon-thumbs-up:before{content:"\f087"}.icon-thumbs-down:before{content:"\f088"}.icon-star-half:before{content:"\f089"}.icon-heart-empty:before{content:"\f08a"}.icon-signout:before{content:"\f08b"}.icon-linkedin-sign:before{content:"\f08c"}.icon-pushpin:before{content:"\f08d"}.icon-external-link:before{content:"\f08e"}.icon-signin:before{content:"\f090"}.icon-trophy:before{content:"\f091"}.icon-github-sign:before{content:"\f092"}.icon-upload-alt:before{content:"\f093"}.icon-lemon:before{content:"\f094"}.icon-phone:before{content:"\f095"}.icon-check-empty:before{content:"\f096"}.icon-bookmark-empty:before{content:"\f097"}.icon-phone-sign:before{content:"\f098"}.icon-twitter:before{content:"\f099"}.icon-facebook:before{content:"\f09a"}.icon-github:before{content:"\f09b"}.icon-unlock:before{content:"\f09c"}.icon-credit-card:before{content:"\f09d"}.icon-rss:before{content:"\f09e"}.icon-hdd:before{content:"\f0a0"}.icon-bullhorn:before{content:"\f0a1"}.icon-bell:before{content:"\f0a2"}.icon-certificate:before{content:"\f0a3"}.icon-hand-right:before{content:"\f0a4"}.icon-hand-left:before{content:"\f0a5"}.icon-hand-up:before{content:"\f0a6"}.icon-hand-down:before{content:"\f0a7"}.icon-circle-arrow-left:before{content:"\f0a8"}.icon-circle-arrow-right:before{content:"\f0a9"}.icon-circle-arrow-up:before{content:"\f0aa"}.icon-circle-arrow-down:before{content:"\f0ab"}.icon-globe:before{content:"\f0ac"}.icon-wrench:before{content:"\f0ad"}.icon-tasks:before{content:"\f0ae"}.icon-filter:before{content:"\f0b0"}.icon-briefcase:before{content:"\f0b1"}.icon-fullscreen:before{content:"\f0b2"}.icon-group:before{content:"\f0c0"}.icon-link:before{content:"\f0c1"}.icon-cloud:before{content:"\f0c2"}.icon-beaker:before{content:"\f0c3"}.icon-cut:before{content:"\f0c4"}.icon-copy:before{content:"\f0c5"}.icon-paper-clip:before{content:"\f0c6"}.icon-save:before{content:"\f0c7"}.icon-sign-blank:before{content:"\f0c8"}.icon-reorder:before{content:"\f0c9"}.icon-list-ul:before{content:"\f0ca"}.icon-list-ol:before{content:"\f0cb"}.icon-strikethrough:before{content:"\f0cc"}.icon-underline:before{content:"\f0cd"}.icon-table:before{content:"\f0ce"}.icon-magic:before{content:"\f0d0"}.icon-truck:before{content:"\f0d1"}.icon-pinterest:before{content:"\f0d2"}.icon-pinterest-sign:before{content:"\f0d3"}.icon-google-plus-sign:before{content:"\f0d4"}.icon-google-plus:before{content:"\f0d5"}.icon-money:before{content:"\f0d6"}.icon-caret-down:before{content:"\f0d7"}.icon-caret-up:before{content:"\f0d8"}.icon-caret-left:before{content:"\f0d9"}.icon-caret-right:before{content:"\f0da"}.icon-columns:before{content:"\f0db"}.icon-sort:before{content:"\f0dc"}.icon-sort-down:before{content:"\f0dd"}.icon-sort-up:before{content:"\f0de"}.icon-envelope-alt:before{content:"\f0e0"}.icon-linkedin:before{content:"\f0e1"}.icon-undo:before,.icon-rotate-left:before{content:"\f0e2"}.icon-legal:before{content:"\f0e3"}.icon-dashboard:before{content:"\f0e4"}.icon-comment-alt:before{content:"\f0e5"}.icon-comments-alt:before{content:"\f0e6"}.icon-bolt:before{content:"\f0e7"}.icon-sitemap:before{content:"\f0e8"}.icon-umbrella:before{content:"\f0e9"}.icon-paste:before{content:"\f0ea"}.icon-lightbulb:before{content:"\f0eb"}.icon-exchange:before{content:"\f0ec"}.icon-cloud-download:before{content:"\f0ed"}.icon-cloud-upload:before{content:"\f0ee"}.icon-user-md:before{content:"\f0f0"}.icon-stethoscope:before{content:"\f0f1"}.icon-suitcase:before{content:"\f0f2"}.icon-bell-alt:before{content:"\f0f3"}.icon-coffee:before{content:"\f0f4"}.icon-food:before{content:"\f0f5"}.icon-file-alt:before{content:"\f0f6"}.icon-building:before{content:"\f0f7"}.icon-hospital:before{content:"\f0f8"}.icon-ambulance:before{content:"\f0f9"}.icon-medkit:before{content:"\f0fa"}.icon-fighter-jet:before{content:"\f0fb"}.icon-beer:before{content:"\f0fc"}.icon-h-sign:before{content:"\f0fd"}.icon-plus-sign-alt:before{content:"\f0fe"}.icon-double-angle-left:before{content:"\f100"}.icon-double-angle-right:before{content:"\f101"}.icon-double-angle-up:before{content:"\f102"}.icon-double-angle-down:before{content:"\f103"}.icon-angle-left:before{content:"\f104"}.icon-angle-right:before{content:"\f105"}.icon-angle-up:before{content:"\f106"}.icon-angle-down:before{content:"\f107"}.icon-desktop:before{content:"\f108"}.icon-laptop:before{content:"\f109"}.icon-tablet:before{content:"\f10a"}.icon-mobile-phone:before{content:"\f10b"}.icon-circle-blank:before{content:"\f10c"}.icon-quote-left:before{content:"\f10d"}.icon-quote-right:before{content:"\f10e"}.icon-spinner:before{content:"\f110"}.icon-circle:before{content:"\f111"}.icon-reply:before,.icon-mail-reply:before{content:"\f112"}.icon-folder-close-alt:before{content:"\f114"}.icon-folder-open-alt:before{content:"\f115"}.icon-expand-alt:before{content:"\f116"}.icon-collapse-alt:before{content:"\f117"}.icon-smile:before{content:"\f118"}.icon-frown:before{content:"\f119"}.icon-meh:before{content:"\f11a"}.icon-gamepad:before{content:"\f11b"}.icon-keyboard:before{content:"\f11c"}.icon-flag-alt:before{content:"\f11d"}.icon-flag-checkered:before{content:"\f11e"}.icon-terminal:before{content:"\f120"}.icon-code:before{content:"\f121"}.icon-reply-all:before{content:"\f122"}.icon-mail-reply-all:before{content:"\f122"}.icon-star-half-empty:before{content:"\f123"}.icon-location-arrow:before{content:"\f124"}.icon-crop:before{content:"\f125"}.icon-code-fork:before{content:"\f126"}.icon-unlink:before{content:"\f127"}.icon-question:before{content:"\f128"}.icon-info:before{content:"\f129"}.icon-exclamation:before{content:"\f12a"}.icon-superscript:before{content:"\f12b"}.icon-subscript:before{content:"\f12c"}.icon-eraser:before{content:"\f12d"}.icon-puzzle-piece:before{content:"\f12e"}.icon-microphone:before{content:"\f130"}.icon-microphone-off:before{content:"\f131"}.icon-shield:before{content:"\f132"}.icon-calendar-empty:before{content:"\f133"}.icon-fire-extinguisher:before{content:"\f134"}.icon-rocket:before{content:"\f135"}.icon-maxcdn:before{content:"\f136"}.icon-chevron-sign-left:before{content:"\f137"}.icon-chevron-sign-right:before{content:"\f138"}.icon-chevron-sign-up:before{content:"\f139"}.icon-chevron-sign-down:before{content:"\f13a"}.icon-html5:before{content:"\f13b"}.icon-css3:before{content:"\f13c"}.icon-anchor:before{content:"\f13d"}.icon-unlock-alt:before{content:"\f13e"}.icon-bullseye:before{content:"\f140"}.icon-ellipsis-horizontal:before{content:"\f141"}.icon-ellipsis-vertical:before{content:"\f142"}.icon-rss-sign:before{content:"\f143"}.icon-play-sign:before{content:"\f144"}.icon-ticket:before{content:"\f145"}.icon-minus-sign-alt:before{content:"\f146"}.icon-check-minus:before{content:"\f147"}.icon-level-up:before{content:"\f148"}.icon-level-down:before{content:"\f149"}.icon-check-sign:before{content:"\f14a"}.icon-edit-sign:before{content:"\f14b"}.icon-external-link-sign:before{content:"\f14c"}.icon-share-sign:before{content:"\f14d"}Evidence h3
-
-
http://code.jquery.com (3)
-
Retrieved from Cache (1)
GET http://code.jquery.com/jquery-1.10.2.min.js
Alert tags Alert description The content was retrieved from a shared cache. If the response data is sensitive, personal or user-specific, this may result in sensitive information being leaked. In some cases, this may even result in a user gaining complete control of the session of another user, depending on the configuration of the caching components in use in their environment. This is primarily an issue where caching servers such as "proxy" caches are configured on the local network. This configuration is typically found in corporate or educational environments, for instance.
Request Request line and header section (291 bytes)
GET http://code.jquery.com/jquery-1.10.2.min.js HTTP/1.1 host: code.jquery.com User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:136.0) Gecko/20100101 Firefox/136.0 Accept: */* Accept-Language: en-CA,en-US;q=0.7,en;q=0.3 Connection: keep-alive Referer: http://localhost/Request body (0 bytes)
Response Status line and header section (613 bytes)
HTTP/1.1 200 OK Connection: keep-alive Content-Length: 93107 Server: nginx Content-Type: application/javascript; charset=utf-8 Last-Modified: Fri, 18 Oct 1991 12:00:00 GMT ETag: "28feccc0-16bb3" Cache-Control: public, max-age=31536000, stale-while-revalidate=604800 Access-Control-Allow-Origin: * Cross-Origin-Resource-Policy: cross-origin Via: 1.1 varnish, 1.1 varnish Accept-Ranges: bytes Age: 1575604 Date: Sat, 19 Apr 2025 15:20:32 GMT X-Served-By: cache-lga21955-LGA, cache-yul1970064-YUL X-Cache: HIT, HIT X-Cache-Hits: 3555, 0 X-Timer: S1745076032.218693,VS0,VE1 Vary: Accept-EncodingResponse body (93107 bytes)
/*! jQuery v1.10.2 | (c) 2005, 2013 jQuery Foundation, Inc. | jquery.org/license //@ sourceMappingURL=jquery-1.10.2.min.map */ (function(e,t){var n,r,i=typeof t,o=e.location,a=e.document,s=a.documentElement,l=e.jQuery,u=e.$,c={},p=[],f="1.10.2",d=p.concat,h=p.push,g=p.slice,m=p.indexOf,y=c.toString,v=c.hasOwnProperty,b=f.trim,x=function(e,t){return new x.fn.init(e,t,r)},w=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,T=/\S+/g,C=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,N=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,k=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,E=/^[\],:{}\s]*$/,S=/(?:^|:|,)(?:\s*\[)+/g,A=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,j=/"[^"\\\r\n]*"|true|false|null|-?(?:\d+\.|)\d+(?:[eE][+-]?\d+|)/g,D=/^-ms-/,L=/-([\da-z])/gi,H=function(e,t){return t.toUpperCase()},q=function(e){(a.addEventListener||"load"===e.type||"complete"===a.readyState)&&(_(),x.ready())},_=function(){a.addEventListener?(a.removeEventListener("DOMContentLoaded",q,!1),e.removeEventListener("load",q,!1)):(a.detachEvent("onreadystatechange",q),e.detachEvent("onload",q))};x.fn=x.prototype={jquery:f,constructor:x,init:function(e,n,r){var i,o;if(!e)return this;if("string"==typeof e){if(i="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&e.length>=3?[null,e,null]:N.exec(e),!i||!i[1]&&n)return!n||n.jquery?(n||r).find(e):this.constructor(n).find(e);if(i[1]){if(n=n instanceof x?n[0]:n,x.merge(this,x.parseHTML(i[1],n&&n.nodeType?n.ownerDocument||n:a,!0)),k.test(i[1])&&x.isPlainObject(n))for(i in n)x.isFunction(this[i])?this[i](n[i]):this.attr(i,n[i]);return this}if(o=a.getElementById(i[2]),o&&o.parentNode){if(o.id!==i[2])return r.find(e);this.length=1,this[0]=o}return this.context=a,this.selector=e,this}return e.nodeType?(this.context=this[0]=e,this.length=1,this):x.isFunction(e)?r.ready(e):(e.selector!==t&&(this.selector=e.selector,this.context=e.context),x.makeArray(e,this))},selector:"",length:0,toArray:function(){return g.call(this)},get:function(e){return null==e?this.toArray():0>e?this[this.length+e]:this[e]},pushStack:function(e){var t=x.merge(this.constructor(),e);return t.prevObject=this,t.context=this.context,t},each:function(e,t){return x.each(this,e,t)},ready:function(e){return x.ready.promise().done(e),this},slice:function(){return this.pushStack(g.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(0>e?t:0);return this.pushStack(n>=0&&t>n?[this[n]]:[])},map:function(e){return this.pushStack(x.map(this,function(t,n){return e.call(t,n,t)}))},end:function(){return this.prevObject||this.constructor(null)},push:h,sort:[].sort,splice:[].splice},x.fn.init.prototype=x.fn,x.extend=x.fn.extend=function(){var e,n,r,i,o,a,s=arguments[0]||{},l=1,u=arguments.length,c=!1;for("boolean"==typeof s&&(c=s,s=arguments[1]||{},l=2),"object"==typeof s||x.isFunction(s)||(s={}),u===l&&(s=this,--l);u>l;l++)if(null!=(o=arguments[l]))for(i in o)e=s[i],r=o[i],s!==r&&(c&&r&&(x.isPlainObject(r)||(n=x.isArray(r)))?(n?(n=!1,a=e&&x.isArray(e)?e:[]):a=e&&x.isPlainObject(e)?e:{},s[i]=x.extend(c,a,r)):r!==t&&(s[i]=r));return s},x.extend({expando:"jQuery"+(f+Math.random()).replace(/\D/g,""),noConflict:function(t){return e.$===x&&(e.$=u),t&&e.jQuery===x&&(e.jQuery=l),x},isReady:!1,readyWait:1,holdReady:function(e){e?x.readyWait++:x.ready(!0)},ready:function(e){if(e===!0?!--x.readyWait:!x.isReady){if(!a.body)return setTimeout(x.ready);x.isReady=!0,e!==!0&&--x.readyWait>0||(n.resolveWith(a,[x]),x.fn.trigger&&x(a).trigger("ready").off("ready"))}},isFunction:function(e){return"function"===x.type(e)},isArray:Array.isArray||function(e){return"array"===x.type(e)},isWindow:function(e){return null!=e&&e==e.window},isNumeric:function(e){return!isNaN(parseFloat(e))&&isFinite(e)},type:function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?c[y.call(e)]||"object":typeof e},isPlainObject:function(e){var n;if(!e||"object"!==x.type(e)||e.nodeType||x.isWindow(e))return!1;try{if(e.constructor&&!v.call(e,"constructor")&&!v.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(r){return!1}if(x.support.ownLast)for(n in e)return v.call(e,n);for(n in e);return n===t||v.call(e,n)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},error:function(e){throw Error(e)},parseHTML:function(e,t,n){if(!e||"string"!=typeof e)return null;"boolean"==typeof t&&(n=t,t=!1),t=t||a;var r=k.exec(e),i=!n&&[];return r?[t.createElement(r[1])]:(r=x.buildFragment([e],t,i),i&&x(i).remove(),x.merge([],r.childNodes))},parseJSON:function(n){return e.JSON&&e.JSON.parse?e.JSON.parse(n):null===n?n:"string"==typeof n&&(n=x.trim(n),n&&E.test(n.replace(A,"@").replace(j,"]").replace(S,"")))?Function("return "+n)():(x.error("Invalid JSON: "+n),t)},parseXML:function(n){var r,i;if(!n||"string"!=typeof n)return null;try{e.DOMParser?(i=new DOMParser,r=i.parseFromString(n,"text/xml")):(r=new ActiveXObject("Microsoft.XMLDOM"),r.async="false",r.loadXML(n))}catch(o){r=t}return r&&r.documentElement&&!r.getElementsByTagName("parsererror").length||x.error("Invalid XML: "+n),r},noop:function(){},globalEval:function(t){t&&x.trim(t)&&(e.execScript||function(t){e.eval.call(e,t)})(t)},camelCase:function(e){return e.replace(D,"ms-").replace(L,H)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t,n){var r,i=0,o=e.length,a=M(e);if(n){if(a){for(;o>i;i++)if(r=t.apply(e[i],n),r===!1)break}else for(i in e)if(r=t.apply(e[i],n),r===!1)break}else if(a){for(;o>i;i++)if(r=t.call(e[i],i,e[i]),r===!1)break}else for(i in e)if(r=t.call(e[i],i,e[i]),r===!1)break;return e},trim:b&&!b.call("\ufeff\u00a0")?function(e){return null==e?"":b.call(e)}:function(e){return null==e?"":(e+"").replace(C,"")},makeArray:function(e,t){var n=t||[];return null!=e&&(M(Object(e))?x.merge(n,"string"==typeof e?[e]:e):h.call(n,e)),n},inArray:function(e,t,n){var r;if(t){if(m)return m.call(t,e,n);for(r=t.length,n=n?0>n?Math.max(0,r+n):n:0;r>n;n++)if(n in t&&t[n]===e)return n}return-1},merge:function(e,n){var r=n.length,i=e.length,o=0;if("number"==typeof r)for(;r>o;o++)e[i++]=n[o];else while(n[o]!==t)e[i++]=n[o++];return e.length=i,e},grep:function(e,t,n){var r,i=[],o=0,a=e.length;for(n=!!n;a>o;o++)r=!!t(e[o],o),n!==r&&i.push(e[o]);return i},map:function(e,t,n){var r,i=0,o=e.length,a=M(e),s=[];if(a)for(;o>i;i++)r=t(e[i],i,n),null!=r&&(s[s.length]=r);else for(i in e)r=t(e[i],i,n),null!=r&&(s[s.length]=r);return d.apply([],s)},guid:1,proxy:function(e,n){var r,i,o;return"string"==typeof n&&(o=e[n],n=e,e=o),x.isFunction(e)?(r=g.call(arguments,2),i=function(){return e.apply(n||this,r.concat(g.call(arguments)))},i.guid=e.guid=e.guid||x.guid++,i):t},access:function(e,n,r,i,o,a,s){var l=0,u=e.length,c=null==r;if("object"===x.type(r)){o=!0;for(l in r)x.access(e,n,l,r[l],!0,a,s)}else if(i!==t&&(o=!0,x.isFunction(i)||(s=!0),c&&(s?(n.call(e,i),n=null):(c=n,n=function(e,t,n){return c.call(x(e),n)})),n))for(;u>l;l++)n(e[l],r,s?i:i.call(e[l],l,n(e[l],r)));return o?e:c?n.call(e):u?n(e[0],r):a},now:function(){return(new Date).getTime()},swap:function(e,t,n,r){var i,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=t[o];i=n.apply(e,r||[]);for(o in t)e.style[o]=a[o];return i}}),x.ready.promise=function(t){if(!n)if(n=x.Deferred(),"complete"===a.readyState)setTimeout(x.ready);else if(a.addEventListener)a.addEventListener("DOMContentLoaded",q,!1),e.addEventListener("load",q,!1);else{a.attachEvent("onreadystatechange",q),e.attachEvent("onload",q);var r=!1;try{r=null==e.frameElement&&a.documentElement}catch(i){}r&&r.doScroll&&function o(){if(!x.isReady){try{r.doScroll("left")}catch(e){return setTimeout(o,50)}_(),x.ready()}}()}return n.promise(t)},x.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(e,t){c["[object "+t+"]"]=t.toLowerCase()});function M(e){var t=e.length,n=x.type(e);return x.isWindow(e)?!1:1===e.nodeType&&t?!0:"array"===n||"function"!==n&&(0===t||"number"==typeof t&&t>0&&t-1 in e)}r=x(a),function(e,t){var n,r,i,o,a,s,l,u,c,p,f,d,h,g,m,y,v,b="sizzle"+-new Date,w=e.document,T=0,C=0,N=st(),k=st(),E=st(),S=!1,A=function(e,t){return e===t?(S=!0,0):0},j=typeof t,D=1<<31,L={}.hasOwnProperty,H=[],q=H.pop,_=H.push,M=H.push,O=H.slice,F=H.indexOf||function(e){var t=0,n=this.length;for(;n>t;t++)if(this[t]===e)return t;return-1},B="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",P="[\\x20\\t\\r\\n\\f]",R="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",W=R.replace("w","w#"),$="\\["+P+"*("+R+")"+P+"*(?:([*^$|!~]?=)"+P+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+W+")|)|)"+P+"*\\]",I=":("+R+")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|"+$.replace(3,8)+")*)|.*)\\)|)",z=RegExp("^"+P+"+|((?:^|[^\\\\])(?:\\\\.)*)"+P+"+$","g"),X=RegExp("^"+P+"*,"+P+"*"),U=RegExp("^"+P+"*([>+~]|"+P+")"+P+"*"),V=RegExp(P+"*[+~]"),Y=RegExp("="+P+"*([^\\]'\"]*)"+P+"*\\]","g"),J=RegExp(I),G=RegExp("^"+W+"$"),Q={ID:RegExp("^#("+R+")"),CLASS:RegExp("^\\.("+R+")"),TAG:RegExp("^("+R.replace("w","w*")+")"),ATTR:RegExp("^"+$),PSEUDO:RegExp("^"+I),CHILD:RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+P+"*(even|odd|(([+-]|)(\\d*)n|)"+P+"*(?:([+-]|)"+P+"*(\\d+)|))"+P+"*\\)|)","i"),bool:RegExp("^(?:"+B+")$","i"),needsContext:RegExp("^"+P+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+P+"*((?:-\\d)?\\d*)"+P+"*\\)|)(?=[^-]|$)","i")},K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,et=/^(?:input|select|textarea|button)$/i,tt=/^h\d$/i,nt=/'|\\/g,rt=RegExp("\\\\([\\da-f]{1,6}"+P+"?|("+P+")|.)","ig"),it=function(e,t,n){var r="0x"+t-65536;return r!==r||n?t:0>r?String.fromCharCode(r+65536):String.fromCharCode(55296|r>>10,56320|1023&r)};try{M.apply(H=O.call(w.childNodes),w.childNodes),H[w.childNodes.length].nodeType}catch(ot){M={apply:H.length?function(e,t){_.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function at(e,t,n,i){var o,a,s,l,u,c,d,m,y,x;if((t?t.ownerDocument||t:w)!==f&&p(t),t=t||f,n=n||[],!e||"string"!=typeof e)return n;if(1!==(l=t.nodeType)&&9!==l)return[];if(h&&!i){if(o=Z.exec(e))if(s=o[1]){if(9===l){if(a=t.getElementById(s),!a||!a.parentNode)return n;if(a.id===s)return n.push(a),n}else if(t.ownerDocument&&(a=t.ownerDocument.getElementById(s))&&v(t,a)&&a.id===s)return n.push(a),n}else{if(o[2])return M.apply(n,t.getElementsByTagName(e)),n;if((s=o[3])&&r.getElementsByClassName&&t.getElementsByClassName)return M.apply(n,t.getElementsByClassName(s)),n}if(r.qsa&&(!g||!g.test(e))){if(m=d=b,y=t,x=9===l&&e,1===l&&"object"!==t.nodeName.toLowerCase()){c=mt(e),(d=t.getAttribute("id"))?m=d.replace(nt,"\\$&"):t.setAttribute("id",m),m="[id='"+m+"'] ",u=c.length;while(u--)c[u]=m+yt(c[u]);y=V.test(e)&&t.parentNode||t,x=c.join(",")}if(x)try{return M.apply(n,y.querySelectorAll(x)),n}catch(T){}finally{d||t.removeAttribute("id")}}}return kt(e.replace(z,"$1"),t,n,i)}function st(){var e=[];function t(n,r){return e.push(n+=" ")>o.cacheLength&&delete t[e.shift()],t[n]=r}return t}function lt(e){return e[b]=!0,e}function ut(e){var t=f.createElement("div");try{return!!e(t)}catch(n){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function ct(e,t){var n=e.split("|"),r=e.length;while(r--)o.attrHandle[n[r]]=t}function pt(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&(~t.sourceIndex||D)-(~e.sourceIndex||D);if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function ft(e){return function(t){var n=t.nodeName.toLowerCase();return"input"===n&&t.type===e}}function dt(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function ht(e){return lt(function(t){return t=+t,lt(function(n,r){var i,o=e([],n.length,t),a=o.length;while(a--)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}s=at.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return t?"HTML"!==t.nodeName:!1},r=at.support={},p=at.setDocument=function(e){var n=e?e.ownerDocument||e:w,i=n.defaultView;return n!==f&&9===n.nodeType&&n.documentElement?(f=n,d=n.documentElement,h=!s(n),i&&i.attachEvent&&i!==i.top&&i.attachEvent("onbeforeunload",function(){p()}),r.attributes=ut(function(e){return e.className="i",!e.getAttribute("className")}),r.getElementsByTagName=ut(function(e){return e.appendChild(n.createComment("")),!e.getElementsByTagName("*").length}),r.getElementsByClassName=ut(function(e){return e.innerHTML="<div class='a'></div><div class='a i'></div>",e.firstChild.className="i",2===e.getElementsByClassName("i").length}),r.getById=ut(function(e){return d.appendChild(e).id=b,!n.getElementsByName||!n.getElementsByName(b).length}),r.getById?(o.find.ID=function(e,t){if(typeof t.getElementById!==j&&h){var n=t.getElementById(e);return n&&n.parentNode?[n]:[]}},o.filter.ID=function(e){var t=e.replace(rt,it);return function(e){return e.getAttribute("id")===t}}):(delete o.find.ID,o.filter.ID=function(e){var t=e.replace(rt,it);return function(e){var n=typeof e.getAttributeNode!==j&&e.getAttributeNode("id");return n&&n.value===t}}),o.find.TAG=r.getElementsByTagName?function(e,n){return typeof n.getElementsByTagName!==j?n.getElementsByTagName(e):t}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},o.find.CLASS=r.getElementsByClassName&&function(e,n){return typeof n.getElementsByClassName!==j&&h?n.getElementsByClassName(e):t},m=[],g=[],(r.qsa=K.test(n.querySelectorAll))&&(ut(function(e){e.innerHTML="<select><option selected=''></option></select>",e.querySelectorAll("[selected]").length||g.push("\\["+P+"*(?:value|"+B+")"),e.querySelectorAll(":checked").length||g.push(":checked")}),ut(function(e){var t=n.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("t",""),e.querySelectorAll("[t^='']").length&&g.push("[*^$]="+P+"*(?:''|\"\")"),e.querySelectorAll(":enabled").length||g.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),g.push(",.*:")})),(r.matchesSelector=K.test(y=d.webkitMatchesSelector||d.mozMatchesSelector||d.oMatchesSelector||d.msMatchesSelector))&&ut(function(e){r.disconnectedMatch=y.call(e,"div"),y.call(e,"[s!='']:x"),m.push("!=",I)}),g=g.length&&RegExp(g.join("|")),m=m.length&&RegExp(m.join("|")),v=K.test(d.contains)||d.compareDocumentPosition?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},A=d.compareDocumentPosition?function(e,t){if(e===t)return S=!0,0;var i=t.compareDocumentPosition&&e.compareDocumentPosition&&e.compareDocumentPosition(t);return i?1&i||!r.sortDetached&&t.compareDocumentPosition(e)===i?e===n||v(w,e)?-1:t===n||v(w,t)?1:c?F.call(c,e)-F.call(c,t):0:4&i?-1:1:e.compareDocumentPosition?-1:1}:function(e,t){var r,i=0,o=e.parentNode,a=t.parentNode,s=[e],l=[t];if(e===t)return S=!0,0;if(!o||!a)return e===n?-1:t===n?1:o?-1:a?1:c?F.call(c,e)-F.call(c,t):0;if(o===a)return pt(e,t);r=e;while(r=r.parentNode)s.unshift(r);r=t;while(r=r.parentNode)l.unshift(r);while(s[i]===l[i])i++;return i?pt(s[i],l[i]):s[i]===w?-1:l[i]===w?1:0},n):f},at.matches=function(e,t){return at(e,null,null,t)},at.matchesSelector=function(e,t){if((e.ownerDocument||e)!==f&&p(e),t=t.replace(Y,"='$1']"),!(!r.matchesSelector||!h||m&&m.test(t)||g&&g.test(t)))try{var n=y.call(e,t);if(n||r.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(i){}return at(t,f,null,[e]).length>0},at.contains=function(e,t){return(e.ownerDocument||e)!==f&&p(e),v(e,t)},at.attr=function(e,n){(e.ownerDocument||e)!==f&&p(e);var i=o.attrHandle[n.toLowerCase()],a=i&&L.call(o.attrHandle,n.toLowerCase())?i(e,n,!h):t;return a===t?r.attributes||!h?e.getAttribute(n):(a=e.getAttributeNode(n))&&a.specified?a.value:null:a},at.error=function(e){throw Error("Syntax error, unrecognized expression: "+e)},at.uniqueSort=function(e){var t,n=[],i=0,o=0;if(S=!r.detectDuplicates,c=!r.sortStable&&e.slice(0),e.sort(A),S){while(t=e[o++])t===e[o]&&(i=n.push(o));while(i--)e.splice(n[i],1)}return e},a=at.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=a(e)}else if(3===i||4===i)return e.nodeValue}else for(;t=e[r];r++)n+=a(t);return n},o=at.selectors={cacheLength:50,createPseudo:lt,match:Q,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(rt,it),e[3]=(e[4]||e[5]||"").replace(rt,it),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||at.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&at.error(e[0]),e},PSEUDO:function(e){var n,r=!e[5]&&e[2];return Q.CHILD.test(e[0])?null:(e[3]&&e[4]!==t?e[2]=e[4]:r&&J.test(r)&&(n=mt(r,!0))&&(n=r.indexOf(")",r.length-n)-r.length)&&(e[0]=e[0].slice(0,n),e[2]=r.slice(0,n)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(rt,it).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=N[e+" "];return t||(t=RegExp("(^|"+P+")"+e+"("+P+"|$)"))&&N(e,function(e){return t.test("string"==typeof e.className&&e.className||typeof e.getAttribute!==j&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=at.attr(r,e);return null==i?"!="===t:t?(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i+" ").indexOf(n)>-1:"|="===t?i===n||i.slice(0,n.length+1)===n+"-":!1):!0}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,l){var u,c,p,f,d,h,g=o!==a?"nextSibling":"previousSibling",m=t.parentNode,y=s&&t.nodeName.toLowerCase(),v=!l&&!s;if(m){if(o){while(g){p=t;while(p=p[g])if(s?p.nodeName.toLowerCase()===y:1===p.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?m.firstChild:m.lastChild],a&&v){c=m[b]||(m[b]={}),u=c[e]||[],d=u[0]===T&&u[1],f=u[0]===T&&u[2],p=d&&m.childNodes[d];while(p=++d&&p&&p[g]||(f=d=0)||h.pop())if(1===p.nodeType&&++f&&p===t){c[e]=[T,d,f];break}}else if(v&&(u=(t[b]||(t[b]={}))[e])&&u[0]===T)f=u[1];else while(p=++d&&p&&p[g]||(f=d=0)||h.pop())if((s?p.nodeName.toLowerCase()===y:1===p.nodeType)&&++f&&(v&&((p[b]||(p[b]={}))[e]=[T,f]),p===t))break;return f-=i,f===r||0===f%r&&f/r>=0}}},PSEUDO:function(e,t){var n,r=o.pseudos[e]||o.setFilters[e.toLowerCase()]||at.error("unsupported pseudo: "+e);return r[b]?r(t):r.length>1?(n=[e,e,"",t],o.setFilters.hasOwnProperty(e.toLowerCase())?lt(function(e,n){var i,o=r(e,t),a=o.length;while(a--)i=F.call(e,o[a]),e[i]=!(n[i]=o[a])}):function(e){return r(e,0,n)}):r}},pseudos:{not:lt(function(e){var t=[],n=[],r=l(e.replace(z,"$1"));return r[b]?lt(function(e,t,n,i){var o,a=r(e,null,i,[]),s=e.length;while(s--)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),!n.pop()}}),has:lt(function(e){return function(t){return at(e,t).length>0}}),contains:lt(function(e){return function(t){return(t.textContent||t.innerText||a(t)).indexOf(e)>-1}}),lang:lt(function(e){return G.test(e||"")||at.error("unsupported lang: "+e),e=e.replace(rt,it).toLowerCase(),function(t){var n;do if(n=h?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return n=n.toLowerCase(),n===e||0===n.indexOf(e+"-");while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===d},focus:function(e){return e===f.activeElement&&(!f.hasFocus||f.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:function(e){return e.disabled===!1},disabled:function(e){return e.disabled===!0},checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeName>"@"||3===e.nodeType||4===e.nodeType)return!1;return!0},parent:function(e){return!o.pseudos.empty(e)},header:function(e){return tt.test(e.nodeName)},input:function(e){return et.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||t.toLowerCase()===e.type)},first:ht(function(){return[0]}),last:ht(function(e,t){return[t-1]}),eq:ht(function(e,t,n){return[0>n?n+t:n]}),even:ht(function(e,t){var n=0;for(;t>n;n+=2)e.push(n);return e}),odd:ht(function(e,t){var n=1;for(;t>n;n+=2)e.push(n);return e}),lt:ht(function(e,t,n){var r=0>n?n+t:n;for(;--r>=0;)e.push(r);return e}),gt:ht(function(e,t,n){var r=0>n?n+t:n;for(;t>++r;)e.push(r);return e})}},o.pseudos.nth=o.pseudos.eq;for(n in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})o.pseudos[n]=ft(n);for(n in{submit:!0,reset:!0})o.pseudos[n]=dt(n);function gt(){}gt.prototype=o.filters=o.pseudos,o.setFilters=new gt;function mt(e,t){var n,r,i,a,s,l,u,c=k[e+" "];if(c)return t?0:c.slice(0);s=e,l=[],u=o.preFilter;while(s){(!n||(r=X.exec(s)))&&(r&&(s=s.slice(r[0].length)||s),l.push(i=[])),n=!1,(r=U.exec(s))&&(n=r.shift(),i.push({value:n,type:r[0].replace(z," ")}),s=s.slice(n.length));for(a in o.filter)!(r=Q[a].exec(s))||u[a]&&!(r=u[a](r))||(n=r.shift(),i.push({value:n,type:a,matches:r}),s=s.slice(n.length));if(!n)break}return t?s.length:s?at.error(e):k(e,l).slice(0)}function yt(e){var t=0,n=e.length,r="";for(;n>t;t++)r+=e[t].value;return r}function vt(e,t,n){var r=t.dir,o=n&&"parentNode"===r,a=C++;return t.first?function(t,n,i){while(t=t[r])if(1===t.nodeType||o)return e(t,n,i)}:function(t,n,s){var l,u,c,p=T+" "+a;if(s){while(t=t[r])if((1===t.nodeType||o)&&e(t,n,s))return!0}else while(t=t[r])if(1===t.nodeType||o)if(c=t[b]||(t[b]={}),(u=c[r])&&u[0]===p){if((l=u[1])===!0||l===i)return l===!0}else if(u=c[r]=[p],u[1]=e(t,n,s)||i,u[1]===!0)return!0}}function bt(e){return e.length>1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function xt(e,t,n,r,i){var o,a=[],s=0,l=e.length,u=null!=t;for(;l>s;s++)(o=e[s])&&(!n||n(o,r,i))&&(a.push(o),u&&t.push(s));return a}function wt(e,t,n,r,i,o){return r&&!r[b]&&(r=wt(r)),i&&!i[b]&&(i=wt(i,o)),lt(function(o,a,s,l){var u,c,p,f=[],d=[],h=a.length,g=o||Nt(t||"*",s.nodeType?[s]:s,[]),m=!e||!o&&t?g:xt(g,f,e,s,l),y=n?i||(o?e:h||r)?[]:a:m;if(n&&n(m,y,s,l),r){u=xt(y,d),r(u,[],s,l),c=u.length;while(c--)(p=u[c])&&(y[d[c]]=!(m[d[c]]=p))}if(o){if(i||e){if(i){u=[],c=y.length;while(c--)(p=y[c])&&u.push(m[c]=p);i(null,y=[],u,l)}c=y.length;while(c--)(p=y[c])&&(u=i?F.call(o,p):f[c])>-1&&(o[u]=!(a[u]=p))}}else y=xt(y===a?y.splice(h,y.length):y),i?i(null,a,y,l):M.apply(a,y)})}function Tt(e){var t,n,r,i=e.length,a=o.relative[e[0].type],s=a||o.relative[" "],l=a?1:0,c=vt(function(e){return e===t},s,!0),p=vt(function(e){return F.call(t,e)>-1},s,!0),f=[function(e,n,r){return!a&&(r||n!==u)||((t=n).nodeType?c(e,n,r):p(e,n,r))}];for(;i>l;l++)if(n=o.relative[e[l].type])f=[vt(bt(f),n)];else{if(n=o.filter[e[l].type].apply(null,e[l].matches),n[b]){for(r=++l;i>r;r++)if(o.relative[e[r].type])break;return wt(l>1&&bt(f),l>1&&yt(e.slice(0,l-1).concat({value:" "===e[l-2].type?"*":""})).replace(z,"$1"),n,r>l&&Tt(e.slice(l,r)),i>r&&Tt(e=e.slice(r)),i>r&&yt(e))}f.push(n)}return bt(f)}function Ct(e,t){var n=0,r=t.length>0,a=e.length>0,s=function(s,l,c,p,d){var h,g,m,y=[],v=0,b="0",x=s&&[],w=null!=d,C=u,N=s||a&&o.find.TAG("*",d&&l.parentNode||l),k=T+=null==C?1:Math.random()||.1;for(w&&(u=l!==f&&l,i=n);null!=(h=N[b]);b++){if(a&&h){g=0;while(m=e[g++])if(m(h,l,c)){p.push(h);break}w&&(T=k,i=++n)}r&&((h=!m&&h)&&v--,s&&x.push(h))}if(v+=b,r&&b!==v){g=0;while(m=t[g++])m(x,y,l,c);if(s){if(v>0)while(b--)x[b]||y[b]||(y[b]=q.call(p));y=xt(y)}M.apply(p,y),w&&!s&&y.length>0&&v+t.length>1&&at.uniqueSort(p)}return w&&(T=k,u=C),x};return r?lt(s):s}l=at.compile=function(e,t){var n,r=[],i=[],o=E[e+" "];if(!o){t||(t=mt(e)),n=t.length;while(n--)o=Tt(t[n]),o[b]?r.push(o):i.push(o);o=E(e,Ct(i,r))}return o};function Nt(e,t,n){var r=0,i=t.length;for(;i>r;r++)at(e,t[r],n);return n}function kt(e,t,n,i){var a,s,u,c,p,f=mt(e);if(!i&&1===f.length){if(s=f[0]=f[0].slice(0),s.length>2&&"ID"===(u=s[0]).type&&r.getById&&9===t.nodeType&&h&&o.relative[s[1].type]){if(t=(o.find.ID(u.matches[0].replace(rt,it),t)||[])[0],!t)return n;e=e.slice(s.shift().value.length)}a=Q.needsContext.test(e)?0:s.length;while(a--){if(u=s[a],o.relative[c=u.type])break;if((p=o.find[c])&&(i=p(u.matches[0].replace(rt,it),V.test(s[0].type)&&t.parentNode||t))){if(s.splice(a,1),e=i.length&&yt(s),!e)return M.apply(n,i),n;break}}}return l(e,f)(i,t,!h,n,V.test(e)),n}r.sortStable=b.split("").sort(A).join("")===b,r.detectDuplicates=S,p(),r.sortDetached=ut(function(e){return 1&e.compareDocumentPosition(f.createElement("div"))}),ut(function(e){return e.innerHTML="<a href='#'></a>","#"===e.firstChild.getAttribute("href")})||ct("type|href|height|width",function(e,n,r){return r?t:e.getAttribute(n,"type"===n.toLowerCase()?1:2)}),r.attributes&&ut(function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||ct("value",function(e,n,r){return r||"input"!==e.nodeName.toLowerCase()?t:e.defaultValue}),ut(function(e){return null==e.getAttribute("disabled")})||ct(B,function(e,n,r){var i;return r?t:(i=e.getAttributeNode(n))&&i.specified?i.value:e[n]===!0?n.toLowerCase():null}),x.find=at,x.expr=at.selectors,x.expr[":"]=x.expr.pseudos,x.unique=at.uniqueSort,x.text=at.getText,x.isXMLDoc=at.isXML,x.contains=at.contains}(e);var O={};function F(e){var t=O[e]={};return x.each(e.match(T)||[],function(e,n){t[n]=!0}),t}x.Callbacks=function(e){e="string"==typeof e?O[e]||F(e):x.extend({},e);var n,r,i,o,a,s,l=[],u=!e.once&&[],c=function(t){for(r=e.memory&&t,i=!0,a=s||0,s=0,o=l.length,n=!0;l&&o>a;a++)if(l[a].apply(t[0],t[1])===!1&&e.stopOnFalse){r=!1;break}n=!1,l&&(u?u.length&&c(u.shift()):r?l=[]:p.disable())},p={add:function(){if(l){var t=l.length;(function i(t){x.each(t,function(t,n){var r=x.type(n);"function"===r?e.unique&&p.has(n)||l.push(n):n&&n.length&&"string"!==r&&i(n)})})(arguments),n?o=l.length:r&&(s=t,c(r))}return this},remove:function(){return l&&x.each(arguments,function(e,t){var r;while((r=x.inArray(t,l,r))>-1)l.splice(r,1),n&&(o>=r&&o--,a>=r&&a--)}),this},has:function(e){return e?x.inArray(e,l)>-1:!(!l||!l.length)},empty:function(){return l=[],o=0,this},disable:function(){return l=u=r=t,this},disabled:function(){return!l},lock:function(){return u=t,r||p.disable(),this},locked:function(){return!u},fireWith:function(e,t){return!l||i&&!u||(t=t||[],t=[e,t.slice?t.slice():t],n?u.push(t):c(t)),this},fire:function(){return p.fireWith(this,arguments),this},fired:function(){return!!i}};return p},x.extend({Deferred:function(e){var t=[["resolve","done",x.Callbacks("once memory"),"resolved"],["reject","fail",x.Callbacks("once memory"),"rejected"],["notify","progress",x.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return x.Deferred(function(n){x.each(t,function(t,o){var a=o[0],s=x.isFunction(e[t])&&e[t];i[o[1]](function(){var e=s&&s.apply(this,arguments);e&&x.isFunction(e.promise)?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[a+"With"](this===r?n.promise():this,s?[e]:arguments)})}),e=null}).promise()},promise:function(e){return null!=e?x.extend(e,r):r}},i={};return r.pipe=r.then,x.each(t,function(e,o){var a=o[2],s=o[3];r[o[1]]=a.add,s&&a.add(function(){n=s},t[1^e][2].disable,t[2][2].lock),i[o[0]]=function(){return i[o[0]+"With"](this===i?r:this,arguments),this},i[o[0]+"With"]=a.fireWith}),r.promise(i),e&&e.call(i,i),i},when:function(e){var t=0,n=g.call(arguments),r=n.length,i=1!==r||e&&x.isFunction(e.promise)?r:0,o=1===i?e:x.Deferred(),a=function(e,t,n){return function(r){t[e]=this,n[e]=arguments.length>1?g.call(arguments):r,n===s?o.notifyWith(t,n):--i||o.resolveWith(t,n)}},s,l,u;if(r>1)for(s=Array(r),l=Array(r),u=Array(r);r>t;t++)n[t]&&x.isFunction(n[t].promise)?n[t].promise().done(a(t,u,n)).fail(o.reject).progress(a(t,l,s)):--i;return i||o.resolveWith(u,n),o.promise()}}),x.support=function(t){var n,r,o,s,l,u,c,p,f,d=a.createElement("div");if(d.setAttribute("className","t"),d.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",n=d.getElementsByTagName("*")||[],r=d.getElementsByTagName("a")[0],!r||!r.style||!n.length)return t;s=a.createElement("select"),u=s.appendChild(a.createElement("option")),o=d.getElementsByTagName("input")[0],r.style.cssText="top:1px;float:left;opacity:.5",t.getSetAttribute="t"!==d.className,t.leadingWhitespace=3===d.firstChild.nodeType,t.tbody=!d.getElementsByTagName("tbody").length,t.htmlSerialize=!!d.getElementsByTagName("link").length,t.style=/top/.test(r.getAttribute("style")),t.hrefNormalized="/a"===r.getAttribute("href"),t.opacity=/^0.5/.test(r.style.opacity),t.cssFloat=!!r.style.cssFloat,t.checkOn=!!o.value,t.optSelected=u.selected,t.enctype=!!a.createElement("form").enctype,t.html5Clone="<:nav></:nav>"!==a.createElement("nav").cloneNode(!0).outerHTML,t.inlineBlockNeedsLayout=!1,t.shrinkWrapBlocks=!1,t.pixelPosition=!1,t.deleteExpando=!0,t.noCloneEvent=!0,t.reliableMarginRight=!0,t.boxSizingReliable=!0,o.checked=!0,t.noCloneChecked=o.cloneNode(!0).checked,s.disabled=!0,t.optDisabled=!u.disabled;try{delete d.test}catch(h){t.deleteExpando=!1}o=a.createElement("input"),o.setAttribute("value",""),t.input=""===o.getAttribute("value"),o.value="t",o.setAttribute("type","radio"),t.radioValue="t"===o.value,o.setAttribute("checked","t"),o.setAttribute("name","t"),l=a.createDocumentFragment(),l.appendChild(o),t.appendChecked=o.checked,t.checkClone=l.cloneNode(!0).cloneNode(!0).lastChild.checked,d.attachEvent&&(d.attachEvent("onclick",function(){t.noCloneEvent=!1}),d.cloneNode(!0).click());for(f in{submit:!0,change:!0,focusin:!0})d.setAttribute(c="on"+f,"t"),t[f+"Bubbles"]=c in e||d.attributes[c].expando===!1;d.style.backgroundClip="content-box",d.cloneNode(!0).style.backgroundClip="",t.clearCloneStyle="content-box"===d.style.backgroundClip;for(f in x(t))break;return t.ownLast="0"!==f,x(function(){var n,r,o,s="padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;",l=a.getElementsByTagName("body")[0];l&&(n=a.createElement("div"),n.style.cssText="border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px",l.appendChild(n).appendChild(d),d.innerHTML="<table><tr><td></td><td>t</td></tr></table>",o=d.getElementsByTagName("td"),o[0].style.cssText="padding:0;margin:0;border:0;display:none",p=0===o[0].offsetHeight,o[0].style.display="",o[1].style.display="none",t.reliableHiddenOffsets=p&&0===o[0].offsetHeight,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",x.swap(l,null!=l.style.zoom?{zoom:1}:{},function(){t.boxSizing=4===d.offsetWidth}),e.getComputedStyle&&(t.pixelPosition="1%"!==(e.getComputedStyle(d,null)||{}).top,t.boxSizingReliable="4px"===(e.getComputedStyle(d,null)||{width:"4px"}).width,r=d.appendChild(a.createElement("div")),r.style.cssText=d.style.cssText=s,r.style.marginRight=r.style.width="0",d.style.width="1px",t.reliableMarginRight=!parseFloat((e.getComputedStyle(r,null)||{}).marginRight)),typeof d.style.zoom!==i&&(d.innerHTML="",d.style.cssText=s+"width:1px;padding:1px;display:inline;zoom:1",t.inlineBlockNeedsLayout=3===d.offsetWidth,d.style.display="block",d.innerHTML="<div></div>",d.firstChild.style.width="5px",t.shrinkWrapBlocks=3!==d.offsetWidth,t.inlineBlockNeedsLayout&&(l.style.zoom=1)),l.removeChild(n),n=d=o=r=null)}),n=s=l=u=r=o=null,t }({});var B=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,P=/([A-Z])/g;function R(e,n,r,i){if(x.acceptData(e)){var o,a,s=x.expando,l=e.nodeType,u=l?x.cache:e,c=l?e[s]:e[s]&&s;if(c&&u[c]&&(i||u[c].data)||r!==t||"string"!=typeof n)return c||(c=l?e[s]=p.pop()||x.guid++:s),u[c]||(u[c]=l?{}:{toJSON:x.noop}),("object"==typeof n||"function"==typeof n)&&(i?u[c]=x.extend(u[c],n):u[c].data=x.extend(u[c].data,n)),a=u[c],i||(a.data||(a.data={}),a=a.data),r!==t&&(a[x.camelCase(n)]=r),"string"==typeof n?(o=a[n],null==o&&(o=a[x.camelCase(n)])):o=a,o}}function W(e,t,n){if(x.acceptData(e)){var r,i,o=e.nodeType,a=o?x.cache:e,s=o?e[x.expando]:x.expando;if(a[s]){if(t&&(r=n?a[s]:a[s].data)){x.isArray(t)?t=t.concat(x.map(t,x.camelCase)):t in r?t=[t]:(t=x.camelCase(t),t=t in r?[t]:t.split(" ")),i=t.length;while(i--)delete r[t[i]];if(n?!I(r):!x.isEmptyObject(r))return}(n||(delete a[s].data,I(a[s])))&&(o?x.cleanData([e],!0):x.support.deleteExpando||a!=a.window?delete a[s]:a[s]=null)}}}x.extend({cache:{},noData:{applet:!0,embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(e){return e=e.nodeType?x.cache[e[x.expando]]:e[x.expando],!!e&&!I(e)},data:function(e,t,n){return R(e,t,n)},removeData:function(e,t){return W(e,t)},_data:function(e,t,n){return R(e,t,n,!0)},_removeData:function(e,t){return W(e,t,!0)},acceptData:function(e){if(e.nodeType&&1!==e.nodeType&&9!==e.nodeType)return!1;var t=e.nodeName&&x.noData[e.nodeName.toLowerCase()];return!t||t!==!0&&e.getAttribute("classid")===t}}),x.fn.extend({data:function(e,n){var r,i,o=null,a=0,s=this[0];if(e===t){if(this.length&&(o=x.data(s),1===s.nodeType&&!x._data(s,"parsedAttrs"))){for(r=s.attributes;r.length>a;a++)i=r[a].name,0===i.indexOf("data-")&&(i=x.camelCase(i.slice(5)),$(s,i,o[i]));x._data(s,"parsedAttrs",!0)}return o}return"object"==typeof e?this.each(function(){x.data(this,e)}):arguments.length>1?this.each(function(){x.data(this,e,n)}):s?$(s,e,x.data(s,e)):null},removeData:function(e){return this.each(function(){x.removeData(this,e)})}});function $(e,n,r){if(r===t&&1===e.nodeType){var i="data-"+n.replace(P,"-$1").toLowerCase();if(r=e.getAttribute(i),"string"==typeof r){try{r="true"===r?!0:"false"===r?!1:"null"===r?null:+r+""===r?+r:B.test(r)?x.parseJSON(r):r}catch(o){}x.data(e,n,r)}else r=t}return r}function I(e){var t;for(t in e)if(("data"!==t||!x.isEmptyObject(e[t]))&&"toJSON"!==t)return!1;return!0}x.extend({queue:function(e,n,r){var i;return e?(n=(n||"fx")+"queue",i=x._data(e,n),r&&(!i||x.isArray(r)?i=x._data(e,n,x.makeArray(r)):i.push(r)),i||[]):t},dequeue:function(e,t){t=t||"fx";var n=x.queue(e,t),r=n.length,i=n.shift(),o=x._queueHooks(e,t),a=function(){x.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,a,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return x._data(e,n)||x._data(e,n,{empty:x.Callbacks("once memory").add(function(){x._removeData(e,t+"queue"),x._removeData(e,n)})})}}),x.fn.extend({queue:function(e,n){var r=2;return"string"!=typeof e&&(n=e,e="fx",r--),r>arguments.length?x.queue(this[0],e):n===t?this:this.each(function(){var t=x.queue(this,e,n);x._queueHooks(this,e),"fx"===e&&"inprogress"!==t[0]&&x.dequeue(this,e)})},dequeue:function(e){return this.each(function(){x.dequeue(this,e)})},delay:function(e,t){return e=x.fx?x.fx.speeds[e]||e:e,t=t||"fx",this.queue(t,function(t,n){var r=setTimeout(t,e);n.stop=function(){clearTimeout(r)}})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,n){var r,i=1,o=x.Deferred(),a=this,s=this.length,l=function(){--i||o.resolveWith(a,[a])};"string"!=typeof e&&(n=e,e=t),e=e||"fx";while(s--)r=x._data(a[s],e+"queueHooks"),r&&r.empty&&(i++,r.empty.add(l));return l(),o.promise(n)}});var z,X,U=/[\t\r\n\f]/g,V=/\r/g,Y=/^(?:input|select|textarea|button|object)$/i,J=/^(?:a|area)$/i,G=/^(?:checked|selected)$/i,Q=x.support.getSetAttribute,K=x.support.input;x.fn.extend({attr:function(e,t){return x.access(this,x.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){x.removeAttr(this,e)})},prop:function(e,t){return x.access(this,x.prop,e,t,arguments.length>1)},removeProp:function(e){return e=x.propFix[e]||e,this.each(function(){try{this[e]=t,delete this[e]}catch(n){}})},addClass:function(e){var t,n,r,i,o,a=0,s=this.length,l="string"==typeof e&&e;if(x.isFunction(e))return this.each(function(t){x(this).addClass(e.call(this,t,this.className))});if(l)for(t=(e||"").match(T)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(U," "):" ")){o=0;while(i=t[o++])0>r.indexOf(" "+i+" ")&&(r+=i+" ");n.className=x.trim(r)}return this},removeClass:function(e){var t,n,r,i,o,a=0,s=this.length,l=0===arguments.length||"string"==typeof e&&e;if(x.isFunction(e))return this.each(function(t){x(this).removeClass(e.call(this,t,this.className))});if(l)for(t=(e||"").match(T)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(U," "):"")){o=0;while(i=t[o++])while(r.indexOf(" "+i+" ")>=0)r=r.replace(" "+i+" "," ");n.className=e?x.trim(r):""}return this},toggleClass:function(e,t){var n=typeof e;return"boolean"==typeof t&&"string"===n?t?this.addClass(e):this.removeClass(e):x.isFunction(e)?this.each(function(n){x(this).toggleClass(e.call(this,n,this.className,t),t)}):this.each(function(){if("string"===n){var t,r=0,o=x(this),a=e.match(T)||[];while(t=a[r++])o.hasClass(t)?o.removeClass(t):o.addClass(t)}else(n===i||"boolean"===n)&&(this.className&&x._data(this,"__className__",this.className),this.className=this.className||e===!1?"":x._data(this,"__className__")||"")})},hasClass:function(e){var t=" "+e+" ",n=0,r=this.length;for(;r>n;n++)if(1===this[n].nodeType&&(" "+this[n].className+" ").replace(U," ").indexOf(t)>=0)return!0;return!1},val:function(e){var n,r,i,o=this[0];{if(arguments.length)return i=x.isFunction(e),this.each(function(n){var o;1===this.nodeType&&(o=i?e.call(this,n,x(this).val()):e,null==o?o="":"number"==typeof o?o+="":x.isArray(o)&&(o=x.map(o,function(e){return null==e?"":e+""})),r=x.valHooks[this.type]||x.valHooks[this.nodeName.toLowerCase()],r&&"set"in r&&r.set(this,o,"value")!==t||(this.value=o))});if(o)return r=x.valHooks[o.type]||x.valHooks[o.nodeName.toLowerCase()],r&&"get"in r&&(n=r.get(o,"value"))!==t?n:(n=o.value,"string"==typeof n?n.replace(V,""):null==n?"":n)}}}),x.extend({valHooks:{option:{get:function(e){var t=x.find.attr(e,"value");return null!=t?t:e.text}},select:{get:function(e){var t,n,r=e.options,i=e.selectedIndex,o="select-one"===e.type||0>i,a=o?null:[],s=o?i+1:r.length,l=0>i?s:o?i:0;for(;s>l;l++)if(n=r[l],!(!n.selected&&l!==i||(x.support.optDisabled?n.disabled:null!==n.getAttribute("disabled"))||n.parentNode.disabled&&x.nodeName(n.parentNode,"optgroup"))){if(t=x(n).val(),o)return t;a.push(t)}return a},set:function(e,t){var n,r,i=e.options,o=x.makeArray(t),a=i.length;while(a--)r=i[a],(r.selected=x.inArray(x(r).val(),o)>=0)&&(n=!0);return n||(e.selectedIndex=-1),o}}},attr:function(e,n,r){var o,a,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return typeof e.getAttribute===i?x.prop(e,n,r):(1===s&&x.isXMLDoc(e)||(n=n.toLowerCase(),o=x.attrHooks[n]||(x.expr.match.bool.test(n)?X:z)),r===t?o&&"get"in o&&null!==(a=o.get(e,n))?a:(a=x.find.attr(e,n),null==a?t:a):null!==r?o&&"set"in o&&(a=o.set(e,r,n))!==t?a:(e.setAttribute(n,r+""),r):(x.removeAttr(e,n),t))},removeAttr:function(e,t){var n,r,i=0,o=t&&t.match(T);if(o&&1===e.nodeType)while(n=o[i++])r=x.propFix[n]||n,x.expr.match.bool.test(n)?K&&Q||!G.test(n)?e[r]=!1:e[x.camelCase("default-"+n)]=e[r]=!1:x.attr(e,n,""),e.removeAttribute(Q?n:r)},attrHooks:{type:{set:function(e,t){if(!x.support.radioValue&&"radio"===t&&x.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},propFix:{"for":"htmlFor","class":"className"},prop:function(e,n,r){var i,o,a,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return a=1!==s||!x.isXMLDoc(e),a&&(n=x.propFix[n]||n,o=x.propHooks[n]),r!==t?o&&"set"in o&&(i=o.set(e,r,n))!==t?i:e[n]=r:o&&"get"in o&&null!==(i=o.get(e,n))?i:e[n]},propHooks:{tabIndex:{get:function(e){var t=x.find.attr(e,"tabindex");return t?parseInt(t,10):Y.test(e.nodeName)||J.test(e.nodeName)&&e.href?0:-1}}}}),X={set:function(e,t,n){return t===!1?x.removeAttr(e,n):K&&Q||!G.test(n)?e.setAttribute(!Q&&x.propFix[n]||n,n):e[x.camelCase("default-"+n)]=e[n]=!0,n}},x.each(x.expr.match.bool.source.match(/\w+/g),function(e,n){var r=x.expr.attrHandle[n]||x.find.attr;x.expr.attrHandle[n]=K&&Q||!G.test(n)?function(e,n,i){var o=x.expr.attrHandle[n],a=i?t:(x.expr.attrHandle[n]=t)!=r(e,n,i)?n.toLowerCase():null;return x.expr.attrHandle[n]=o,a}:function(e,n,r){return r?t:e[x.camelCase("default-"+n)]?n.toLowerCase():null}}),K&&Q||(x.attrHooks.value={set:function(e,n,r){return x.nodeName(e,"input")?(e.defaultValue=n,t):z&&z.set(e,n,r)}}),Q||(z={set:function(e,n,r){var i=e.getAttributeNode(r);return i||e.setAttributeNode(i=e.ownerDocument.createAttribute(r)),i.value=n+="","value"===r||n===e.getAttribute(r)?n:t}},x.expr.attrHandle.id=x.expr.attrHandle.name=x.expr.attrHandle.coords=function(e,n,r){var i;return r?t:(i=e.getAttributeNode(n))&&""!==i.value?i.value:null},x.valHooks.button={get:function(e,n){var r=e.getAttributeNode(n);return r&&r.specified?r.value:t},set:z.set},x.attrHooks.contenteditable={set:function(e,t,n){z.set(e,""===t?!1:t,n)}},x.each(["width","height"],function(e,n){x.attrHooks[n]={set:function(e,r){return""===r?(e.setAttribute(n,"auto"),r):t}}})),x.support.hrefNormalized||x.each(["href","src"],function(e,t){x.propHooks[t]={get:function(e){return e.getAttribute(t,4)}}}),x.support.style||(x.attrHooks.style={get:function(e){return e.style.cssText||t},set:function(e,t){return e.style.cssText=t+""}}),x.support.optSelected||(x.propHooks.selected={get:function(e){var t=e.parentNode;return t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex),null}}),x.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){x.propFix[this.toLowerCase()]=this}),x.support.enctype||(x.propFix.enctype="encoding"),x.each(["radio","checkbox"],function(){x.valHooks[this]={set:function(e,n){return x.isArray(n)?e.checked=x.inArray(x(e).val(),n)>=0:t}},x.support.checkOn||(x.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})});var Z=/^(?:input|select|textarea)$/i,et=/^key/,tt=/^(?:mouse|contextmenu)|click/,nt=/^(?:focusinfocus|focusoutblur)$/,rt=/^([^.]*)(?:\.(.+)|)$/;function it(){return!0}function ot(){return!1}function at(){try{return a.activeElement}catch(e){}}x.event={global:{},add:function(e,n,r,o,a){var s,l,u,c,p,f,d,h,g,m,y,v=x._data(e);if(v){r.handler&&(c=r,r=c.handler,a=c.selector),r.guid||(r.guid=x.guid++),(l=v.events)||(l=v.events={}),(f=v.handle)||(f=v.handle=function(e){return typeof x===i||e&&x.event.triggered===e.type?t:x.event.dispatch.apply(f.elem,arguments)},f.elem=e),n=(n||"").match(T)||[""],u=n.length;while(u--)s=rt.exec(n[u])||[],g=y=s[1],m=(s[2]||"").split(".").sort(),g&&(p=x.event.special[g]||{},g=(a?p.delegateType:p.bindType)||g,p=x.event.special[g]||{},d=x.extend({type:g,origType:y,data:o,handler:r,guid:r.guid,selector:a,needsContext:a&&x.expr.match.needsContext.test(a),namespace:m.join(".")},c),(h=l[g])||(h=l[g]=[],h.delegateCount=0,p.setup&&p.setup.call(e,o,m,f)!==!1||(e.addEventListener?e.addEventListener(g,f,!1):e.attachEvent&&e.attachEvent("on"+g,f))),p.add&&(p.add.call(e,d),d.handler.guid||(d.handler.guid=r.guid)),a?h.splice(h.delegateCount++,0,d):h.push(d),x.event.global[g]=!0);e=null}},remove:function(e,t,n,r,i){var o,a,s,l,u,c,p,f,d,h,g,m=x.hasData(e)&&x._data(e);if(m&&(c=m.events)){t=(t||"").match(T)||[""],u=t.length;while(u--)if(s=rt.exec(t[u])||[],d=g=s[1],h=(s[2]||"").split(".").sort(),d){p=x.event.special[d]||{},d=(r?p.delegateType:p.bindType)||d,f=c[d]||[],s=s[2]&&RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),l=o=f.length;while(o--)a=f[o],!i&&g!==a.origType||n&&n.guid!==a.guid||s&&!s.test(a.namespace)||r&&r!==a.selector&&("**"!==r||!a.selector)||(f.splice(o,1),a.selector&&f.delegateCount--,p.remove&&p.remove.call(e,a));l&&!f.length&&(p.teardown&&p.teardown.call(e,h,m.handle)!==!1||x.removeEvent(e,d,m.handle),delete c[d])}else for(d in c)x.event.remove(e,d+t[u],n,r,!0);x.isEmptyObject(c)&&(delete m.handle,x._removeData(e,"events"))}},trigger:function(n,r,i,o){var s,l,u,c,p,f,d,h=[i||a],g=v.call(n,"type")?n.type:n,m=v.call(n,"namespace")?n.namespace.split("."):[];if(u=f=i=i||a,3!==i.nodeType&&8!==i.nodeType&&!nt.test(g+x.event.triggered)&&(g.indexOf(".")>=0&&(m=g.split("."),g=m.shift(),m.sort()),l=0>g.indexOf(":")&&"on"+g,n=n[x.expando]?n:new x.Event(g,"object"==typeof n&&n),n.isTrigger=o?2:3,n.namespace=m.join("."),n.namespace_re=n.namespace?RegExp("(^|\\.)"+m.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,n.result=t,n.target||(n.target=i),r=null==r?[n]:x.makeArray(r,[n]),p=x.event.special[g]||{},o||!p.trigger||p.trigger.apply(i,r)!==!1)){if(!o&&!p.noBubble&&!x.isWindow(i)){for(c=p.delegateType||g,nt.test(c+g)||(u=u.parentNode);u;u=u.parentNode)h.push(u),f=u;f===(i.ownerDocument||a)&&h.push(f.defaultView||f.parentWindow||e)}d=0;while((u=h[d++])&&!n.isPropagationStopped())n.type=d>1?c:p.bindType||g,s=(x._data(u,"events")||{})[n.type]&&x._data(u,"handle"),s&&s.apply(u,r),s=l&&u[l],s&&x.acceptData(u)&&s.apply&&s.apply(u,r)===!1&&n.preventDefault();if(n.type=g,!o&&!n.isDefaultPrevented()&&(!p._default||p._default.apply(h.pop(),r)===!1)&&x.acceptData(i)&&l&&i[g]&&!x.isWindow(i)){f=i[l],f&&(i[l]=null),x.event.triggered=g;try{i[g]()}catch(y){}x.event.triggered=t,f&&(i[l]=f)}return n.result}},dispatch:function(e){e=x.event.fix(e);var n,r,i,o,a,s=[],l=g.call(arguments),u=(x._data(this,"events")||{})[e.type]||[],c=x.event.special[e.type]||{};if(l[0]=e,e.delegateTarget=this,!c.preDispatch||c.preDispatch.call(this,e)!==!1){s=x.event.handlers.call(this,e,u),n=0;while((o=s[n++])&&!e.isPropagationStopped()){e.currentTarget=o.elem,a=0;while((i=o.handlers[a++])&&!e.isImmediatePropagationStopped())(!e.namespace_re||e.namespace_re.test(i.namespace))&&(e.handleObj=i,e.data=i.data,r=((x.event.special[i.origType]||{}).handle||i.handler).apply(o.elem,l),r!==t&&(e.result=r)===!1&&(e.preventDefault(),e.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,e),e.result}},handlers:function(e,n){var r,i,o,a,s=[],l=n.delegateCount,u=e.target;if(l&&u.nodeType&&(!e.button||"click"!==e.type))for(;u!=this;u=u.parentNode||this)if(1===u.nodeType&&(u.disabled!==!0||"click"!==e.type)){for(o=[],a=0;l>a;a++)i=n[a],r=i.selector+" ",o[r]===t&&(o[r]=i.needsContext?x(r,this).index(u)>=0:x.find(r,this,null,[u]).length),o[r]&&o.push(i);o.length&&s.push({elem:u,handlers:o})}return n.length>l&&s.push({elem:this,handlers:n.slice(l)}),s},fix:function(e){if(e[x.expando])return e;var t,n,r,i=e.type,o=e,s=this.fixHooks[i];s||(this.fixHooks[i]=s=tt.test(i)?this.mouseHooks:et.test(i)?this.keyHooks:{}),r=s.props?this.props.concat(s.props):this.props,e=new x.Event(o),t=r.length;while(t--)n=r[t],e[n]=o[n];return e.target||(e.target=o.srcElement||a),3===e.target.nodeType&&(e.target=e.target.parentNode),e.metaKey=!!e.metaKey,s.filter?s.filter(e,o):e},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(e,t){return null==e.which&&(e.which=null!=t.charCode?t.charCode:t.keyCode),e}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(e,n){var r,i,o,s=n.button,l=n.fromElement;return null==e.pageX&&null!=n.clientX&&(i=e.target.ownerDocument||a,o=i.documentElement,r=i.body,e.pageX=n.clientX+(o&&o.scrollLeft||r&&r.scrollLeft||0)-(o&&o.clientLeft||r&&r.clientLeft||0),e.pageY=n.clientY+(o&&o.scrollTop||r&&r.scrollTop||0)-(o&&o.clientTop||r&&r.clientTop||0)),!e.relatedTarget&&l&&(e.relatedTarget=l===e.target?n.toElement:l),e.which||s===t||(e.which=1&s?1:2&s?3:4&s?2:0),e}},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==at()&&this.focus)try{return this.focus(),!1}catch(e){}},delegateType:"focusin"},blur:{trigger:function(){return this===at()&&this.blur?(this.blur(),!1):t},delegateType:"focusout"},click:{trigger:function(){return x.nodeName(this,"input")&&"checkbox"===this.type&&this.click?(this.click(),!1):t},_default:function(e){return x.nodeName(e.target,"a")}},beforeunload:{postDispatch:function(e){e.result!==t&&(e.originalEvent.returnValue=e.result)}}},simulate:function(e,t,n,r){var i=x.extend(new x.Event,n,{type:e,isSimulated:!0,originalEvent:{}});r?x.event.trigger(i,null,t):x.event.dispatch.call(t,i),i.isDefaultPrevented()&&n.preventDefault()}},x.removeEvent=a.removeEventListener?function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n,!1)}:function(e,t,n){var r="on"+t;e.detachEvent&&(typeof e[r]===i&&(e[r]=null),e.detachEvent(r,n))},x.Event=function(e,n){return this instanceof x.Event?(e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||e.returnValue===!1||e.getPreventDefault&&e.getPreventDefault()?it:ot):this.type=e,n&&x.extend(this,n),this.timeStamp=e&&e.timeStamp||x.now(),this[x.expando]=!0,t):new x.Event(e,n)},x.Event.prototype={isDefaultPrevented:ot,isPropagationStopped:ot,isImmediatePropagationStopped:ot,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=it,e&&(e.preventDefault?e.preventDefault():e.returnValue=!1)},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=it,e&&(e.stopPropagation&&e.stopPropagation(),e.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=it,this.stopPropagation()}},x.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(e,t){x.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj;return(!i||i!==r&&!x.contains(r,i))&&(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}}),x.support.submitBubbles||(x.event.special.submit={setup:function(){return x.nodeName(this,"form")?!1:(x.event.add(this,"click._submit keypress._submit",function(e){var n=e.target,r=x.nodeName(n,"input")||x.nodeName(n,"button")?n.form:t;r&&!x._data(r,"submitBubbles")&&(x.event.add(r,"submit._submit",function(e){e._submit_bubble=!0}),x._data(r,"submitBubbles",!0))}),t)},postDispatch:function(e){e._submit_bubble&&(delete e._submit_bubble,this.parentNode&&!e.isTrigger&&x.event.simulate("submit",this.parentNode,e,!0))},teardown:function(){return x.nodeName(this,"form")?!1:(x.event.remove(this,"._submit"),t)}}),x.support.changeBubbles||(x.event.special.change={setup:function(){return Z.test(this.nodeName)?(("checkbox"===this.type||"radio"===this.type)&&(x.event.add(this,"propertychange._change",function(e){"checked"===e.originalEvent.propertyName&&(this._just_changed=!0)}),x.event.add(this,"click._change",function(e){this._just_changed&&!e.isTrigger&&(this._just_changed=!1),x.event.simulate("change",this,e,!0)})),!1):(x.event.add(this,"beforeactivate._change",function(e){var t=e.target;Z.test(t.nodeName)&&!x._data(t,"changeBubbles")&&(x.event.add(t,"change._change",function(e){!this.parentNode||e.isSimulated||e.isTrigger||x.event.simulate("change",this.parentNode,e,!0)}),x._data(t,"changeBubbles",!0))}),t)},handle:function(e){var n=e.target;return this!==n||e.isSimulated||e.isTrigger||"radio"!==n.type&&"checkbox"!==n.type?e.handleObj.handler.apply(this,arguments):t},teardown:function(){return x.event.remove(this,"._change"),!Z.test(this.nodeName)}}),x.support.focusinBubbles||x.each({focus:"focusin",blur:"focusout"},function(e,t){var n=0,r=function(e){x.event.simulate(t,e.target,x.event.fix(e),!0)};x.event.special[t]={setup:function(){0===n++&&a.addEventListener(e,r,!0)},teardown:function(){0===--n&&a.removeEventListener(e,r,!0)}}}),x.fn.extend({on:function(e,n,r,i,o){var a,s;if("object"==typeof e){"string"!=typeof n&&(r=r||n,n=t);for(a in e)this.on(a,n,r,e[a],o);return this}if(null==r&&null==i?(i=n,r=n=t):null==i&&("string"==typeof n?(i=r,r=t):(i=r,r=n,n=t)),i===!1)i=ot;else if(!i)return this;return 1===o&&(s=i,i=function(e){return x().off(e),s.apply(this,arguments)},i.guid=s.guid||(s.guid=x.guid++)),this.each(function(){x.event.add(this,e,i,r,n)})},one:function(e,t,n,r){return this.on(e,t,n,r,1)},off:function(e,n,r){var i,o;if(e&&e.preventDefault&&e.handleObj)return i=e.handleObj,x(e.delegateTarget).off(i.namespace?i.origType+"."+i.namespace:i.origType,i.selector,i.handler),this;if("object"==typeof e){for(o in e)this.off(o,n,e[o]);return this}return(n===!1||"function"==typeof n)&&(r=n,n=t),r===!1&&(r=ot),this.each(function(){x.event.remove(this,e,r,n)})},trigger:function(e,t){return this.each(function(){x.event.trigger(e,t,this)})},triggerHandler:function(e,n){var r=this[0];return r?x.event.trigger(e,n,r,!0):t}});var st=/^.[^:#\[\.,]*$/,lt=/^(?:parents|prev(?:Until|All))/,ut=x.expr.match.needsContext,ct={children:!0,contents:!0,next:!0,prev:!0};x.fn.extend({find:function(e){var t,n=[],r=this,i=r.length;if("string"!=typeof e)return this.pushStack(x(e).filter(function(){for(t=0;i>t;t++)if(x.contains(r[t],this))return!0}));for(t=0;i>t;t++)x.find(e,r[t],n);return n=this.pushStack(i>1?x.unique(n):n),n.selector=this.selector?this.selector+" "+e:e,n},has:function(e){var t,n=x(e,this),r=n.length;return this.filter(function(){for(t=0;r>t;t++)if(x.contains(this,n[t]))return!0})},not:function(e){return this.pushStack(ft(this,e||[],!0))},filter:function(e){return this.pushStack(ft(this,e||[],!1))},is:function(e){return!!ft(this,"string"==typeof e&&ut.test(e)?x(e):e||[],!1).length},closest:function(e,t){var n,r=0,i=this.length,o=[],a=ut.test(e)||"string"!=typeof e?x(e,t||this.context):0;for(;i>r;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(11>n.nodeType&&(a?a.index(n)>-1:1===n.nodeType&&x.find.matchesSelector(n,e))){n=o.push(n);break}return this.pushStack(o.length>1?x.unique(o):o)},index:function(e){return e?"string"==typeof e?x.inArray(this[0],x(e)):x.inArray(e.jquery?e[0]:e,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){var n="string"==typeof e?x(e,t):x.makeArray(e&&e.nodeType?[e]:e),r=x.merge(this.get(),n);return this.pushStack(x.unique(r))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}});function pt(e,t){do e=e[t];while(e&&1!==e.nodeType);return e}x.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return x.dir(e,"parentNode")},parentsUntil:function(e,t,n){return x.dir(e,"parentNode",n)},next:function(e){return pt(e,"nextSibling")},prev:function(e){return pt(e,"previousSibling")},nextAll:function(e){return x.dir(e,"nextSibling")},prevAll:function(e){return x.dir(e,"previousSibling")},nextUntil:function(e,t,n){return x.dir(e,"nextSibling",n)},prevUntil:function(e,t,n){return x.dir(e,"previousSibling",n)},siblings:function(e){return x.sibling((e.parentNode||{}).firstChild,e)},children:function(e){return x.sibling(e.firstChild)},contents:function(e){return x.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:x.merge([],e.childNodes)}},function(e,t){x.fn[e]=function(n,r){var i=x.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=x.filter(r,i)),this.length>1&&(ct[e]||(i=x.unique(i)),lt.test(e)&&(i=i.reverse())),this.pushStack(i)}}),x.extend({filter:function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?x.find.matchesSelector(r,e)?[r]:[]:x.find.matches(e,x.grep(t,function(e){return 1===e.nodeType}))},dir:function(e,n,r){var i=[],o=e[n];while(o&&9!==o.nodeType&&(r===t||1!==o.nodeType||!x(o).is(r)))1===o.nodeType&&i.push(o),o=o[n];return i},sibling:function(e,t){var n=[];for(;e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n}});function ft(e,t,n){if(x.isFunction(t))return x.grep(e,function(e,r){return!!t.call(e,r,e)!==n});if(t.nodeType)return x.grep(e,function(e){return e===t!==n});if("string"==typeof t){if(st.test(t))return x.filter(t,e,n);t=x.filter(t,e)}return x.grep(e,function(e){return x.inArray(e,t)>=0!==n})}function dt(e){var t=ht.split("|"),n=e.createDocumentFragment();if(n.createElement)while(t.length)n.createElement(t.pop());return n}var ht="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",gt=/ jQuery\d+="(?:null|\d+)"/g,mt=RegExp("<(?:"+ht+")[\\s/>]","i"),yt=/^\s+/,vt=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bt=/<([\w:]+)/,xt=/<tbody/i,wt=/<|&#?\w+;/,Tt=/<(?:script|style|link)/i,Ct=/^(?:checkbox|radio)$/i,Nt=/checked\s*(?:[^=]|=\s*.checked.)/i,kt=/^$|\/(?:java|ecma)script/i,Et=/^true\/(.*)/,St=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,At={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],area:[1,"<map>","</map>"],param:[1,"<object>","</object>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:x.support.htmlSerialize?[0,"",""]:[1,"X<div>","</div>"]},jt=dt(a),Dt=jt.appendChild(a.createElement("div"));At.optgroup=At.option,At.tbody=At.tfoot=At.colgroup=At.caption=At.thead,At.th=At.td,x.fn.extend({text:function(e){return x.access(this,function(e){return e===t?x.text(this):this.empty().append((this[0]&&this[0].ownerDocument||a).createTextNode(e))},null,e,arguments.length)},append:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Lt(this,e);t.appendChild(e)}})},prepend:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Lt(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},remove:function(e,t){var n,r=e?x.filter(e,this):this,i=0;for(;null!=(n=r[i]);i++)t||1!==n.nodeType||x.cleanData(Ft(n)),n.parentNode&&(t&&x.contains(n.ownerDocument,n)&&_t(Ft(n,"script")),n.parentNode.removeChild(n));return this},empty:function(){var e,t=0;for(;null!=(e=this[t]);t++){1===e.nodeType&&x.cleanData(Ft(e,!1));while(e.firstChild)e.removeChild(e.firstChild);e.options&&x.nodeName(e,"select")&&(e.options.length=0)}return this},clone:function(e,t){return e=null==e?!1:e,t=null==t?e:t,this.map(function(){return x.clone(this,e,t)})},html:function(e){return x.access(this,function(e){var n=this[0]||{},r=0,i=this.length;if(e===t)return 1===n.nodeType?n.innerHTML.replace(gt,""):t;if(!("string"!=typeof e||Tt.test(e)||!x.support.htmlSerialize&&mt.test(e)||!x.support.leadingWhitespace&&yt.test(e)||At[(bt.exec(e)||["",""])[1].toLowerCase()])){e=e.replace(vt,"<$1></$2>");try{for(;i>r;r++)n=this[r]||{},1===n.nodeType&&(x.cleanData(Ft(n,!1)),n.innerHTML=e);n=0}catch(o){}}n&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var e=x.map(this,function(e){return[e.nextSibling,e.parentNode]}),t=0;return this.domManip(arguments,function(n){var r=e[t++],i=e[t++];i&&(r&&r.parentNode!==i&&(r=this.nextSibling),x(this).remove(),i.insertBefore(n,r))},!0),t?this:this.remove()},detach:function(e){return this.remove(e,!0)},domManip:function(e,t,n){e=d.apply([],e);var r,i,o,a,s,l,u=0,c=this.length,p=this,f=c-1,h=e[0],g=x.isFunction(h);if(g||!(1>=c||"string"!=typeof h||x.support.checkClone)&&Nt.test(h))return this.each(function(r){var i=p.eq(r);g&&(e[0]=h.call(this,r,i.html())),i.domManip(e,t,n)});if(c&&(l=x.buildFragment(e,this[0].ownerDocument,!1,!n&&this),r=l.firstChild,1===l.childNodes.length&&(l=r),r)){for(a=x.map(Ft(l,"script"),Ht),o=a.length;c>u;u++)i=l,u!==f&&(i=x.clone(i,!0,!0),o&&x.merge(a,Ft(i,"script"))),t.call(this[u],i,u);if(o)for(s=a[a.length-1].ownerDocument,x.map(a,qt),u=0;o>u;u++)i=a[u],kt.test(i.type||"")&&!x._data(i,"globalEval")&&x.contains(s,i)&&(i.src?x._evalUrl(i.src):x.globalEval((i.text||i.textContent||i.innerHTML||"").replace(St,"")));l=r=null}return this}});function Lt(e,t){return x.nodeName(e,"table")&&x.nodeName(1===t.nodeType?t:t.firstChild,"tr")?e.getElementsByTagName("tbody")[0]||e.appendChild(e.ownerDocument.createElement("tbody")):e}function Ht(e){return e.type=(null!==x.find.attr(e,"type"))+"/"+e.type,e}function qt(e){var t=Et.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function _t(e,t){var n,r=0;for(;null!=(n=e[r]);r++)x._data(n,"globalEval",!t||x._data(t[r],"globalEval"))}function Mt(e,t){if(1===t.nodeType&&x.hasData(e)){var n,r,i,o=x._data(e),a=x._data(t,o),s=o.events;if(s){delete a.handle,a.events={};for(n in s)for(r=0,i=s[n].length;i>r;r++)x.event.add(t,n,s[n][r])}a.data&&(a.data=x.extend({},a.data))}}function Ot(e,t){var n,r,i;if(1===t.nodeType){if(n=t.nodeName.toLowerCase(),!x.support.noCloneEvent&&t[x.expando]){i=x._data(t);for(r in i.events)x.removeEvent(t,r,i.handle);t.removeAttribute(x.expando)}"script"===n&&t.text!==e.text?(Ht(t).text=e.text,qt(t)):"object"===n?(t.parentNode&&(t.outerHTML=e.outerHTML),x.support.html5Clone&&e.innerHTML&&!x.trim(t.innerHTML)&&(t.innerHTML=e.innerHTML)):"input"===n&&Ct.test(e.type)?(t.defaultChecked=t.checked=e.checked,t.value!==e.value&&(t.value=e.value)):"option"===n?t.defaultSelected=t.selected=e.defaultSelected:("input"===n||"textarea"===n)&&(t.defaultValue=e.defaultValue)}}x.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){x.fn[e]=function(e){var n,r=0,i=[],o=x(e),a=o.length-1;for(;a>=r;r++)n=r===a?this:this.clone(!0),x(o[r])[t](n),h.apply(i,n.get());return this.pushStack(i)}});function Ft(e,n){var r,o,a=0,s=typeof e.getElementsByTagName!==i?e.getElementsByTagName(n||"*"):typeof e.querySelectorAll!==i?e.querySelectorAll(n||"*"):t;if(!s)for(s=[],r=e.childNodes||e;null!=(o=r[a]);a++)!n||x.nodeName(o,n)?s.push(o):x.merge(s,Ft(o,n));return n===t||n&&x.nodeName(e,n)?x.merge([e],s):s}function Bt(e){Ct.test(e.type)&&(e.defaultChecked=e.checked)}x.extend({clone:function(e,t,n){var r,i,o,a,s,l=x.contains(e.ownerDocument,e);if(x.support.html5Clone||x.isXMLDoc(e)||!mt.test("<"+e.nodeName+">")?o=e.cloneNode(!0):(Dt.innerHTML=e.outerHTML,Dt.removeChild(o=Dt.firstChild)),!(x.support.noCloneEvent&&x.support.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||x.isXMLDoc(e)))for(r=Ft(o),s=Ft(e),a=0;null!=(i=s[a]);++a)r[a]&&Ot(i,r[a]);if(t)if(n)for(s=s||Ft(e),r=r||Ft(o),a=0;null!=(i=s[a]);a++)Mt(i,r[a]);else Mt(e,o);return r=Ft(o,"script"),r.length>0&&_t(r,!l&&Ft(e,"script")),r=s=i=null,o},buildFragment:function(e,t,n,r){var i,o,a,s,l,u,c,p=e.length,f=dt(t),d=[],h=0;for(;p>h;h++)if(o=e[h],o||0===o)if("object"===x.type(o))x.merge(d,o.nodeType?[o]:o);else if(wt.test(o)){s=s||f.appendChild(t.createElement("div")),l=(bt.exec(o)||["",""])[1].toLowerCase(),c=At[l]||At._default,s.innerHTML=c[1]+o.replace(vt,"<$1></$2>")+c[2],i=c[0];while(i--)s=s.lastChild;if(!x.support.leadingWhitespace&&yt.test(o)&&d.push(t.createTextNode(yt.exec(o)[0])),!x.support.tbody){o="table"!==l||xt.test(o)?"<table>"!==c[1]||xt.test(o)?0:s:s.firstChild,i=o&&o.childNodes.length;while(i--)x.nodeName(u=o.childNodes[i],"tbody")&&!u.childNodes.length&&o.removeChild(u)}x.merge(d,s.childNodes),s.textContent="";while(s.firstChild)s.removeChild(s.firstChild);s=f.lastChild}else d.push(t.createTextNode(o));s&&f.removeChild(s),x.support.appendChecked||x.grep(Ft(d,"input"),Bt),h=0;while(o=d[h++])if((!r||-1===x.inArray(o,r))&&(a=x.contains(o.ownerDocument,o),s=Ft(f.appendChild(o),"script"),a&&_t(s),n)){i=0;while(o=s[i++])kt.test(o.type||"")&&n.push(o)}return s=null,f},cleanData:function(e,t){var n,r,o,a,s=0,l=x.expando,u=x.cache,c=x.support.deleteExpando,f=x.event.special;for(;null!=(n=e[s]);s++)if((t||x.acceptData(n))&&(o=n[l],a=o&&u[o])){if(a.events)for(r in a.events)f[r]?x.event.remove(n,r):x.removeEvent(n,r,a.handle); u[o]&&(delete u[o],c?delete n[l]:typeof n.removeAttribute!==i?n.removeAttribute(l):n[l]=null,p.push(o))}},_evalUrl:function(e){return x.ajax({url:e,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})}}),x.fn.extend({wrapAll:function(e){if(x.isFunction(e))return this.each(function(t){x(this).wrapAll(e.call(this,t))});if(this[0]){var t=x(e,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstChild&&1===e.firstChild.nodeType)e=e.firstChild;return e}).append(this)}return this},wrapInner:function(e){return x.isFunction(e)?this.each(function(t){x(this).wrapInner(e.call(this,t))}):this.each(function(){var t=x(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=x.isFunction(e);return this.each(function(n){x(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){x.nodeName(this,"body")||x(this).replaceWith(this.childNodes)}).end()}});var Pt,Rt,Wt,$t=/alpha\([^)]*\)/i,It=/opacity\s*=\s*([^)]*)/,zt=/^(top|right|bottom|left)$/,Xt=/^(none|table(?!-c[ea]).+)/,Ut=/^margin/,Vt=RegExp("^("+w+")(.*)$","i"),Yt=RegExp("^("+w+")(?!px)[a-z%]+$","i"),Jt=RegExp("^([+-])=("+w+")","i"),Gt={BODY:"block"},Qt={position:"absolute",visibility:"hidden",display:"block"},Kt={letterSpacing:0,fontWeight:400},Zt=["Top","Right","Bottom","Left"],en=["Webkit","O","Moz","ms"];function tn(e,t){if(t in e)return t;var n=t.charAt(0).toUpperCase()+t.slice(1),r=t,i=en.length;while(i--)if(t=en[i]+n,t in e)return t;return r}function nn(e,t){return e=t||e,"none"===x.css(e,"display")||!x.contains(e.ownerDocument,e)}function rn(e,t){var n,r,i,o=[],a=0,s=e.length;for(;s>a;a++)r=e[a],r.style&&(o[a]=x._data(r,"olddisplay"),n=r.style.display,t?(o[a]||"none"!==n||(r.style.display=""),""===r.style.display&&nn(r)&&(o[a]=x._data(r,"olddisplay",ln(r.nodeName)))):o[a]||(i=nn(r),(n&&"none"!==n||!i)&&x._data(r,"olddisplay",i?n:x.css(r,"display"))));for(a=0;s>a;a++)r=e[a],r.style&&(t&&"none"!==r.style.display&&""!==r.style.display||(r.style.display=t?o[a]||"":"none"));return e}x.fn.extend({css:function(e,n){return x.access(this,function(e,n,r){var i,o,a={},s=0;if(x.isArray(n)){for(o=Rt(e),i=n.length;i>s;s++)a[n[s]]=x.css(e,n[s],!1,o);return a}return r!==t?x.style(e,n,r):x.css(e,n)},e,n,arguments.length>1)},show:function(){return rn(this,!0)},hide:function(){return rn(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){nn(this)?x(this).show():x(this).hide()})}}),x.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Wt(e,"opacity");return""===n?"1":n}}}},cssNumber:{columnCount:!0,fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":x.support.cssFloat?"cssFloat":"styleFloat"},style:function(e,n,r,i){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var o,a,s,l=x.camelCase(n),u=e.style;if(n=x.cssProps[l]||(x.cssProps[l]=tn(u,l)),s=x.cssHooks[n]||x.cssHooks[l],r===t)return s&&"get"in s&&(o=s.get(e,!1,i))!==t?o:u[n];if(a=typeof r,"string"===a&&(o=Jt.exec(r))&&(r=(o[1]+1)*o[2]+parseFloat(x.css(e,n)),a="number"),!(null==r||"number"===a&&isNaN(r)||("number"!==a||x.cssNumber[l]||(r+="px"),x.support.clearCloneStyle||""!==r||0!==n.indexOf("background")||(u[n]="inherit"),s&&"set"in s&&(r=s.set(e,r,i))===t)))try{u[n]=r}catch(c){}}},css:function(e,n,r,i){var o,a,s,l=x.camelCase(n);return n=x.cssProps[l]||(x.cssProps[l]=tn(e.style,l)),s=x.cssHooks[n]||x.cssHooks[l],s&&"get"in s&&(a=s.get(e,!0,r)),a===t&&(a=Wt(e,n,i)),"normal"===a&&n in Kt&&(a=Kt[n]),""===r||r?(o=parseFloat(a),r===!0||x.isNumeric(o)?o||0:a):a}}),e.getComputedStyle?(Rt=function(t){return e.getComputedStyle(t,null)},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),l=s?s.getPropertyValue(n)||s[n]:t,u=e.style;return s&&(""!==l||x.contains(e.ownerDocument,e)||(l=x.style(e,n)),Yt.test(l)&&Ut.test(n)&&(i=u.width,o=u.minWidth,a=u.maxWidth,u.minWidth=u.maxWidth=u.width=l,l=s.width,u.width=i,u.minWidth=o,u.maxWidth=a)),l}):a.documentElement.currentStyle&&(Rt=function(e){return e.currentStyle},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),l=s?s[n]:t,u=e.style;return null==l&&u&&u[n]&&(l=u[n]),Yt.test(l)&&!zt.test(n)&&(i=u.left,o=e.runtimeStyle,a=o&&o.left,a&&(o.left=e.currentStyle.left),u.left="fontSize"===n?"1em":l,l=u.pixelLeft+"px",u.left=i,a&&(o.left=a)),""===l?"auto":l});function on(e,t,n){var r=Vt.exec(t);return r?Math.max(0,r[1]-(n||0))+(r[2]||"px"):t}function an(e,t,n,r,i){var o=n===(r?"border":"content")?4:"width"===t?1:0,a=0;for(;4>o;o+=2)"margin"===n&&(a+=x.css(e,n+Zt[o],!0,i)),r?("content"===n&&(a-=x.css(e,"padding"+Zt[o],!0,i)),"margin"!==n&&(a-=x.css(e,"border"+Zt[o]+"Width",!0,i))):(a+=x.css(e,"padding"+Zt[o],!0,i),"padding"!==n&&(a+=x.css(e,"border"+Zt[o]+"Width",!0,i)));return a}function sn(e,t,n){var r=!0,i="width"===t?e.offsetWidth:e.offsetHeight,o=Rt(e),a=x.support.boxSizing&&"border-box"===x.css(e,"boxSizing",!1,o);if(0>=i||null==i){if(i=Wt(e,t,o),(0>i||null==i)&&(i=e.style[t]),Yt.test(i))return i;r=a&&(x.support.boxSizingReliable||i===e.style[t]),i=parseFloat(i)||0}return i+an(e,t,n||(a?"border":"content"),r,o)+"px"}function ln(e){var t=a,n=Gt[e];return n||(n=un(e,t),"none"!==n&&n||(Pt=(Pt||x("<iframe frameborder='0' width='0' height='0'/>").css("cssText","display:block !important")).appendTo(t.documentElement),t=(Pt[0].contentWindow||Pt[0].contentDocument).document,t.write("<!doctype html><html><body>"),t.close(),n=un(e,t),Pt.detach()),Gt[e]=n),n}function un(e,t){var n=x(t.createElement(e)).appendTo(t.body),r=x.css(n[0],"display");return n.remove(),r}x.each(["height","width"],function(e,n){x.cssHooks[n]={get:function(e,r,i){return r?0===e.offsetWidth&&Xt.test(x.css(e,"display"))?x.swap(e,Qt,function(){return sn(e,n,i)}):sn(e,n,i):t},set:function(e,t,r){var i=r&&Rt(e);return on(e,t,r?an(e,n,r,x.support.boxSizing&&"border-box"===x.css(e,"boxSizing",!1,i),i):0)}}}),x.support.opacity||(x.cssHooks.opacity={get:function(e,t){return It.test((t&&e.currentStyle?e.currentStyle.filter:e.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":t?"1":""},set:function(e,t){var n=e.style,r=e.currentStyle,i=x.isNumeric(t)?"alpha(opacity="+100*t+")":"",o=r&&r.filter||n.filter||"";n.zoom=1,(t>=1||""===t)&&""===x.trim(o.replace($t,""))&&n.removeAttribute&&(n.removeAttribute("filter"),""===t||r&&!r.filter)||(n.filter=$t.test(o)?o.replace($t,i):o+" "+i)}}),x(function(){x.support.reliableMarginRight||(x.cssHooks.marginRight={get:function(e,n){return n?x.swap(e,{display:"inline-block"},Wt,[e,"marginRight"]):t}}),!x.support.pixelPosition&&x.fn.position&&x.each(["top","left"],function(e,n){x.cssHooks[n]={get:function(e,r){return r?(r=Wt(e,n),Yt.test(r)?x(e).position()[n]+"px":r):t}}})}),x.expr&&x.expr.filters&&(x.expr.filters.hidden=function(e){return 0>=e.offsetWidth&&0>=e.offsetHeight||!x.support.reliableHiddenOffsets&&"none"===(e.style&&e.style.display||x.css(e,"display"))},x.expr.filters.visible=function(e){return!x.expr.filters.hidden(e)}),x.each({margin:"",padding:"",border:"Width"},function(e,t){x.cssHooks[e+t]={expand:function(n){var r=0,i={},o="string"==typeof n?n.split(" "):[n];for(;4>r;r++)i[e+Zt[r]+t]=o[r]||o[r-2]||o[0];return i}},Ut.test(e)||(x.cssHooks[e+t].set=on)});var cn=/%20/g,pn=/\[\]$/,fn=/\r?\n/g,dn=/^(?:submit|button|image|reset|file)$/i,hn=/^(?:input|select|textarea|keygen)/i;x.fn.extend({serialize:function(){return x.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=x.prop(this,"elements");return e?x.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!x(this).is(":disabled")&&hn.test(this.nodeName)&&!dn.test(e)&&(this.checked||!Ct.test(e))}).map(function(e,t){var n=x(this).val();return null==n?null:x.isArray(n)?x.map(n,function(e){return{name:t.name,value:e.replace(fn,"\r\n")}}):{name:t.name,value:n.replace(fn,"\r\n")}}).get()}}),x.param=function(e,n){var r,i=[],o=function(e,t){t=x.isFunction(t)?t():null==t?"":t,i[i.length]=encodeURIComponent(e)+"="+encodeURIComponent(t)};if(n===t&&(n=x.ajaxSettings&&x.ajaxSettings.traditional),x.isArray(e)||e.jquery&&!x.isPlainObject(e))x.each(e,function(){o(this.name,this.value)});else for(r in e)gn(r,e[r],n,o);return i.join("&").replace(cn,"+")};function gn(e,t,n,r){var i;if(x.isArray(t))x.each(t,function(t,i){n||pn.test(e)?r(e,i):gn(e+"["+("object"==typeof i?t:"")+"]",i,n,r)});else if(n||"object"!==x.type(t))r(e,t);else for(i in t)gn(e+"["+i+"]",t[i],n,r)}x.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(e,t){x.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}),x.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)},bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)}});var mn,yn,vn=x.now(),bn=/\?/,xn=/#.*$/,wn=/([?&])_=[^&]*/,Tn=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,Cn=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Nn=/^(?:GET|HEAD)$/,kn=/^\/\//,En=/^([\w.+-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,Sn=x.fn.load,An={},jn={},Dn="*/".concat("*");try{yn=o.href}catch(Ln){yn=a.createElement("a"),yn.href="",yn=yn.href}mn=En.exec(yn.toLowerCase())||[];function Hn(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(T)||[];if(x.isFunction(n))while(r=o[i++])"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function qn(e,n,r,i){var o={},a=e===jn;function s(l){var u;return o[l]=!0,x.each(e[l]||[],function(e,l){var c=l(n,r,i);return"string"!=typeof c||a||o[c]?a?!(u=c):t:(n.dataTypes.unshift(c),s(c),!1)}),u}return s(n.dataTypes[0])||!o["*"]&&s("*")}function _n(e,n){var r,i,o=x.ajaxSettings.flatOptions||{};for(i in n)n[i]!==t&&((o[i]?e:r||(r={}))[i]=n[i]);return r&&x.extend(!0,e,r),e}x.fn.load=function(e,n,r){if("string"!=typeof e&&Sn)return Sn.apply(this,arguments);var i,o,a,s=this,l=e.indexOf(" ");return l>=0&&(i=e.slice(l,e.length),e=e.slice(0,l)),x.isFunction(n)?(r=n,n=t):n&&"object"==typeof n&&(a="POST"),s.length>0&&x.ajax({url:e,type:a,dataType:"html",data:n}).done(function(e){o=arguments,s.html(i?x("<div>").append(x.parseHTML(e)).find(i):e)}).complete(r&&function(e,t){s.each(r,o||[e.responseText,t,e])}),this},x.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){x.fn[t]=function(e){return this.on(t,e)}}),x.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:yn,type:"GET",isLocal:Cn.test(mn[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Dn,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":x.parseJSON,"text xml":x.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?_n(_n(e,x.ajaxSettings),t):_n(x.ajaxSettings,e)},ajaxPrefilter:Hn(An),ajaxTransport:Hn(jn),ajax:function(e,n){"object"==typeof e&&(n=e,e=t),n=n||{};var r,i,o,a,s,l,u,c,p=x.ajaxSetup({},n),f=p.context||p,d=p.context&&(f.nodeType||f.jquery)?x(f):x.event,h=x.Deferred(),g=x.Callbacks("once memory"),m=p.statusCode||{},y={},v={},b=0,w="canceled",C={readyState:0,getResponseHeader:function(e){var t;if(2===b){if(!c){c={};while(t=Tn.exec(a))c[t[1].toLowerCase()]=t[2]}t=c[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return 2===b?a:null},setRequestHeader:function(e,t){var n=e.toLowerCase();return b||(e=v[n]=v[n]||e,y[e]=t),this},overrideMimeType:function(e){return b||(p.mimeType=e),this},statusCode:function(e){var t;if(e)if(2>b)for(t in e)m[t]=[m[t],e[t]];else C.always(e[C.status]);return this},abort:function(e){var t=e||w;return u&&u.abort(t),k(0,t),this}};if(h.promise(C).complete=g.add,C.success=C.done,C.error=C.fail,p.url=((e||p.url||yn)+"").replace(xn,"").replace(kn,mn[1]+"//"),p.type=n.method||n.type||p.method||p.type,p.dataTypes=x.trim(p.dataType||"*").toLowerCase().match(T)||[""],null==p.crossDomain&&(r=En.exec(p.url.toLowerCase()),p.crossDomain=!(!r||r[1]===mn[1]&&r[2]===mn[2]&&(r[3]||("http:"===r[1]?"80":"443"))===(mn[3]||("http:"===mn[1]?"80":"443")))),p.data&&p.processData&&"string"!=typeof p.data&&(p.data=x.param(p.data,p.traditional)),qn(An,p,n,C),2===b)return C;l=p.global,l&&0===x.active++&&x.event.trigger("ajaxStart"),p.type=p.type.toUpperCase(),p.hasContent=!Nn.test(p.type),o=p.url,p.hasContent||(p.data&&(o=p.url+=(bn.test(o)?"&":"?")+p.data,delete p.data),p.cache===!1&&(p.url=wn.test(o)?o.replace(wn,"$1_="+vn++):o+(bn.test(o)?"&":"?")+"_="+vn++)),p.ifModified&&(x.lastModified[o]&&C.setRequestHeader("If-Modified-Since",x.lastModified[o]),x.etag[o]&&C.setRequestHeader("If-None-Match",x.etag[o])),(p.data&&p.hasContent&&p.contentType!==!1||n.contentType)&&C.setRequestHeader("Content-Type",p.contentType),C.setRequestHeader("Accept",p.dataTypes[0]&&p.accepts[p.dataTypes[0]]?p.accepts[p.dataTypes[0]]+("*"!==p.dataTypes[0]?", "+Dn+"; q=0.01":""):p.accepts["*"]);for(i in p.headers)C.setRequestHeader(i,p.headers[i]);if(p.beforeSend&&(p.beforeSend.call(f,C,p)===!1||2===b))return C.abort();w="abort";for(i in{success:1,error:1,complete:1})C[i](p[i]);if(u=qn(jn,p,n,C)){C.readyState=1,l&&d.trigger("ajaxSend",[C,p]),p.async&&p.timeout>0&&(s=setTimeout(function(){C.abort("timeout")},p.timeout));try{b=1,u.send(y,k)}catch(N){if(!(2>b))throw N;k(-1,N)}}else k(-1,"No Transport");function k(e,n,r,i){var c,y,v,w,T,N=n;2!==b&&(b=2,s&&clearTimeout(s),u=t,a=i||"",C.readyState=e>0?4:0,c=e>=200&&300>e||304===e,r&&(w=Mn(p,C,r)),w=On(p,w,C,c),c?(p.ifModified&&(T=C.getResponseHeader("Last-Modified"),T&&(x.lastModified[o]=T),T=C.getResponseHeader("etag"),T&&(x.etag[o]=T)),204===e||"HEAD"===p.type?N="nocontent":304===e?N="notmodified":(N=w.state,y=w.data,v=w.error,c=!v)):(v=N,(e||!N)&&(N="error",0>e&&(e=0))),C.status=e,C.statusText=(n||N)+"",c?h.resolveWith(f,[y,N,C]):h.rejectWith(f,[C,N,v]),C.statusCode(m),m=t,l&&d.trigger(c?"ajaxSuccess":"ajaxError",[C,p,c?y:v]),g.fireWith(f,[C,N]),l&&(d.trigger("ajaxComplete",[C,p]),--x.active||x.event.trigger("ajaxStop")))}return C},getJSON:function(e,t,n){return x.get(e,t,n,"json")},getScript:function(e,n){return x.get(e,t,n,"script")}}),x.each(["get","post"],function(e,n){x[n]=function(e,r,i,o){return x.isFunction(r)&&(o=o||i,i=r,r=t),x.ajax({url:e,type:n,dataType:o,data:r,success:i})}});function Mn(e,n,r){var i,o,a,s,l=e.contents,u=e.dataTypes;while("*"===u[0])u.shift(),o===t&&(o=e.mimeType||n.getResponseHeader("Content-Type"));if(o)for(s in l)if(l[s]&&l[s].test(o)){u.unshift(s);break}if(u[0]in r)a=u[0];else{for(s in r){if(!u[0]||e.converters[s+" "+u[0]]){a=s;break}i||(i=s)}a=a||i}return a?(a!==u[0]&&u.unshift(a),r[a]):t}function On(e,t,n,r){var i,o,a,s,l,u={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)u[a.toLowerCase()]=e.converters[a];o=c.shift();while(o)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!l&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),l=o,o=c.shift())if("*"===o)o=l;else if("*"!==l&&l!==o){if(a=u[l+" "+o]||u["* "+o],!a)for(i in u)if(s=i.split(" "),s[1]===o&&(a=u[l+" "+s[0]]||u["* "+s[0]])){a===!0?a=u[i]:u[i]!==!0&&(o=s[0],c.unshift(s[1]));break}if(a!==!0)if(a&&e["throws"])t=a(t);else try{t=a(t)}catch(p){return{state:"parsererror",error:a?p:"No conversion from "+l+" to "+o}}}return{state:"success",data:t}}x.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(e){return x.globalEval(e),e}}}),x.ajaxPrefilter("script",function(e){e.cache===t&&(e.cache=!1),e.crossDomain&&(e.type="GET",e.global=!1)}),x.ajaxTransport("script",function(e){if(e.crossDomain){var n,r=a.head||x("head")[0]||a.documentElement;return{send:function(t,i){n=a.createElement("script"),n.async=!0,e.scriptCharset&&(n.charset=e.scriptCharset),n.src=e.url,n.onload=n.onreadystatechange=function(e,t){(t||!n.readyState||/loaded|complete/.test(n.readyState))&&(n.onload=n.onreadystatechange=null,n.parentNode&&n.parentNode.removeChild(n),n=null,t||i(200,"success"))},r.insertBefore(n,r.firstChild)},abort:function(){n&&n.onload(t,!0)}}}});var Fn=[],Bn=/(=)\?(?=&|$)|\?\?/;x.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Fn.pop()||x.expando+"_"+vn++;return this[e]=!0,e}}),x.ajaxPrefilter("json jsonp",function(n,r,i){var o,a,s,l=n.jsonp!==!1&&(Bn.test(n.url)?"url":"string"==typeof n.data&&!(n.contentType||"").indexOf("application/x-www-form-urlencoded")&&Bn.test(n.data)&&"data");return l||"jsonp"===n.dataTypes[0]?(o=n.jsonpCallback=x.isFunction(n.jsonpCallback)?n.jsonpCallback():n.jsonpCallback,l?n[l]=n[l].replace(Bn,"$1"+o):n.jsonp!==!1&&(n.url+=(bn.test(n.url)?"&":"?")+n.jsonp+"="+o),n.converters["script json"]=function(){return s||x.error(o+" was not called"),s[0]},n.dataTypes[0]="json",a=e[o],e[o]=function(){s=arguments},i.always(function(){e[o]=a,n[o]&&(n.jsonpCallback=r.jsonpCallback,Fn.push(o)),s&&x.isFunction(a)&&a(s[0]),s=a=t}),"script"):t});var Pn,Rn,Wn=0,$n=e.ActiveXObject&&function(){var e;for(e in Pn)Pn[e](t,!0)};function In(){try{return new e.XMLHttpRequest}catch(t){}}function zn(){try{return new e.ActiveXObject("Microsoft.XMLHTTP")}catch(t){}}x.ajaxSettings.xhr=e.ActiveXObject?function(){return!this.isLocal&&In()||zn()}:In,Rn=x.ajaxSettings.xhr(),x.support.cors=!!Rn&&"withCredentials"in Rn,Rn=x.support.ajax=!!Rn,Rn&&x.ajaxTransport(function(n){if(!n.crossDomain||x.support.cors){var r;return{send:function(i,o){var a,s,l=n.xhr();if(n.username?l.open(n.type,n.url,n.async,n.username,n.password):l.open(n.type,n.url,n.async),n.xhrFields)for(s in n.xhrFields)l[s]=n.xhrFields[s];n.mimeType&&l.overrideMimeType&&l.overrideMimeType(n.mimeType),n.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest");try{for(s in i)l.setRequestHeader(s,i[s])}catch(u){}l.send(n.hasContent&&n.data||null),r=function(e,i){var s,u,c,p;try{if(r&&(i||4===l.readyState))if(r=t,a&&(l.onreadystatechange=x.noop,$n&&delete Pn[a]),i)4!==l.readyState&&l.abort();else{p={},s=l.status,u=l.getAllResponseHeaders(),"string"==typeof l.responseText&&(p.text=l.responseText);try{c=l.statusText}catch(f){c=""}s||!n.isLocal||n.crossDomain?1223===s&&(s=204):s=p.text?200:404}}catch(d){i||o(-1,d)}p&&o(s,c,p,u)},n.async?4===l.readyState?setTimeout(r):(a=++Wn,$n&&(Pn||(Pn={},x(e).unload($n)),Pn[a]=r),l.onreadystatechange=r):r()},abort:function(){r&&r(t,!0)}}}});var Xn,Un,Vn=/^(?:toggle|show|hide)$/,Yn=RegExp("^(?:([+-])=|)("+w+")([a-z%]*)$","i"),Jn=/queueHooks$/,Gn=[nr],Qn={"*":[function(e,t){var n=this.createTween(e,t),r=n.cur(),i=Yn.exec(t),o=i&&i[3]||(x.cssNumber[e]?"":"px"),a=(x.cssNumber[e]||"px"!==o&&+r)&&Yn.exec(x.css(n.elem,e)),s=1,l=20;if(a&&a[3]!==o){o=o||a[3],i=i||[],a=+r||1;do s=s||".5",a/=s,x.style(n.elem,e,a+o);while(s!==(s=n.cur()/r)&&1!==s&&--l)}return i&&(a=n.start=+a||+r||0,n.unit=o,n.end=i[1]?a+(i[1]+1)*i[2]:+i[2]),n}]};function Kn(){return setTimeout(function(){Xn=t}),Xn=x.now()}function Zn(e,t,n){var r,i=(Qn[t]||[]).concat(Qn["*"]),o=0,a=i.length;for(;a>o;o++)if(r=i[o].call(n,t,e))return r}function er(e,t,n){var r,i,o=0,a=Gn.length,s=x.Deferred().always(function(){delete l.elem}),l=function(){if(i)return!1;var t=Xn||Kn(),n=Math.max(0,u.startTime+u.duration-t),r=n/u.duration||0,o=1-r,a=0,l=u.tweens.length;for(;l>a;a++)u.tweens[a].run(o);return s.notifyWith(e,[u,o,n]),1>o&&l?n:(s.resolveWith(e,[u]),!1)},u=s.promise({elem:e,props:x.extend({},t),opts:x.extend(!0,{specialEasing:{}},n),originalProperties:t,originalOptions:n,startTime:Xn||Kn(),duration:n.duration,tweens:[],createTween:function(t,n){var r=x.Tween(e,u.opts,t,n,u.opts.specialEasing[t]||u.opts.easing);return u.tweens.push(r),r},stop:function(t){var n=0,r=t?u.tweens.length:0;if(i)return this;for(i=!0;r>n;n++)u.tweens[n].run(1);return t?s.resolveWith(e,[u,t]):s.rejectWith(e,[u,t]),this}}),c=u.props;for(tr(c,u.opts.specialEasing);a>o;o++)if(r=Gn[o].call(u,e,c,u.opts))return r;return x.map(c,Zn,u),x.isFunction(u.opts.start)&&u.opts.start.call(e,u),x.fx.timer(x.extend(l,{elem:e,anim:u,queue:u.opts.queue})),u.progress(u.opts.progress).done(u.opts.done,u.opts.complete).fail(u.opts.fail).always(u.opts.always)}function tr(e,t){var n,r,i,o,a;for(n in e)if(r=x.camelCase(n),i=t[r],o=e[n],x.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),a=x.cssHooks[r],a&&"expand"in a){o=a.expand(o),delete e[r];for(n in o)n in e||(e[n]=o[n],t[n]=i)}else t[r]=i}x.Animation=x.extend(er,{tweener:function(e,t){x.isFunction(e)?(t=e,e=["*"]):e=e.split(" ");var n,r=0,i=e.length;for(;i>r;r++)n=e[r],Qn[n]=Qn[n]||[],Qn[n].unshift(t)},prefilter:function(e,t){t?Gn.unshift(e):Gn.push(e)}});function nr(e,t,n){var r,i,o,a,s,l,u=this,c={},p=e.style,f=e.nodeType&&nn(e),d=x._data(e,"fxshow");n.queue||(s=x._queueHooks(e,"fx"),null==s.unqueued&&(s.unqueued=0,l=s.empty.fire,s.empty.fire=function(){s.unqueued||l()}),s.unqueued++,u.always(function(){u.always(function(){s.unqueued--,x.queue(e,"fx").length||s.empty.fire()})})),1===e.nodeType&&("height"in t||"width"in t)&&(n.overflow=[p.overflow,p.overflowX,p.overflowY],"inline"===x.css(e,"display")&&"none"===x.css(e,"float")&&(x.support.inlineBlockNeedsLayout&&"inline"!==ln(e.nodeName)?p.zoom=1:p.display="inline-block")),n.overflow&&(p.overflow="hidden",x.support.shrinkWrapBlocks||u.always(function(){p.overflow=n.overflow[0],p.overflowX=n.overflow[1],p.overflowY=n.overflow[2]}));for(r in t)if(i=t[r],Vn.exec(i)){if(delete t[r],o=o||"toggle"===i,i===(f?"hide":"show"))continue;c[r]=d&&d[r]||x.style(e,r)}if(!x.isEmptyObject(c)){d?"hidden"in d&&(f=d.hidden):d=x._data(e,"fxshow",{}),o&&(d.hidden=!f),f?x(e).show():u.done(function(){x(e).hide()}),u.done(function(){var t;x._removeData(e,"fxshow");for(t in c)x.style(e,t,c[t])});for(r in c)a=Zn(f?d[r]:0,r,u),r in d||(d[r]=a.start,f&&(a.end=a.start,a.start="width"===r||"height"===r?1:0))}}function rr(e,t,n,r,i){return new rr.prototype.init(e,t,n,r,i)}x.Tween=rr,rr.prototype={constructor:rr,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||"swing",this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(x.cssNumber[n]?"":"px")},cur:function(){var e=rr.propHooks[this.prop];return e&&e.get?e.get(this):rr.propHooks._default.get(this)},run:function(e){var t,n=rr.propHooks[this.prop];return this.pos=t=this.options.duration?x.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):rr.propHooks._default.set(this),this}},rr.prototype.init.prototype=rr.prototype,rr.propHooks={_default:{get:function(e){var t;return null==e.elem[e.prop]||e.elem.style&&null!=e.elem.style[e.prop]?(t=x.css(e.elem,e.prop,""),t&&"auto"!==t?t:0):e.elem[e.prop]},set:function(e){x.fx.step[e.prop]?x.fx.step[e.prop](e):e.elem.style&&(null!=e.elem.style[x.cssProps[e.prop]]||x.cssHooks[e.prop])?x.style(e.elem,e.prop,e.now+e.unit):e.elem[e.prop]=e.now}}},rr.propHooks.scrollTop=rr.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},x.each(["toggle","show","hide"],function(e,t){var n=x.fn[t];x.fn[t]=function(e,r,i){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(ir(t,!0),e,r,i)}}),x.fn.extend({fadeTo:function(e,t,n,r){return this.filter(nn).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(e,t,n,r){var i=x.isEmptyObject(e),o=x.speed(t,n,r),a=function(){var t=er(this,x.extend({},e),o);(i||x._data(this,"finish"))&&t.stop(!0)};return a.finish=a,i||o.queue===!1?this.each(a):this.queue(o.queue,a)},stop:function(e,n,r){var i=function(e){var t=e.stop;delete e.stop,t(r)};return"string"!=typeof e&&(r=n,n=e,e=t),n&&e!==!1&&this.queue(e||"fx",[]),this.each(function(){var t=!0,n=null!=e&&e+"queueHooks",o=x.timers,a=x._data(this);if(n)a[n]&&a[n].stop&&i(a[n]);else for(n in a)a[n]&&a[n].stop&&Jn.test(n)&&i(a[n]);for(n=o.length;n--;)o[n].elem!==this||null!=e&&o[n].queue!==e||(o[n].anim.stop(r),t=!1,o.splice(n,1));(t||!r)&&x.dequeue(this,e)})},finish:function(e){return e!==!1&&(e=e||"fx"),this.each(function(){var t,n=x._data(this),r=n[e+"queue"],i=n[e+"queueHooks"],o=x.timers,a=r?r.length:0;for(n.finish=!0,x.queue(this,e,[]),i&&i.stop&&i.stop.call(this,!0),t=o.length;t--;)o[t].elem===this&&o[t].queue===e&&(o[t].anim.stop(!0),o.splice(t,1));for(t=0;a>t;t++)r[t]&&r[t].finish&&r[t].finish.call(this);delete n.finish})}});function ir(e,t){var n,r={height:e},i=0;for(t=t?1:0;4>i;i+=2-t)n=Zt[i],r["margin"+n]=r["padding"+n]=e;return t&&(r.opacity=r.width=e),r}x.each({slideDown:ir("show"),slideUp:ir("hide"),slideToggle:ir("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,t){x.fn[e]=function(e,n,r){return this.animate(t,e,n,r)}}),x.speed=function(e,t,n){var r=e&&"object"==typeof e?x.extend({},e):{complete:n||!n&&t||x.isFunction(e)&&e,duration:e,easing:n&&t||t&&!x.isFunction(t)&&t};return r.duration=x.fx.off?0:"number"==typeof r.duration?r.duration:r.duration in x.fx.speeds?x.fx.speeds[r.duration]:x.fx.speeds._default,(null==r.queue||r.queue===!0)&&(r.queue="fx"),r.old=r.complete,r.complete=function(){x.isFunction(r.old)&&r.old.call(this),r.queue&&x.dequeue(this,r.queue)},r},x.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2}},x.timers=[],x.fx=rr.prototype.init,x.fx.tick=function(){var e,n=x.timers,r=0;for(Xn=x.now();n.length>r;r++)e=n[r],e()||n[r]!==e||n.splice(r--,1);n.length||x.fx.stop(),Xn=t},x.fx.timer=function(e){e()&&x.timers.push(e)&&x.fx.start()},x.fx.interval=13,x.fx.start=function(){Un||(Un=setInterval(x.fx.tick,x.fx.interval))},x.fx.stop=function(){clearInterval(Un),Un=null},x.fx.speeds={slow:600,fast:200,_default:400},x.fx.step={},x.expr&&x.expr.filters&&(x.expr.filters.animated=function(e){return x.grep(x.timers,function(t){return e===t.elem}).length}),x.fn.offset=function(e){if(arguments.length)return e===t?this:this.each(function(t){x.offset.setOffset(this,e,t)});var n,r,o={top:0,left:0},a=this[0],s=a&&a.ownerDocument;if(s)return n=s.documentElement,x.contains(n,a)?(typeof a.getBoundingClientRect!==i&&(o=a.getBoundingClientRect()),r=or(s),{top:o.top+(r.pageYOffset||n.scrollTop)-(n.clientTop||0),left:o.left+(r.pageXOffset||n.scrollLeft)-(n.clientLeft||0)}):o},x.offset={setOffset:function(e,t,n){var r=x.css(e,"position");"static"===r&&(e.style.position="relative");var i=x(e),o=i.offset(),a=x.css(e,"top"),s=x.css(e,"left"),l=("absolute"===r||"fixed"===r)&&x.inArray("auto",[a,s])>-1,u={},c={},p,f;l?(c=i.position(),p=c.top,f=c.left):(p=parseFloat(a)||0,f=parseFloat(s)||0),x.isFunction(t)&&(t=t.call(e,n,o)),null!=t.top&&(u.top=t.top-o.top+p),null!=t.left&&(u.left=t.left-o.left+f),"using"in t?t.using.call(e,u):i.css(u)}},x.fn.extend({position:function(){if(this[0]){var e,t,n={top:0,left:0},r=this[0];return"fixed"===x.css(r,"position")?t=r.getBoundingClientRect():(e=this.offsetParent(),t=this.offset(),x.nodeName(e[0],"html")||(n=e.offset()),n.top+=x.css(e[0],"borderTopWidth",!0),n.left+=x.css(e[0],"borderLeftWidth",!0)),{top:t.top-n.top-x.css(r,"marginTop",!0),left:t.left-n.left-x.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent||s;while(e&&!x.nodeName(e,"html")&&"static"===x.css(e,"position"))e=e.offsetParent;return e||s})}}),x.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(e,n){var r=/Y/.test(n);x.fn[e]=function(i){return x.access(this,function(e,i,o){var a=or(e);return o===t?a?n in a?a[n]:a.document.documentElement[i]:e[i]:(a?a.scrollTo(r?x(a).scrollLeft():o,r?o:x(a).scrollTop()):e[i]=o,t)},e,i,arguments.length,null)}});function or(e){return x.isWindow(e)?e:9===e.nodeType?e.defaultView||e.parentWindow:!1}x.each({Height:"height",Width:"width"},function(e,n){x.each({padding:"inner"+e,content:n,"":"outer"+e},function(r,i){x.fn[i]=function(i,o){var a=arguments.length&&(r||"boolean"!=typeof i),s=r||(i===!0||o===!0?"margin":"border");return x.access(this,function(n,r,i){var o;return x.isWindow(n)?n.document.documentElement["client"+e]:9===n.nodeType?(o=n.documentElement,Math.max(n.body["scroll"+e],o["scroll"+e],n.body["offset"+e],o["offset"+e],o["client"+e])):i===t?x.css(n,r,s):x.style(n,r,i,s)},n,a?i:t,a,null)}})}),x.fn.size=function(){return this.length},x.fn.andSelf=x.fn.addBack,"object"==typeof module&&module&&"object"==typeof module.exports?module.exports=x:(e.jQuery=e.$=x,"function"==typeof define&&define.amd&&define("jquery",[],function(){return x}))})(window);Evidence HITSolution Validate that the response does not contain sensitive, personal or user-specific information. If it does, consider the use of the following HTTP response headers, to limit, or prevent the content being stored and retrieved from the cache by another user:
Cache-Control: no-cache, no-store, must-revalidate, private
Pragma: no-cache
Expires: 0
This configuration directs both HTTP 1.0 and HTTP 1.1 compliant caching servers to not store the response, and to not retrieve the response (without validation) from the cache, in response to a similar request.
-
Tech Detected - Nginx (1)
GET http://code.jquery.com/jquery-1.10.2.min.js
Alert tags Alert description The following "Web servers, Reverse proxies" technology was identified: Nginx.
Described as:
Nginx is a web server that can also be used as a reverse proxy, load balancer, mail proxy and HTTP cache.
Other info The following CPE is associated with the identified tech: cpe:2.3:a:f5:nginx:*:*:*:*:*:*:*:*
Request Request line and header section (291 bytes)
GET http://code.jquery.com/jquery-1.10.2.min.js HTTP/1.1 host: code.jquery.com User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:136.0) Gecko/20100101 Firefox/136.0 Accept: */* Accept-Language: en-CA,en-US;q=0.7,en;q=0.3 Connection: keep-alive Referer: http://localhost/Request body (0 bytes)
Response Status line and header section (613 bytes)
HTTP/1.1 200 OK Connection: keep-alive Content-Length: 93107 Server: nginx Content-Type: application/javascript; charset=utf-8 Last-Modified: Fri, 18 Oct 1991 12:00:00 GMT ETag: "28feccc0-16bb3" Cache-Control: public, max-age=31536000, stale-while-revalidate=604800 Access-Control-Allow-Origin: * Cross-Origin-Resource-Policy: cross-origin Via: 1.1 varnish, 1.1 varnish Accept-Ranges: bytes Age: 1575604 Date: Sat, 19 Apr 2025 15:20:32 GMT X-Served-By: cache-lga21955-LGA, cache-yul1970064-YUL X-Cache: HIT, HIT X-Cache-Hits: 3555, 0 X-Timer: S1745076032.218693,VS0,VE1 Vary: Accept-EncodingResponse body (93107 bytes)
/*! jQuery v1.10.2 | (c) 2005, 2013 jQuery Foundation, Inc. | jquery.org/license //@ sourceMappingURL=jquery-1.10.2.min.map */ (function(e,t){var n,r,i=typeof t,o=e.location,a=e.document,s=a.documentElement,l=e.jQuery,u=e.$,c={},p=[],f="1.10.2",d=p.concat,h=p.push,g=p.slice,m=p.indexOf,y=c.toString,v=c.hasOwnProperty,b=f.trim,x=function(e,t){return new x.fn.init(e,t,r)},w=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,T=/\S+/g,C=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,N=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,k=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,E=/^[\],:{}\s]*$/,S=/(?:^|:|,)(?:\s*\[)+/g,A=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,j=/"[^"\\\r\n]*"|true|false|null|-?(?:\d+\.|)\d+(?:[eE][+-]?\d+|)/g,D=/^-ms-/,L=/-([\da-z])/gi,H=function(e,t){return t.toUpperCase()},q=function(e){(a.addEventListener||"load"===e.type||"complete"===a.readyState)&&(_(),x.ready())},_=function(){a.addEventListener?(a.removeEventListener("DOMContentLoaded",q,!1),e.removeEventListener("load",q,!1)):(a.detachEvent("onreadystatechange",q),e.detachEvent("onload",q))};x.fn=x.prototype={jquery:f,constructor:x,init:function(e,n,r){var i,o;if(!e)return this;if("string"==typeof e){if(i="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&e.length>=3?[null,e,null]:N.exec(e),!i||!i[1]&&n)return!n||n.jquery?(n||r).find(e):this.constructor(n).find(e);if(i[1]){if(n=n instanceof x?n[0]:n,x.merge(this,x.parseHTML(i[1],n&&n.nodeType?n.ownerDocument||n:a,!0)),k.test(i[1])&&x.isPlainObject(n))for(i in n)x.isFunction(this[i])?this[i](n[i]):this.attr(i,n[i]);return this}if(o=a.getElementById(i[2]),o&&o.parentNode){if(o.id!==i[2])return r.find(e);this.length=1,this[0]=o}return this.context=a,this.selector=e,this}return e.nodeType?(this.context=this[0]=e,this.length=1,this):x.isFunction(e)?r.ready(e):(e.selector!==t&&(this.selector=e.selector,this.context=e.context),x.makeArray(e,this))},selector:"",length:0,toArray:function(){return g.call(this)},get:function(e){return null==e?this.toArray():0>e?this[this.length+e]:this[e]},pushStack:function(e){var t=x.merge(this.constructor(),e);return t.prevObject=this,t.context=this.context,t},each:function(e,t){return x.each(this,e,t)},ready:function(e){return x.ready.promise().done(e),this},slice:function(){return this.pushStack(g.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(0>e?t:0);return this.pushStack(n>=0&&t>n?[this[n]]:[])},map:function(e){return this.pushStack(x.map(this,function(t,n){return e.call(t,n,t)}))},end:function(){return this.prevObject||this.constructor(null)},push:h,sort:[].sort,splice:[].splice},x.fn.init.prototype=x.fn,x.extend=x.fn.extend=function(){var e,n,r,i,o,a,s=arguments[0]||{},l=1,u=arguments.length,c=!1;for("boolean"==typeof s&&(c=s,s=arguments[1]||{},l=2),"object"==typeof s||x.isFunction(s)||(s={}),u===l&&(s=this,--l);u>l;l++)if(null!=(o=arguments[l]))for(i in o)e=s[i],r=o[i],s!==r&&(c&&r&&(x.isPlainObject(r)||(n=x.isArray(r)))?(n?(n=!1,a=e&&x.isArray(e)?e:[]):a=e&&x.isPlainObject(e)?e:{},s[i]=x.extend(c,a,r)):r!==t&&(s[i]=r));return s},x.extend({expando:"jQuery"+(f+Math.random()).replace(/\D/g,""),noConflict:function(t){return e.$===x&&(e.$=u),t&&e.jQuery===x&&(e.jQuery=l),x},isReady:!1,readyWait:1,holdReady:function(e){e?x.readyWait++:x.ready(!0)},ready:function(e){if(e===!0?!--x.readyWait:!x.isReady){if(!a.body)return setTimeout(x.ready);x.isReady=!0,e!==!0&&--x.readyWait>0||(n.resolveWith(a,[x]),x.fn.trigger&&x(a).trigger("ready").off("ready"))}},isFunction:function(e){return"function"===x.type(e)},isArray:Array.isArray||function(e){return"array"===x.type(e)},isWindow:function(e){return null!=e&&e==e.window},isNumeric:function(e){return!isNaN(parseFloat(e))&&isFinite(e)},type:function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?c[y.call(e)]||"object":typeof e},isPlainObject:function(e){var n;if(!e||"object"!==x.type(e)||e.nodeType||x.isWindow(e))return!1;try{if(e.constructor&&!v.call(e,"constructor")&&!v.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(r){return!1}if(x.support.ownLast)for(n in e)return v.call(e,n);for(n in e);return n===t||v.call(e,n)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},error:function(e){throw Error(e)},parseHTML:function(e,t,n){if(!e||"string"!=typeof e)return null;"boolean"==typeof t&&(n=t,t=!1),t=t||a;var r=k.exec(e),i=!n&&[];return r?[t.createElement(r[1])]:(r=x.buildFragment([e],t,i),i&&x(i).remove(),x.merge([],r.childNodes))},parseJSON:function(n){return e.JSON&&e.JSON.parse?e.JSON.parse(n):null===n?n:"string"==typeof n&&(n=x.trim(n),n&&E.test(n.replace(A,"@").replace(j,"]").replace(S,"")))?Function("return "+n)():(x.error("Invalid JSON: "+n),t)},parseXML:function(n){var r,i;if(!n||"string"!=typeof n)return null;try{e.DOMParser?(i=new DOMParser,r=i.parseFromString(n,"text/xml")):(r=new ActiveXObject("Microsoft.XMLDOM"),r.async="false",r.loadXML(n))}catch(o){r=t}return r&&r.documentElement&&!r.getElementsByTagName("parsererror").length||x.error("Invalid XML: "+n),r},noop:function(){},globalEval:function(t){t&&x.trim(t)&&(e.execScript||function(t){e.eval.call(e,t)})(t)},camelCase:function(e){return e.replace(D,"ms-").replace(L,H)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t,n){var r,i=0,o=e.length,a=M(e);if(n){if(a){for(;o>i;i++)if(r=t.apply(e[i],n),r===!1)break}else for(i in e)if(r=t.apply(e[i],n),r===!1)break}else if(a){for(;o>i;i++)if(r=t.call(e[i],i,e[i]),r===!1)break}else for(i in e)if(r=t.call(e[i],i,e[i]),r===!1)break;return e},trim:b&&!b.call("\ufeff\u00a0")?function(e){return null==e?"":b.call(e)}:function(e){return null==e?"":(e+"").replace(C,"")},makeArray:function(e,t){var n=t||[];return null!=e&&(M(Object(e))?x.merge(n,"string"==typeof e?[e]:e):h.call(n,e)),n},inArray:function(e,t,n){var r;if(t){if(m)return m.call(t,e,n);for(r=t.length,n=n?0>n?Math.max(0,r+n):n:0;r>n;n++)if(n in t&&t[n]===e)return n}return-1},merge:function(e,n){var r=n.length,i=e.length,o=0;if("number"==typeof r)for(;r>o;o++)e[i++]=n[o];else while(n[o]!==t)e[i++]=n[o++];return e.length=i,e},grep:function(e,t,n){var r,i=[],o=0,a=e.length;for(n=!!n;a>o;o++)r=!!t(e[o],o),n!==r&&i.push(e[o]);return i},map:function(e,t,n){var r,i=0,o=e.length,a=M(e),s=[];if(a)for(;o>i;i++)r=t(e[i],i,n),null!=r&&(s[s.length]=r);else for(i in e)r=t(e[i],i,n),null!=r&&(s[s.length]=r);return d.apply([],s)},guid:1,proxy:function(e,n){var r,i,o;return"string"==typeof n&&(o=e[n],n=e,e=o),x.isFunction(e)?(r=g.call(arguments,2),i=function(){return e.apply(n||this,r.concat(g.call(arguments)))},i.guid=e.guid=e.guid||x.guid++,i):t},access:function(e,n,r,i,o,a,s){var l=0,u=e.length,c=null==r;if("object"===x.type(r)){o=!0;for(l in r)x.access(e,n,l,r[l],!0,a,s)}else if(i!==t&&(o=!0,x.isFunction(i)||(s=!0),c&&(s?(n.call(e,i),n=null):(c=n,n=function(e,t,n){return c.call(x(e),n)})),n))for(;u>l;l++)n(e[l],r,s?i:i.call(e[l],l,n(e[l],r)));return o?e:c?n.call(e):u?n(e[0],r):a},now:function(){return(new Date).getTime()},swap:function(e,t,n,r){var i,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=t[o];i=n.apply(e,r||[]);for(o in t)e.style[o]=a[o];return i}}),x.ready.promise=function(t){if(!n)if(n=x.Deferred(),"complete"===a.readyState)setTimeout(x.ready);else if(a.addEventListener)a.addEventListener("DOMContentLoaded",q,!1),e.addEventListener("load",q,!1);else{a.attachEvent("onreadystatechange",q),e.attachEvent("onload",q);var r=!1;try{r=null==e.frameElement&&a.documentElement}catch(i){}r&&r.doScroll&&function o(){if(!x.isReady){try{r.doScroll("left")}catch(e){return setTimeout(o,50)}_(),x.ready()}}()}return n.promise(t)},x.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(e,t){c["[object "+t+"]"]=t.toLowerCase()});function M(e){var t=e.length,n=x.type(e);return x.isWindow(e)?!1:1===e.nodeType&&t?!0:"array"===n||"function"!==n&&(0===t||"number"==typeof t&&t>0&&t-1 in e)}r=x(a),function(e,t){var n,r,i,o,a,s,l,u,c,p,f,d,h,g,m,y,v,b="sizzle"+-new Date,w=e.document,T=0,C=0,N=st(),k=st(),E=st(),S=!1,A=function(e,t){return e===t?(S=!0,0):0},j=typeof t,D=1<<31,L={}.hasOwnProperty,H=[],q=H.pop,_=H.push,M=H.push,O=H.slice,F=H.indexOf||function(e){var t=0,n=this.length;for(;n>t;t++)if(this[t]===e)return t;return-1},B="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",P="[\\x20\\t\\r\\n\\f]",R="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",W=R.replace("w","w#"),$="\\["+P+"*("+R+")"+P+"*(?:([*^$|!~]?=)"+P+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+W+")|)|)"+P+"*\\]",I=":("+R+")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|"+$.replace(3,8)+")*)|.*)\\)|)",z=RegExp("^"+P+"+|((?:^|[^\\\\])(?:\\\\.)*)"+P+"+$","g"),X=RegExp("^"+P+"*,"+P+"*"),U=RegExp("^"+P+"*([>+~]|"+P+")"+P+"*"),V=RegExp(P+"*[+~]"),Y=RegExp("="+P+"*([^\\]'\"]*)"+P+"*\\]","g"),J=RegExp(I),G=RegExp("^"+W+"$"),Q={ID:RegExp("^#("+R+")"),CLASS:RegExp("^\\.("+R+")"),TAG:RegExp("^("+R.replace("w","w*")+")"),ATTR:RegExp("^"+$),PSEUDO:RegExp("^"+I),CHILD:RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+P+"*(even|odd|(([+-]|)(\\d*)n|)"+P+"*(?:([+-]|)"+P+"*(\\d+)|))"+P+"*\\)|)","i"),bool:RegExp("^(?:"+B+")$","i"),needsContext:RegExp("^"+P+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+P+"*((?:-\\d)?\\d*)"+P+"*\\)|)(?=[^-]|$)","i")},K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,et=/^(?:input|select|textarea|button)$/i,tt=/^h\d$/i,nt=/'|\\/g,rt=RegExp("\\\\([\\da-f]{1,6}"+P+"?|("+P+")|.)","ig"),it=function(e,t,n){var r="0x"+t-65536;return r!==r||n?t:0>r?String.fromCharCode(r+65536):String.fromCharCode(55296|r>>10,56320|1023&r)};try{M.apply(H=O.call(w.childNodes),w.childNodes),H[w.childNodes.length].nodeType}catch(ot){M={apply:H.length?function(e,t){_.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function at(e,t,n,i){var o,a,s,l,u,c,d,m,y,x;if((t?t.ownerDocument||t:w)!==f&&p(t),t=t||f,n=n||[],!e||"string"!=typeof e)return n;if(1!==(l=t.nodeType)&&9!==l)return[];if(h&&!i){if(o=Z.exec(e))if(s=o[1]){if(9===l){if(a=t.getElementById(s),!a||!a.parentNode)return n;if(a.id===s)return n.push(a),n}else if(t.ownerDocument&&(a=t.ownerDocument.getElementById(s))&&v(t,a)&&a.id===s)return n.push(a),n}else{if(o[2])return M.apply(n,t.getElementsByTagName(e)),n;if((s=o[3])&&r.getElementsByClassName&&t.getElementsByClassName)return M.apply(n,t.getElementsByClassName(s)),n}if(r.qsa&&(!g||!g.test(e))){if(m=d=b,y=t,x=9===l&&e,1===l&&"object"!==t.nodeName.toLowerCase()){c=mt(e),(d=t.getAttribute("id"))?m=d.replace(nt,"\\$&"):t.setAttribute("id",m),m="[id='"+m+"'] ",u=c.length;while(u--)c[u]=m+yt(c[u]);y=V.test(e)&&t.parentNode||t,x=c.join(",")}if(x)try{return M.apply(n,y.querySelectorAll(x)),n}catch(T){}finally{d||t.removeAttribute("id")}}}return kt(e.replace(z,"$1"),t,n,i)}function st(){var e=[];function t(n,r){return e.push(n+=" ")>o.cacheLength&&delete t[e.shift()],t[n]=r}return t}function lt(e){return e[b]=!0,e}function ut(e){var t=f.createElement("div");try{return!!e(t)}catch(n){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function ct(e,t){var n=e.split("|"),r=e.length;while(r--)o.attrHandle[n[r]]=t}function pt(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&(~t.sourceIndex||D)-(~e.sourceIndex||D);if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function ft(e){return function(t){var n=t.nodeName.toLowerCase();return"input"===n&&t.type===e}}function dt(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function ht(e){return lt(function(t){return t=+t,lt(function(n,r){var i,o=e([],n.length,t),a=o.length;while(a--)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}s=at.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return t?"HTML"!==t.nodeName:!1},r=at.support={},p=at.setDocument=function(e){var n=e?e.ownerDocument||e:w,i=n.defaultView;return n!==f&&9===n.nodeType&&n.documentElement?(f=n,d=n.documentElement,h=!s(n),i&&i.attachEvent&&i!==i.top&&i.attachEvent("onbeforeunload",function(){p()}),r.attributes=ut(function(e){return e.className="i",!e.getAttribute("className")}),r.getElementsByTagName=ut(function(e){return e.appendChild(n.createComment("")),!e.getElementsByTagName("*").length}),r.getElementsByClassName=ut(function(e){return e.innerHTML="<div class='a'></div><div class='a i'></div>",e.firstChild.className="i",2===e.getElementsByClassName("i").length}),r.getById=ut(function(e){return d.appendChild(e).id=b,!n.getElementsByName||!n.getElementsByName(b).length}),r.getById?(o.find.ID=function(e,t){if(typeof t.getElementById!==j&&h){var n=t.getElementById(e);return n&&n.parentNode?[n]:[]}},o.filter.ID=function(e){var t=e.replace(rt,it);return function(e){return e.getAttribute("id")===t}}):(delete o.find.ID,o.filter.ID=function(e){var t=e.replace(rt,it);return function(e){var n=typeof e.getAttributeNode!==j&&e.getAttributeNode("id");return n&&n.value===t}}),o.find.TAG=r.getElementsByTagName?function(e,n){return typeof n.getElementsByTagName!==j?n.getElementsByTagName(e):t}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},o.find.CLASS=r.getElementsByClassName&&function(e,n){return typeof n.getElementsByClassName!==j&&h?n.getElementsByClassName(e):t},m=[],g=[],(r.qsa=K.test(n.querySelectorAll))&&(ut(function(e){e.innerHTML="<select><option selected=''></option></select>",e.querySelectorAll("[selected]").length||g.push("\\["+P+"*(?:value|"+B+")"),e.querySelectorAll(":checked").length||g.push(":checked")}),ut(function(e){var t=n.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("t",""),e.querySelectorAll("[t^='']").length&&g.push("[*^$]="+P+"*(?:''|\"\")"),e.querySelectorAll(":enabled").length||g.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),g.push(",.*:")})),(r.matchesSelector=K.test(y=d.webkitMatchesSelector||d.mozMatchesSelector||d.oMatchesSelector||d.msMatchesSelector))&&ut(function(e){r.disconnectedMatch=y.call(e,"div"),y.call(e,"[s!='']:x"),m.push("!=",I)}),g=g.length&&RegExp(g.join("|")),m=m.length&&RegExp(m.join("|")),v=K.test(d.contains)||d.compareDocumentPosition?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},A=d.compareDocumentPosition?function(e,t){if(e===t)return S=!0,0;var i=t.compareDocumentPosition&&e.compareDocumentPosition&&e.compareDocumentPosition(t);return i?1&i||!r.sortDetached&&t.compareDocumentPosition(e)===i?e===n||v(w,e)?-1:t===n||v(w,t)?1:c?F.call(c,e)-F.call(c,t):0:4&i?-1:1:e.compareDocumentPosition?-1:1}:function(e,t){var r,i=0,o=e.parentNode,a=t.parentNode,s=[e],l=[t];if(e===t)return S=!0,0;if(!o||!a)return e===n?-1:t===n?1:o?-1:a?1:c?F.call(c,e)-F.call(c,t):0;if(o===a)return pt(e,t);r=e;while(r=r.parentNode)s.unshift(r);r=t;while(r=r.parentNode)l.unshift(r);while(s[i]===l[i])i++;return i?pt(s[i],l[i]):s[i]===w?-1:l[i]===w?1:0},n):f},at.matches=function(e,t){return at(e,null,null,t)},at.matchesSelector=function(e,t){if((e.ownerDocument||e)!==f&&p(e),t=t.replace(Y,"='$1']"),!(!r.matchesSelector||!h||m&&m.test(t)||g&&g.test(t)))try{var n=y.call(e,t);if(n||r.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(i){}return at(t,f,null,[e]).length>0},at.contains=function(e,t){return(e.ownerDocument||e)!==f&&p(e),v(e,t)},at.attr=function(e,n){(e.ownerDocument||e)!==f&&p(e);var i=o.attrHandle[n.toLowerCase()],a=i&&L.call(o.attrHandle,n.toLowerCase())?i(e,n,!h):t;return a===t?r.attributes||!h?e.getAttribute(n):(a=e.getAttributeNode(n))&&a.specified?a.value:null:a},at.error=function(e){throw Error("Syntax error, unrecognized expression: "+e)},at.uniqueSort=function(e){var t,n=[],i=0,o=0;if(S=!r.detectDuplicates,c=!r.sortStable&&e.slice(0),e.sort(A),S){while(t=e[o++])t===e[o]&&(i=n.push(o));while(i--)e.splice(n[i],1)}return e},a=at.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=a(e)}else if(3===i||4===i)return e.nodeValue}else for(;t=e[r];r++)n+=a(t);return n},o=at.selectors={cacheLength:50,createPseudo:lt,match:Q,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(rt,it),e[3]=(e[4]||e[5]||"").replace(rt,it),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||at.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&at.error(e[0]),e},PSEUDO:function(e){var n,r=!e[5]&&e[2];return Q.CHILD.test(e[0])?null:(e[3]&&e[4]!==t?e[2]=e[4]:r&&J.test(r)&&(n=mt(r,!0))&&(n=r.indexOf(")",r.length-n)-r.length)&&(e[0]=e[0].slice(0,n),e[2]=r.slice(0,n)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(rt,it).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=N[e+" "];return t||(t=RegExp("(^|"+P+")"+e+"("+P+"|$)"))&&N(e,function(e){return t.test("string"==typeof e.className&&e.className||typeof e.getAttribute!==j&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=at.attr(r,e);return null==i?"!="===t:t?(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i+" ").indexOf(n)>-1:"|="===t?i===n||i.slice(0,n.length+1)===n+"-":!1):!0}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,l){var u,c,p,f,d,h,g=o!==a?"nextSibling":"previousSibling",m=t.parentNode,y=s&&t.nodeName.toLowerCase(),v=!l&&!s;if(m){if(o){while(g){p=t;while(p=p[g])if(s?p.nodeName.toLowerCase()===y:1===p.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?m.firstChild:m.lastChild],a&&v){c=m[b]||(m[b]={}),u=c[e]||[],d=u[0]===T&&u[1],f=u[0]===T&&u[2],p=d&&m.childNodes[d];while(p=++d&&p&&p[g]||(f=d=0)||h.pop())if(1===p.nodeType&&++f&&p===t){c[e]=[T,d,f];break}}else if(v&&(u=(t[b]||(t[b]={}))[e])&&u[0]===T)f=u[1];else while(p=++d&&p&&p[g]||(f=d=0)||h.pop())if((s?p.nodeName.toLowerCase()===y:1===p.nodeType)&&++f&&(v&&((p[b]||(p[b]={}))[e]=[T,f]),p===t))break;return f-=i,f===r||0===f%r&&f/r>=0}}},PSEUDO:function(e,t){var n,r=o.pseudos[e]||o.setFilters[e.toLowerCase()]||at.error("unsupported pseudo: "+e);return r[b]?r(t):r.length>1?(n=[e,e,"",t],o.setFilters.hasOwnProperty(e.toLowerCase())?lt(function(e,n){var i,o=r(e,t),a=o.length;while(a--)i=F.call(e,o[a]),e[i]=!(n[i]=o[a])}):function(e){return r(e,0,n)}):r}},pseudos:{not:lt(function(e){var t=[],n=[],r=l(e.replace(z,"$1"));return r[b]?lt(function(e,t,n,i){var o,a=r(e,null,i,[]),s=e.length;while(s--)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),!n.pop()}}),has:lt(function(e){return function(t){return at(e,t).length>0}}),contains:lt(function(e){return function(t){return(t.textContent||t.innerText||a(t)).indexOf(e)>-1}}),lang:lt(function(e){return G.test(e||"")||at.error("unsupported lang: "+e),e=e.replace(rt,it).toLowerCase(),function(t){var n;do if(n=h?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return n=n.toLowerCase(),n===e||0===n.indexOf(e+"-");while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===d},focus:function(e){return e===f.activeElement&&(!f.hasFocus||f.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:function(e){return e.disabled===!1},disabled:function(e){return e.disabled===!0},checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeName>"@"||3===e.nodeType||4===e.nodeType)return!1;return!0},parent:function(e){return!o.pseudos.empty(e)},header:function(e){return tt.test(e.nodeName)},input:function(e){return et.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||t.toLowerCase()===e.type)},first:ht(function(){return[0]}),last:ht(function(e,t){return[t-1]}),eq:ht(function(e,t,n){return[0>n?n+t:n]}),even:ht(function(e,t){var n=0;for(;t>n;n+=2)e.push(n);return e}),odd:ht(function(e,t){var n=1;for(;t>n;n+=2)e.push(n);return e}),lt:ht(function(e,t,n){var r=0>n?n+t:n;for(;--r>=0;)e.push(r);return e}),gt:ht(function(e,t,n){var r=0>n?n+t:n;for(;t>++r;)e.push(r);return e})}},o.pseudos.nth=o.pseudos.eq;for(n in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})o.pseudos[n]=ft(n);for(n in{submit:!0,reset:!0})o.pseudos[n]=dt(n);function gt(){}gt.prototype=o.filters=o.pseudos,o.setFilters=new gt;function mt(e,t){var n,r,i,a,s,l,u,c=k[e+" "];if(c)return t?0:c.slice(0);s=e,l=[],u=o.preFilter;while(s){(!n||(r=X.exec(s)))&&(r&&(s=s.slice(r[0].length)||s),l.push(i=[])),n=!1,(r=U.exec(s))&&(n=r.shift(),i.push({value:n,type:r[0].replace(z," ")}),s=s.slice(n.length));for(a in o.filter)!(r=Q[a].exec(s))||u[a]&&!(r=u[a](r))||(n=r.shift(),i.push({value:n,type:a,matches:r}),s=s.slice(n.length));if(!n)break}return t?s.length:s?at.error(e):k(e,l).slice(0)}function yt(e){var t=0,n=e.length,r="";for(;n>t;t++)r+=e[t].value;return r}function vt(e,t,n){var r=t.dir,o=n&&"parentNode"===r,a=C++;return t.first?function(t,n,i){while(t=t[r])if(1===t.nodeType||o)return e(t,n,i)}:function(t,n,s){var l,u,c,p=T+" "+a;if(s){while(t=t[r])if((1===t.nodeType||o)&&e(t,n,s))return!0}else while(t=t[r])if(1===t.nodeType||o)if(c=t[b]||(t[b]={}),(u=c[r])&&u[0]===p){if((l=u[1])===!0||l===i)return l===!0}else if(u=c[r]=[p],u[1]=e(t,n,s)||i,u[1]===!0)return!0}}function bt(e){return e.length>1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function xt(e,t,n,r,i){var o,a=[],s=0,l=e.length,u=null!=t;for(;l>s;s++)(o=e[s])&&(!n||n(o,r,i))&&(a.push(o),u&&t.push(s));return a}function wt(e,t,n,r,i,o){return r&&!r[b]&&(r=wt(r)),i&&!i[b]&&(i=wt(i,o)),lt(function(o,a,s,l){var u,c,p,f=[],d=[],h=a.length,g=o||Nt(t||"*",s.nodeType?[s]:s,[]),m=!e||!o&&t?g:xt(g,f,e,s,l),y=n?i||(o?e:h||r)?[]:a:m;if(n&&n(m,y,s,l),r){u=xt(y,d),r(u,[],s,l),c=u.length;while(c--)(p=u[c])&&(y[d[c]]=!(m[d[c]]=p))}if(o){if(i||e){if(i){u=[],c=y.length;while(c--)(p=y[c])&&u.push(m[c]=p);i(null,y=[],u,l)}c=y.length;while(c--)(p=y[c])&&(u=i?F.call(o,p):f[c])>-1&&(o[u]=!(a[u]=p))}}else y=xt(y===a?y.splice(h,y.length):y),i?i(null,a,y,l):M.apply(a,y)})}function Tt(e){var t,n,r,i=e.length,a=o.relative[e[0].type],s=a||o.relative[" "],l=a?1:0,c=vt(function(e){return e===t},s,!0),p=vt(function(e){return F.call(t,e)>-1},s,!0),f=[function(e,n,r){return!a&&(r||n!==u)||((t=n).nodeType?c(e,n,r):p(e,n,r))}];for(;i>l;l++)if(n=o.relative[e[l].type])f=[vt(bt(f),n)];else{if(n=o.filter[e[l].type].apply(null,e[l].matches),n[b]){for(r=++l;i>r;r++)if(o.relative[e[r].type])break;return wt(l>1&&bt(f),l>1&&yt(e.slice(0,l-1).concat({value:" "===e[l-2].type?"*":""})).replace(z,"$1"),n,r>l&&Tt(e.slice(l,r)),i>r&&Tt(e=e.slice(r)),i>r&&yt(e))}f.push(n)}return bt(f)}function Ct(e,t){var n=0,r=t.length>0,a=e.length>0,s=function(s,l,c,p,d){var h,g,m,y=[],v=0,b="0",x=s&&[],w=null!=d,C=u,N=s||a&&o.find.TAG("*",d&&l.parentNode||l),k=T+=null==C?1:Math.random()||.1;for(w&&(u=l!==f&&l,i=n);null!=(h=N[b]);b++){if(a&&h){g=0;while(m=e[g++])if(m(h,l,c)){p.push(h);break}w&&(T=k,i=++n)}r&&((h=!m&&h)&&v--,s&&x.push(h))}if(v+=b,r&&b!==v){g=0;while(m=t[g++])m(x,y,l,c);if(s){if(v>0)while(b--)x[b]||y[b]||(y[b]=q.call(p));y=xt(y)}M.apply(p,y),w&&!s&&y.length>0&&v+t.length>1&&at.uniqueSort(p)}return w&&(T=k,u=C),x};return r?lt(s):s}l=at.compile=function(e,t){var n,r=[],i=[],o=E[e+" "];if(!o){t||(t=mt(e)),n=t.length;while(n--)o=Tt(t[n]),o[b]?r.push(o):i.push(o);o=E(e,Ct(i,r))}return o};function Nt(e,t,n){var r=0,i=t.length;for(;i>r;r++)at(e,t[r],n);return n}function kt(e,t,n,i){var a,s,u,c,p,f=mt(e);if(!i&&1===f.length){if(s=f[0]=f[0].slice(0),s.length>2&&"ID"===(u=s[0]).type&&r.getById&&9===t.nodeType&&h&&o.relative[s[1].type]){if(t=(o.find.ID(u.matches[0].replace(rt,it),t)||[])[0],!t)return n;e=e.slice(s.shift().value.length)}a=Q.needsContext.test(e)?0:s.length;while(a--){if(u=s[a],o.relative[c=u.type])break;if((p=o.find[c])&&(i=p(u.matches[0].replace(rt,it),V.test(s[0].type)&&t.parentNode||t))){if(s.splice(a,1),e=i.length&&yt(s),!e)return M.apply(n,i),n;break}}}return l(e,f)(i,t,!h,n,V.test(e)),n}r.sortStable=b.split("").sort(A).join("")===b,r.detectDuplicates=S,p(),r.sortDetached=ut(function(e){return 1&e.compareDocumentPosition(f.createElement("div"))}),ut(function(e){return e.innerHTML="<a href='#'></a>","#"===e.firstChild.getAttribute("href")})||ct("type|href|height|width",function(e,n,r){return r?t:e.getAttribute(n,"type"===n.toLowerCase()?1:2)}),r.attributes&&ut(function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||ct("value",function(e,n,r){return r||"input"!==e.nodeName.toLowerCase()?t:e.defaultValue}),ut(function(e){return null==e.getAttribute("disabled")})||ct(B,function(e,n,r){var i;return r?t:(i=e.getAttributeNode(n))&&i.specified?i.value:e[n]===!0?n.toLowerCase():null}),x.find=at,x.expr=at.selectors,x.expr[":"]=x.expr.pseudos,x.unique=at.uniqueSort,x.text=at.getText,x.isXMLDoc=at.isXML,x.contains=at.contains}(e);var O={};function F(e){var t=O[e]={};return x.each(e.match(T)||[],function(e,n){t[n]=!0}),t}x.Callbacks=function(e){e="string"==typeof e?O[e]||F(e):x.extend({},e);var n,r,i,o,a,s,l=[],u=!e.once&&[],c=function(t){for(r=e.memory&&t,i=!0,a=s||0,s=0,o=l.length,n=!0;l&&o>a;a++)if(l[a].apply(t[0],t[1])===!1&&e.stopOnFalse){r=!1;break}n=!1,l&&(u?u.length&&c(u.shift()):r?l=[]:p.disable())},p={add:function(){if(l){var t=l.length;(function i(t){x.each(t,function(t,n){var r=x.type(n);"function"===r?e.unique&&p.has(n)||l.push(n):n&&n.length&&"string"!==r&&i(n)})})(arguments),n?o=l.length:r&&(s=t,c(r))}return this},remove:function(){return l&&x.each(arguments,function(e,t){var r;while((r=x.inArray(t,l,r))>-1)l.splice(r,1),n&&(o>=r&&o--,a>=r&&a--)}),this},has:function(e){return e?x.inArray(e,l)>-1:!(!l||!l.length)},empty:function(){return l=[],o=0,this},disable:function(){return l=u=r=t,this},disabled:function(){return!l},lock:function(){return u=t,r||p.disable(),this},locked:function(){return!u},fireWith:function(e,t){return!l||i&&!u||(t=t||[],t=[e,t.slice?t.slice():t],n?u.push(t):c(t)),this},fire:function(){return p.fireWith(this,arguments),this},fired:function(){return!!i}};return p},x.extend({Deferred:function(e){var t=[["resolve","done",x.Callbacks("once memory"),"resolved"],["reject","fail",x.Callbacks("once memory"),"rejected"],["notify","progress",x.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return x.Deferred(function(n){x.each(t,function(t,o){var a=o[0],s=x.isFunction(e[t])&&e[t];i[o[1]](function(){var e=s&&s.apply(this,arguments);e&&x.isFunction(e.promise)?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[a+"With"](this===r?n.promise():this,s?[e]:arguments)})}),e=null}).promise()},promise:function(e){return null!=e?x.extend(e,r):r}},i={};return r.pipe=r.then,x.each(t,function(e,o){var a=o[2],s=o[3];r[o[1]]=a.add,s&&a.add(function(){n=s},t[1^e][2].disable,t[2][2].lock),i[o[0]]=function(){return i[o[0]+"With"](this===i?r:this,arguments),this},i[o[0]+"With"]=a.fireWith}),r.promise(i),e&&e.call(i,i),i},when:function(e){var t=0,n=g.call(arguments),r=n.length,i=1!==r||e&&x.isFunction(e.promise)?r:0,o=1===i?e:x.Deferred(),a=function(e,t,n){return function(r){t[e]=this,n[e]=arguments.length>1?g.call(arguments):r,n===s?o.notifyWith(t,n):--i||o.resolveWith(t,n)}},s,l,u;if(r>1)for(s=Array(r),l=Array(r),u=Array(r);r>t;t++)n[t]&&x.isFunction(n[t].promise)?n[t].promise().done(a(t,u,n)).fail(o.reject).progress(a(t,l,s)):--i;return i||o.resolveWith(u,n),o.promise()}}),x.support=function(t){var n,r,o,s,l,u,c,p,f,d=a.createElement("div");if(d.setAttribute("className","t"),d.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",n=d.getElementsByTagName("*")||[],r=d.getElementsByTagName("a")[0],!r||!r.style||!n.length)return t;s=a.createElement("select"),u=s.appendChild(a.createElement("option")),o=d.getElementsByTagName("input")[0],r.style.cssText="top:1px;float:left;opacity:.5",t.getSetAttribute="t"!==d.className,t.leadingWhitespace=3===d.firstChild.nodeType,t.tbody=!d.getElementsByTagName("tbody").length,t.htmlSerialize=!!d.getElementsByTagName("link").length,t.style=/top/.test(r.getAttribute("style")),t.hrefNormalized="/a"===r.getAttribute("href"),t.opacity=/^0.5/.test(r.style.opacity),t.cssFloat=!!r.style.cssFloat,t.checkOn=!!o.value,t.optSelected=u.selected,t.enctype=!!a.createElement("form").enctype,t.html5Clone="<:nav></:nav>"!==a.createElement("nav").cloneNode(!0).outerHTML,t.inlineBlockNeedsLayout=!1,t.shrinkWrapBlocks=!1,t.pixelPosition=!1,t.deleteExpando=!0,t.noCloneEvent=!0,t.reliableMarginRight=!0,t.boxSizingReliable=!0,o.checked=!0,t.noCloneChecked=o.cloneNode(!0).checked,s.disabled=!0,t.optDisabled=!u.disabled;try{delete d.test}catch(h){t.deleteExpando=!1}o=a.createElement("input"),o.setAttribute("value",""),t.input=""===o.getAttribute("value"),o.value="t",o.setAttribute("type","radio"),t.radioValue="t"===o.value,o.setAttribute("checked","t"),o.setAttribute("name","t"),l=a.createDocumentFragment(),l.appendChild(o),t.appendChecked=o.checked,t.checkClone=l.cloneNode(!0).cloneNode(!0).lastChild.checked,d.attachEvent&&(d.attachEvent("onclick",function(){t.noCloneEvent=!1}),d.cloneNode(!0).click());for(f in{submit:!0,change:!0,focusin:!0})d.setAttribute(c="on"+f,"t"),t[f+"Bubbles"]=c in e||d.attributes[c].expando===!1;d.style.backgroundClip="content-box",d.cloneNode(!0).style.backgroundClip="",t.clearCloneStyle="content-box"===d.style.backgroundClip;for(f in x(t))break;return t.ownLast="0"!==f,x(function(){var n,r,o,s="padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;",l=a.getElementsByTagName("body")[0];l&&(n=a.createElement("div"),n.style.cssText="border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px",l.appendChild(n).appendChild(d),d.innerHTML="<table><tr><td></td><td>t</td></tr></table>",o=d.getElementsByTagName("td"),o[0].style.cssText="padding:0;margin:0;border:0;display:none",p=0===o[0].offsetHeight,o[0].style.display="",o[1].style.display="none",t.reliableHiddenOffsets=p&&0===o[0].offsetHeight,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",x.swap(l,null!=l.style.zoom?{zoom:1}:{},function(){t.boxSizing=4===d.offsetWidth}),e.getComputedStyle&&(t.pixelPosition="1%"!==(e.getComputedStyle(d,null)||{}).top,t.boxSizingReliable="4px"===(e.getComputedStyle(d,null)||{width:"4px"}).width,r=d.appendChild(a.createElement("div")),r.style.cssText=d.style.cssText=s,r.style.marginRight=r.style.width="0",d.style.width="1px",t.reliableMarginRight=!parseFloat((e.getComputedStyle(r,null)||{}).marginRight)),typeof d.style.zoom!==i&&(d.innerHTML="",d.style.cssText=s+"width:1px;padding:1px;display:inline;zoom:1",t.inlineBlockNeedsLayout=3===d.offsetWidth,d.style.display="block",d.innerHTML="<div></div>",d.firstChild.style.width="5px",t.shrinkWrapBlocks=3!==d.offsetWidth,t.inlineBlockNeedsLayout&&(l.style.zoom=1)),l.removeChild(n),n=d=o=r=null)}),n=s=l=u=r=o=null,t }({});var B=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,P=/([A-Z])/g;function R(e,n,r,i){if(x.acceptData(e)){var o,a,s=x.expando,l=e.nodeType,u=l?x.cache:e,c=l?e[s]:e[s]&&s;if(c&&u[c]&&(i||u[c].data)||r!==t||"string"!=typeof n)return c||(c=l?e[s]=p.pop()||x.guid++:s),u[c]||(u[c]=l?{}:{toJSON:x.noop}),("object"==typeof n||"function"==typeof n)&&(i?u[c]=x.extend(u[c],n):u[c].data=x.extend(u[c].data,n)),a=u[c],i||(a.data||(a.data={}),a=a.data),r!==t&&(a[x.camelCase(n)]=r),"string"==typeof n?(o=a[n],null==o&&(o=a[x.camelCase(n)])):o=a,o}}function W(e,t,n){if(x.acceptData(e)){var r,i,o=e.nodeType,a=o?x.cache:e,s=o?e[x.expando]:x.expando;if(a[s]){if(t&&(r=n?a[s]:a[s].data)){x.isArray(t)?t=t.concat(x.map(t,x.camelCase)):t in r?t=[t]:(t=x.camelCase(t),t=t in r?[t]:t.split(" ")),i=t.length;while(i--)delete r[t[i]];if(n?!I(r):!x.isEmptyObject(r))return}(n||(delete a[s].data,I(a[s])))&&(o?x.cleanData([e],!0):x.support.deleteExpando||a!=a.window?delete a[s]:a[s]=null)}}}x.extend({cache:{},noData:{applet:!0,embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(e){return e=e.nodeType?x.cache[e[x.expando]]:e[x.expando],!!e&&!I(e)},data:function(e,t,n){return R(e,t,n)},removeData:function(e,t){return W(e,t)},_data:function(e,t,n){return R(e,t,n,!0)},_removeData:function(e,t){return W(e,t,!0)},acceptData:function(e){if(e.nodeType&&1!==e.nodeType&&9!==e.nodeType)return!1;var t=e.nodeName&&x.noData[e.nodeName.toLowerCase()];return!t||t!==!0&&e.getAttribute("classid")===t}}),x.fn.extend({data:function(e,n){var r,i,o=null,a=0,s=this[0];if(e===t){if(this.length&&(o=x.data(s),1===s.nodeType&&!x._data(s,"parsedAttrs"))){for(r=s.attributes;r.length>a;a++)i=r[a].name,0===i.indexOf("data-")&&(i=x.camelCase(i.slice(5)),$(s,i,o[i]));x._data(s,"parsedAttrs",!0)}return o}return"object"==typeof e?this.each(function(){x.data(this,e)}):arguments.length>1?this.each(function(){x.data(this,e,n)}):s?$(s,e,x.data(s,e)):null},removeData:function(e){return this.each(function(){x.removeData(this,e)})}});function $(e,n,r){if(r===t&&1===e.nodeType){var i="data-"+n.replace(P,"-$1").toLowerCase();if(r=e.getAttribute(i),"string"==typeof r){try{r="true"===r?!0:"false"===r?!1:"null"===r?null:+r+""===r?+r:B.test(r)?x.parseJSON(r):r}catch(o){}x.data(e,n,r)}else r=t}return r}function I(e){var t;for(t in e)if(("data"!==t||!x.isEmptyObject(e[t]))&&"toJSON"!==t)return!1;return!0}x.extend({queue:function(e,n,r){var i;return e?(n=(n||"fx")+"queue",i=x._data(e,n),r&&(!i||x.isArray(r)?i=x._data(e,n,x.makeArray(r)):i.push(r)),i||[]):t},dequeue:function(e,t){t=t||"fx";var n=x.queue(e,t),r=n.length,i=n.shift(),o=x._queueHooks(e,t),a=function(){x.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,a,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return x._data(e,n)||x._data(e,n,{empty:x.Callbacks("once memory").add(function(){x._removeData(e,t+"queue"),x._removeData(e,n)})})}}),x.fn.extend({queue:function(e,n){var r=2;return"string"!=typeof e&&(n=e,e="fx",r--),r>arguments.length?x.queue(this[0],e):n===t?this:this.each(function(){var t=x.queue(this,e,n);x._queueHooks(this,e),"fx"===e&&"inprogress"!==t[0]&&x.dequeue(this,e)})},dequeue:function(e){return this.each(function(){x.dequeue(this,e)})},delay:function(e,t){return e=x.fx?x.fx.speeds[e]||e:e,t=t||"fx",this.queue(t,function(t,n){var r=setTimeout(t,e);n.stop=function(){clearTimeout(r)}})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,n){var r,i=1,o=x.Deferred(),a=this,s=this.length,l=function(){--i||o.resolveWith(a,[a])};"string"!=typeof e&&(n=e,e=t),e=e||"fx";while(s--)r=x._data(a[s],e+"queueHooks"),r&&r.empty&&(i++,r.empty.add(l));return l(),o.promise(n)}});var z,X,U=/[\t\r\n\f]/g,V=/\r/g,Y=/^(?:input|select|textarea|button|object)$/i,J=/^(?:a|area)$/i,G=/^(?:checked|selected)$/i,Q=x.support.getSetAttribute,K=x.support.input;x.fn.extend({attr:function(e,t){return x.access(this,x.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){x.removeAttr(this,e)})},prop:function(e,t){return x.access(this,x.prop,e,t,arguments.length>1)},removeProp:function(e){return e=x.propFix[e]||e,this.each(function(){try{this[e]=t,delete this[e]}catch(n){}})},addClass:function(e){var t,n,r,i,o,a=0,s=this.length,l="string"==typeof e&&e;if(x.isFunction(e))return this.each(function(t){x(this).addClass(e.call(this,t,this.className))});if(l)for(t=(e||"").match(T)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(U," "):" ")){o=0;while(i=t[o++])0>r.indexOf(" "+i+" ")&&(r+=i+" ");n.className=x.trim(r)}return this},removeClass:function(e){var t,n,r,i,o,a=0,s=this.length,l=0===arguments.length||"string"==typeof e&&e;if(x.isFunction(e))return this.each(function(t){x(this).removeClass(e.call(this,t,this.className))});if(l)for(t=(e||"").match(T)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(U," "):"")){o=0;while(i=t[o++])while(r.indexOf(" "+i+" ")>=0)r=r.replace(" "+i+" "," ");n.className=e?x.trim(r):""}return this},toggleClass:function(e,t){var n=typeof e;return"boolean"==typeof t&&"string"===n?t?this.addClass(e):this.removeClass(e):x.isFunction(e)?this.each(function(n){x(this).toggleClass(e.call(this,n,this.className,t),t)}):this.each(function(){if("string"===n){var t,r=0,o=x(this),a=e.match(T)||[];while(t=a[r++])o.hasClass(t)?o.removeClass(t):o.addClass(t)}else(n===i||"boolean"===n)&&(this.className&&x._data(this,"__className__",this.className),this.className=this.className||e===!1?"":x._data(this,"__className__")||"")})},hasClass:function(e){var t=" "+e+" ",n=0,r=this.length;for(;r>n;n++)if(1===this[n].nodeType&&(" "+this[n].className+" ").replace(U," ").indexOf(t)>=0)return!0;return!1},val:function(e){var n,r,i,o=this[0];{if(arguments.length)return i=x.isFunction(e),this.each(function(n){var o;1===this.nodeType&&(o=i?e.call(this,n,x(this).val()):e,null==o?o="":"number"==typeof o?o+="":x.isArray(o)&&(o=x.map(o,function(e){return null==e?"":e+""})),r=x.valHooks[this.type]||x.valHooks[this.nodeName.toLowerCase()],r&&"set"in r&&r.set(this,o,"value")!==t||(this.value=o))});if(o)return r=x.valHooks[o.type]||x.valHooks[o.nodeName.toLowerCase()],r&&"get"in r&&(n=r.get(o,"value"))!==t?n:(n=o.value,"string"==typeof n?n.replace(V,""):null==n?"":n)}}}),x.extend({valHooks:{option:{get:function(e){var t=x.find.attr(e,"value");return null!=t?t:e.text}},select:{get:function(e){var t,n,r=e.options,i=e.selectedIndex,o="select-one"===e.type||0>i,a=o?null:[],s=o?i+1:r.length,l=0>i?s:o?i:0;for(;s>l;l++)if(n=r[l],!(!n.selected&&l!==i||(x.support.optDisabled?n.disabled:null!==n.getAttribute("disabled"))||n.parentNode.disabled&&x.nodeName(n.parentNode,"optgroup"))){if(t=x(n).val(),o)return t;a.push(t)}return a},set:function(e,t){var n,r,i=e.options,o=x.makeArray(t),a=i.length;while(a--)r=i[a],(r.selected=x.inArray(x(r).val(),o)>=0)&&(n=!0);return n||(e.selectedIndex=-1),o}}},attr:function(e,n,r){var o,a,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return typeof e.getAttribute===i?x.prop(e,n,r):(1===s&&x.isXMLDoc(e)||(n=n.toLowerCase(),o=x.attrHooks[n]||(x.expr.match.bool.test(n)?X:z)),r===t?o&&"get"in o&&null!==(a=o.get(e,n))?a:(a=x.find.attr(e,n),null==a?t:a):null!==r?o&&"set"in o&&(a=o.set(e,r,n))!==t?a:(e.setAttribute(n,r+""),r):(x.removeAttr(e,n),t))},removeAttr:function(e,t){var n,r,i=0,o=t&&t.match(T);if(o&&1===e.nodeType)while(n=o[i++])r=x.propFix[n]||n,x.expr.match.bool.test(n)?K&&Q||!G.test(n)?e[r]=!1:e[x.camelCase("default-"+n)]=e[r]=!1:x.attr(e,n,""),e.removeAttribute(Q?n:r)},attrHooks:{type:{set:function(e,t){if(!x.support.radioValue&&"radio"===t&&x.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},propFix:{"for":"htmlFor","class":"className"},prop:function(e,n,r){var i,o,a,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return a=1!==s||!x.isXMLDoc(e),a&&(n=x.propFix[n]||n,o=x.propHooks[n]),r!==t?o&&"set"in o&&(i=o.set(e,r,n))!==t?i:e[n]=r:o&&"get"in o&&null!==(i=o.get(e,n))?i:e[n]},propHooks:{tabIndex:{get:function(e){var t=x.find.attr(e,"tabindex");return t?parseInt(t,10):Y.test(e.nodeName)||J.test(e.nodeName)&&e.href?0:-1}}}}),X={set:function(e,t,n){return t===!1?x.removeAttr(e,n):K&&Q||!G.test(n)?e.setAttribute(!Q&&x.propFix[n]||n,n):e[x.camelCase("default-"+n)]=e[n]=!0,n}},x.each(x.expr.match.bool.source.match(/\w+/g),function(e,n){var r=x.expr.attrHandle[n]||x.find.attr;x.expr.attrHandle[n]=K&&Q||!G.test(n)?function(e,n,i){var o=x.expr.attrHandle[n],a=i?t:(x.expr.attrHandle[n]=t)!=r(e,n,i)?n.toLowerCase():null;return x.expr.attrHandle[n]=o,a}:function(e,n,r){return r?t:e[x.camelCase("default-"+n)]?n.toLowerCase():null}}),K&&Q||(x.attrHooks.value={set:function(e,n,r){return x.nodeName(e,"input")?(e.defaultValue=n,t):z&&z.set(e,n,r)}}),Q||(z={set:function(e,n,r){var i=e.getAttributeNode(r);return i||e.setAttributeNode(i=e.ownerDocument.createAttribute(r)),i.value=n+="","value"===r||n===e.getAttribute(r)?n:t}},x.expr.attrHandle.id=x.expr.attrHandle.name=x.expr.attrHandle.coords=function(e,n,r){var i;return r?t:(i=e.getAttributeNode(n))&&""!==i.value?i.value:null},x.valHooks.button={get:function(e,n){var r=e.getAttributeNode(n);return r&&r.specified?r.value:t},set:z.set},x.attrHooks.contenteditable={set:function(e,t,n){z.set(e,""===t?!1:t,n)}},x.each(["width","height"],function(e,n){x.attrHooks[n]={set:function(e,r){return""===r?(e.setAttribute(n,"auto"),r):t}}})),x.support.hrefNormalized||x.each(["href","src"],function(e,t){x.propHooks[t]={get:function(e){return e.getAttribute(t,4)}}}),x.support.style||(x.attrHooks.style={get:function(e){return e.style.cssText||t},set:function(e,t){return e.style.cssText=t+""}}),x.support.optSelected||(x.propHooks.selected={get:function(e){var t=e.parentNode;return t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex),null}}),x.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){x.propFix[this.toLowerCase()]=this}),x.support.enctype||(x.propFix.enctype="encoding"),x.each(["radio","checkbox"],function(){x.valHooks[this]={set:function(e,n){return x.isArray(n)?e.checked=x.inArray(x(e).val(),n)>=0:t}},x.support.checkOn||(x.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})});var Z=/^(?:input|select|textarea)$/i,et=/^key/,tt=/^(?:mouse|contextmenu)|click/,nt=/^(?:focusinfocus|focusoutblur)$/,rt=/^([^.]*)(?:\.(.+)|)$/;function it(){return!0}function ot(){return!1}function at(){try{return a.activeElement}catch(e){}}x.event={global:{},add:function(e,n,r,o,a){var s,l,u,c,p,f,d,h,g,m,y,v=x._data(e);if(v){r.handler&&(c=r,r=c.handler,a=c.selector),r.guid||(r.guid=x.guid++),(l=v.events)||(l=v.events={}),(f=v.handle)||(f=v.handle=function(e){return typeof x===i||e&&x.event.triggered===e.type?t:x.event.dispatch.apply(f.elem,arguments)},f.elem=e),n=(n||"").match(T)||[""],u=n.length;while(u--)s=rt.exec(n[u])||[],g=y=s[1],m=(s[2]||"").split(".").sort(),g&&(p=x.event.special[g]||{},g=(a?p.delegateType:p.bindType)||g,p=x.event.special[g]||{},d=x.extend({type:g,origType:y,data:o,handler:r,guid:r.guid,selector:a,needsContext:a&&x.expr.match.needsContext.test(a),namespace:m.join(".")},c),(h=l[g])||(h=l[g]=[],h.delegateCount=0,p.setup&&p.setup.call(e,o,m,f)!==!1||(e.addEventListener?e.addEventListener(g,f,!1):e.attachEvent&&e.attachEvent("on"+g,f))),p.add&&(p.add.call(e,d),d.handler.guid||(d.handler.guid=r.guid)),a?h.splice(h.delegateCount++,0,d):h.push(d),x.event.global[g]=!0);e=null}},remove:function(e,t,n,r,i){var o,a,s,l,u,c,p,f,d,h,g,m=x.hasData(e)&&x._data(e);if(m&&(c=m.events)){t=(t||"").match(T)||[""],u=t.length;while(u--)if(s=rt.exec(t[u])||[],d=g=s[1],h=(s[2]||"").split(".").sort(),d){p=x.event.special[d]||{},d=(r?p.delegateType:p.bindType)||d,f=c[d]||[],s=s[2]&&RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),l=o=f.length;while(o--)a=f[o],!i&&g!==a.origType||n&&n.guid!==a.guid||s&&!s.test(a.namespace)||r&&r!==a.selector&&("**"!==r||!a.selector)||(f.splice(o,1),a.selector&&f.delegateCount--,p.remove&&p.remove.call(e,a));l&&!f.length&&(p.teardown&&p.teardown.call(e,h,m.handle)!==!1||x.removeEvent(e,d,m.handle),delete c[d])}else for(d in c)x.event.remove(e,d+t[u],n,r,!0);x.isEmptyObject(c)&&(delete m.handle,x._removeData(e,"events"))}},trigger:function(n,r,i,o){var s,l,u,c,p,f,d,h=[i||a],g=v.call(n,"type")?n.type:n,m=v.call(n,"namespace")?n.namespace.split("."):[];if(u=f=i=i||a,3!==i.nodeType&&8!==i.nodeType&&!nt.test(g+x.event.triggered)&&(g.indexOf(".")>=0&&(m=g.split("."),g=m.shift(),m.sort()),l=0>g.indexOf(":")&&"on"+g,n=n[x.expando]?n:new x.Event(g,"object"==typeof n&&n),n.isTrigger=o?2:3,n.namespace=m.join("."),n.namespace_re=n.namespace?RegExp("(^|\\.)"+m.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,n.result=t,n.target||(n.target=i),r=null==r?[n]:x.makeArray(r,[n]),p=x.event.special[g]||{},o||!p.trigger||p.trigger.apply(i,r)!==!1)){if(!o&&!p.noBubble&&!x.isWindow(i)){for(c=p.delegateType||g,nt.test(c+g)||(u=u.parentNode);u;u=u.parentNode)h.push(u),f=u;f===(i.ownerDocument||a)&&h.push(f.defaultView||f.parentWindow||e)}d=0;while((u=h[d++])&&!n.isPropagationStopped())n.type=d>1?c:p.bindType||g,s=(x._data(u,"events")||{})[n.type]&&x._data(u,"handle"),s&&s.apply(u,r),s=l&&u[l],s&&x.acceptData(u)&&s.apply&&s.apply(u,r)===!1&&n.preventDefault();if(n.type=g,!o&&!n.isDefaultPrevented()&&(!p._default||p._default.apply(h.pop(),r)===!1)&&x.acceptData(i)&&l&&i[g]&&!x.isWindow(i)){f=i[l],f&&(i[l]=null),x.event.triggered=g;try{i[g]()}catch(y){}x.event.triggered=t,f&&(i[l]=f)}return n.result}},dispatch:function(e){e=x.event.fix(e);var n,r,i,o,a,s=[],l=g.call(arguments),u=(x._data(this,"events")||{})[e.type]||[],c=x.event.special[e.type]||{};if(l[0]=e,e.delegateTarget=this,!c.preDispatch||c.preDispatch.call(this,e)!==!1){s=x.event.handlers.call(this,e,u),n=0;while((o=s[n++])&&!e.isPropagationStopped()){e.currentTarget=o.elem,a=0;while((i=o.handlers[a++])&&!e.isImmediatePropagationStopped())(!e.namespace_re||e.namespace_re.test(i.namespace))&&(e.handleObj=i,e.data=i.data,r=((x.event.special[i.origType]||{}).handle||i.handler).apply(o.elem,l),r!==t&&(e.result=r)===!1&&(e.preventDefault(),e.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,e),e.result}},handlers:function(e,n){var r,i,o,a,s=[],l=n.delegateCount,u=e.target;if(l&&u.nodeType&&(!e.button||"click"!==e.type))for(;u!=this;u=u.parentNode||this)if(1===u.nodeType&&(u.disabled!==!0||"click"!==e.type)){for(o=[],a=0;l>a;a++)i=n[a],r=i.selector+" ",o[r]===t&&(o[r]=i.needsContext?x(r,this).index(u)>=0:x.find(r,this,null,[u]).length),o[r]&&o.push(i);o.length&&s.push({elem:u,handlers:o})}return n.length>l&&s.push({elem:this,handlers:n.slice(l)}),s},fix:function(e){if(e[x.expando])return e;var t,n,r,i=e.type,o=e,s=this.fixHooks[i];s||(this.fixHooks[i]=s=tt.test(i)?this.mouseHooks:et.test(i)?this.keyHooks:{}),r=s.props?this.props.concat(s.props):this.props,e=new x.Event(o),t=r.length;while(t--)n=r[t],e[n]=o[n];return e.target||(e.target=o.srcElement||a),3===e.target.nodeType&&(e.target=e.target.parentNode),e.metaKey=!!e.metaKey,s.filter?s.filter(e,o):e},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(e,t){return null==e.which&&(e.which=null!=t.charCode?t.charCode:t.keyCode),e}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(e,n){var r,i,o,s=n.button,l=n.fromElement;return null==e.pageX&&null!=n.clientX&&(i=e.target.ownerDocument||a,o=i.documentElement,r=i.body,e.pageX=n.clientX+(o&&o.scrollLeft||r&&r.scrollLeft||0)-(o&&o.clientLeft||r&&r.clientLeft||0),e.pageY=n.clientY+(o&&o.scrollTop||r&&r.scrollTop||0)-(o&&o.clientTop||r&&r.clientTop||0)),!e.relatedTarget&&l&&(e.relatedTarget=l===e.target?n.toElement:l),e.which||s===t||(e.which=1&s?1:2&s?3:4&s?2:0),e}},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==at()&&this.focus)try{return this.focus(),!1}catch(e){}},delegateType:"focusin"},blur:{trigger:function(){return this===at()&&this.blur?(this.blur(),!1):t},delegateType:"focusout"},click:{trigger:function(){return x.nodeName(this,"input")&&"checkbox"===this.type&&this.click?(this.click(),!1):t},_default:function(e){return x.nodeName(e.target,"a")}},beforeunload:{postDispatch:function(e){e.result!==t&&(e.originalEvent.returnValue=e.result)}}},simulate:function(e,t,n,r){var i=x.extend(new x.Event,n,{type:e,isSimulated:!0,originalEvent:{}});r?x.event.trigger(i,null,t):x.event.dispatch.call(t,i),i.isDefaultPrevented()&&n.preventDefault()}},x.removeEvent=a.removeEventListener?function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n,!1)}:function(e,t,n){var r="on"+t;e.detachEvent&&(typeof e[r]===i&&(e[r]=null),e.detachEvent(r,n))},x.Event=function(e,n){return this instanceof x.Event?(e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||e.returnValue===!1||e.getPreventDefault&&e.getPreventDefault()?it:ot):this.type=e,n&&x.extend(this,n),this.timeStamp=e&&e.timeStamp||x.now(),this[x.expando]=!0,t):new x.Event(e,n)},x.Event.prototype={isDefaultPrevented:ot,isPropagationStopped:ot,isImmediatePropagationStopped:ot,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=it,e&&(e.preventDefault?e.preventDefault():e.returnValue=!1)},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=it,e&&(e.stopPropagation&&e.stopPropagation(),e.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=it,this.stopPropagation()}},x.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(e,t){x.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj;return(!i||i!==r&&!x.contains(r,i))&&(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}}),x.support.submitBubbles||(x.event.special.submit={setup:function(){return x.nodeName(this,"form")?!1:(x.event.add(this,"click._submit keypress._submit",function(e){var n=e.target,r=x.nodeName(n,"input")||x.nodeName(n,"button")?n.form:t;r&&!x._data(r,"submitBubbles")&&(x.event.add(r,"submit._submit",function(e){e._submit_bubble=!0}),x._data(r,"submitBubbles",!0))}),t)},postDispatch:function(e){e._submit_bubble&&(delete e._submit_bubble,this.parentNode&&!e.isTrigger&&x.event.simulate("submit",this.parentNode,e,!0))},teardown:function(){return x.nodeName(this,"form")?!1:(x.event.remove(this,"._submit"),t)}}),x.support.changeBubbles||(x.event.special.change={setup:function(){return Z.test(this.nodeName)?(("checkbox"===this.type||"radio"===this.type)&&(x.event.add(this,"propertychange._change",function(e){"checked"===e.originalEvent.propertyName&&(this._just_changed=!0)}),x.event.add(this,"click._change",function(e){this._just_changed&&!e.isTrigger&&(this._just_changed=!1),x.event.simulate("change",this,e,!0)})),!1):(x.event.add(this,"beforeactivate._change",function(e){var t=e.target;Z.test(t.nodeName)&&!x._data(t,"changeBubbles")&&(x.event.add(t,"change._change",function(e){!this.parentNode||e.isSimulated||e.isTrigger||x.event.simulate("change",this.parentNode,e,!0)}),x._data(t,"changeBubbles",!0))}),t)},handle:function(e){var n=e.target;return this!==n||e.isSimulated||e.isTrigger||"radio"!==n.type&&"checkbox"!==n.type?e.handleObj.handler.apply(this,arguments):t},teardown:function(){return x.event.remove(this,"._change"),!Z.test(this.nodeName)}}),x.support.focusinBubbles||x.each({focus:"focusin",blur:"focusout"},function(e,t){var n=0,r=function(e){x.event.simulate(t,e.target,x.event.fix(e),!0)};x.event.special[t]={setup:function(){0===n++&&a.addEventListener(e,r,!0)},teardown:function(){0===--n&&a.removeEventListener(e,r,!0)}}}),x.fn.extend({on:function(e,n,r,i,o){var a,s;if("object"==typeof e){"string"!=typeof n&&(r=r||n,n=t);for(a in e)this.on(a,n,r,e[a],o);return this}if(null==r&&null==i?(i=n,r=n=t):null==i&&("string"==typeof n?(i=r,r=t):(i=r,r=n,n=t)),i===!1)i=ot;else if(!i)return this;return 1===o&&(s=i,i=function(e){return x().off(e),s.apply(this,arguments)},i.guid=s.guid||(s.guid=x.guid++)),this.each(function(){x.event.add(this,e,i,r,n)})},one:function(e,t,n,r){return this.on(e,t,n,r,1)},off:function(e,n,r){var i,o;if(e&&e.preventDefault&&e.handleObj)return i=e.handleObj,x(e.delegateTarget).off(i.namespace?i.origType+"."+i.namespace:i.origType,i.selector,i.handler),this;if("object"==typeof e){for(o in e)this.off(o,n,e[o]);return this}return(n===!1||"function"==typeof n)&&(r=n,n=t),r===!1&&(r=ot),this.each(function(){x.event.remove(this,e,r,n)})},trigger:function(e,t){return this.each(function(){x.event.trigger(e,t,this)})},triggerHandler:function(e,n){var r=this[0];return r?x.event.trigger(e,n,r,!0):t}});var st=/^.[^:#\[\.,]*$/,lt=/^(?:parents|prev(?:Until|All))/,ut=x.expr.match.needsContext,ct={children:!0,contents:!0,next:!0,prev:!0};x.fn.extend({find:function(e){var t,n=[],r=this,i=r.length;if("string"!=typeof e)return this.pushStack(x(e).filter(function(){for(t=0;i>t;t++)if(x.contains(r[t],this))return!0}));for(t=0;i>t;t++)x.find(e,r[t],n);return n=this.pushStack(i>1?x.unique(n):n),n.selector=this.selector?this.selector+" "+e:e,n},has:function(e){var t,n=x(e,this),r=n.length;return this.filter(function(){for(t=0;r>t;t++)if(x.contains(this,n[t]))return!0})},not:function(e){return this.pushStack(ft(this,e||[],!0))},filter:function(e){return this.pushStack(ft(this,e||[],!1))},is:function(e){return!!ft(this,"string"==typeof e&&ut.test(e)?x(e):e||[],!1).length},closest:function(e,t){var n,r=0,i=this.length,o=[],a=ut.test(e)||"string"!=typeof e?x(e,t||this.context):0;for(;i>r;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(11>n.nodeType&&(a?a.index(n)>-1:1===n.nodeType&&x.find.matchesSelector(n,e))){n=o.push(n);break}return this.pushStack(o.length>1?x.unique(o):o)},index:function(e){return e?"string"==typeof e?x.inArray(this[0],x(e)):x.inArray(e.jquery?e[0]:e,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){var n="string"==typeof e?x(e,t):x.makeArray(e&&e.nodeType?[e]:e),r=x.merge(this.get(),n);return this.pushStack(x.unique(r))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}});function pt(e,t){do e=e[t];while(e&&1!==e.nodeType);return e}x.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return x.dir(e,"parentNode")},parentsUntil:function(e,t,n){return x.dir(e,"parentNode",n)},next:function(e){return pt(e,"nextSibling")},prev:function(e){return pt(e,"previousSibling")},nextAll:function(e){return x.dir(e,"nextSibling")},prevAll:function(e){return x.dir(e,"previousSibling")},nextUntil:function(e,t,n){return x.dir(e,"nextSibling",n)},prevUntil:function(e,t,n){return x.dir(e,"previousSibling",n)},siblings:function(e){return x.sibling((e.parentNode||{}).firstChild,e)},children:function(e){return x.sibling(e.firstChild)},contents:function(e){return x.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:x.merge([],e.childNodes)}},function(e,t){x.fn[e]=function(n,r){var i=x.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=x.filter(r,i)),this.length>1&&(ct[e]||(i=x.unique(i)),lt.test(e)&&(i=i.reverse())),this.pushStack(i)}}),x.extend({filter:function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?x.find.matchesSelector(r,e)?[r]:[]:x.find.matches(e,x.grep(t,function(e){return 1===e.nodeType}))},dir:function(e,n,r){var i=[],o=e[n];while(o&&9!==o.nodeType&&(r===t||1!==o.nodeType||!x(o).is(r)))1===o.nodeType&&i.push(o),o=o[n];return i},sibling:function(e,t){var n=[];for(;e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n}});function ft(e,t,n){if(x.isFunction(t))return x.grep(e,function(e,r){return!!t.call(e,r,e)!==n});if(t.nodeType)return x.grep(e,function(e){return e===t!==n});if("string"==typeof t){if(st.test(t))return x.filter(t,e,n);t=x.filter(t,e)}return x.grep(e,function(e){return x.inArray(e,t)>=0!==n})}function dt(e){var t=ht.split("|"),n=e.createDocumentFragment();if(n.createElement)while(t.length)n.createElement(t.pop());return n}var ht="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",gt=/ jQuery\d+="(?:null|\d+)"/g,mt=RegExp("<(?:"+ht+")[\\s/>]","i"),yt=/^\s+/,vt=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bt=/<([\w:]+)/,xt=/<tbody/i,wt=/<|&#?\w+;/,Tt=/<(?:script|style|link)/i,Ct=/^(?:checkbox|radio)$/i,Nt=/checked\s*(?:[^=]|=\s*.checked.)/i,kt=/^$|\/(?:java|ecma)script/i,Et=/^true\/(.*)/,St=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,At={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],area:[1,"<map>","</map>"],param:[1,"<object>","</object>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:x.support.htmlSerialize?[0,"",""]:[1,"X<div>","</div>"]},jt=dt(a),Dt=jt.appendChild(a.createElement("div"));At.optgroup=At.option,At.tbody=At.tfoot=At.colgroup=At.caption=At.thead,At.th=At.td,x.fn.extend({text:function(e){return x.access(this,function(e){return e===t?x.text(this):this.empty().append((this[0]&&this[0].ownerDocument||a).createTextNode(e))},null,e,arguments.length)},append:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Lt(this,e);t.appendChild(e)}})},prepend:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Lt(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},remove:function(e,t){var n,r=e?x.filter(e,this):this,i=0;for(;null!=(n=r[i]);i++)t||1!==n.nodeType||x.cleanData(Ft(n)),n.parentNode&&(t&&x.contains(n.ownerDocument,n)&&_t(Ft(n,"script")),n.parentNode.removeChild(n));return this},empty:function(){var e,t=0;for(;null!=(e=this[t]);t++){1===e.nodeType&&x.cleanData(Ft(e,!1));while(e.firstChild)e.removeChild(e.firstChild);e.options&&x.nodeName(e,"select")&&(e.options.length=0)}return this},clone:function(e,t){return e=null==e?!1:e,t=null==t?e:t,this.map(function(){return x.clone(this,e,t)})},html:function(e){return x.access(this,function(e){var n=this[0]||{},r=0,i=this.length;if(e===t)return 1===n.nodeType?n.innerHTML.replace(gt,""):t;if(!("string"!=typeof e||Tt.test(e)||!x.support.htmlSerialize&&mt.test(e)||!x.support.leadingWhitespace&&yt.test(e)||At[(bt.exec(e)||["",""])[1].toLowerCase()])){e=e.replace(vt,"<$1></$2>");try{for(;i>r;r++)n=this[r]||{},1===n.nodeType&&(x.cleanData(Ft(n,!1)),n.innerHTML=e);n=0}catch(o){}}n&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var e=x.map(this,function(e){return[e.nextSibling,e.parentNode]}),t=0;return this.domManip(arguments,function(n){var r=e[t++],i=e[t++];i&&(r&&r.parentNode!==i&&(r=this.nextSibling),x(this).remove(),i.insertBefore(n,r))},!0),t?this:this.remove()},detach:function(e){return this.remove(e,!0)},domManip:function(e,t,n){e=d.apply([],e);var r,i,o,a,s,l,u=0,c=this.length,p=this,f=c-1,h=e[0],g=x.isFunction(h);if(g||!(1>=c||"string"!=typeof h||x.support.checkClone)&&Nt.test(h))return this.each(function(r){var i=p.eq(r);g&&(e[0]=h.call(this,r,i.html())),i.domManip(e,t,n)});if(c&&(l=x.buildFragment(e,this[0].ownerDocument,!1,!n&&this),r=l.firstChild,1===l.childNodes.length&&(l=r),r)){for(a=x.map(Ft(l,"script"),Ht),o=a.length;c>u;u++)i=l,u!==f&&(i=x.clone(i,!0,!0),o&&x.merge(a,Ft(i,"script"))),t.call(this[u],i,u);if(o)for(s=a[a.length-1].ownerDocument,x.map(a,qt),u=0;o>u;u++)i=a[u],kt.test(i.type||"")&&!x._data(i,"globalEval")&&x.contains(s,i)&&(i.src?x._evalUrl(i.src):x.globalEval((i.text||i.textContent||i.innerHTML||"").replace(St,"")));l=r=null}return this}});function Lt(e,t){return x.nodeName(e,"table")&&x.nodeName(1===t.nodeType?t:t.firstChild,"tr")?e.getElementsByTagName("tbody")[0]||e.appendChild(e.ownerDocument.createElement("tbody")):e}function Ht(e){return e.type=(null!==x.find.attr(e,"type"))+"/"+e.type,e}function qt(e){var t=Et.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function _t(e,t){var n,r=0;for(;null!=(n=e[r]);r++)x._data(n,"globalEval",!t||x._data(t[r],"globalEval"))}function Mt(e,t){if(1===t.nodeType&&x.hasData(e)){var n,r,i,o=x._data(e),a=x._data(t,o),s=o.events;if(s){delete a.handle,a.events={};for(n in s)for(r=0,i=s[n].length;i>r;r++)x.event.add(t,n,s[n][r])}a.data&&(a.data=x.extend({},a.data))}}function Ot(e,t){var n,r,i;if(1===t.nodeType){if(n=t.nodeName.toLowerCase(),!x.support.noCloneEvent&&t[x.expando]){i=x._data(t);for(r in i.events)x.removeEvent(t,r,i.handle);t.removeAttribute(x.expando)}"script"===n&&t.text!==e.text?(Ht(t).text=e.text,qt(t)):"object"===n?(t.parentNode&&(t.outerHTML=e.outerHTML),x.support.html5Clone&&e.innerHTML&&!x.trim(t.innerHTML)&&(t.innerHTML=e.innerHTML)):"input"===n&&Ct.test(e.type)?(t.defaultChecked=t.checked=e.checked,t.value!==e.value&&(t.value=e.value)):"option"===n?t.defaultSelected=t.selected=e.defaultSelected:("input"===n||"textarea"===n)&&(t.defaultValue=e.defaultValue)}}x.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){x.fn[e]=function(e){var n,r=0,i=[],o=x(e),a=o.length-1;for(;a>=r;r++)n=r===a?this:this.clone(!0),x(o[r])[t](n),h.apply(i,n.get());return this.pushStack(i)}});function Ft(e,n){var r,o,a=0,s=typeof e.getElementsByTagName!==i?e.getElementsByTagName(n||"*"):typeof e.querySelectorAll!==i?e.querySelectorAll(n||"*"):t;if(!s)for(s=[],r=e.childNodes||e;null!=(o=r[a]);a++)!n||x.nodeName(o,n)?s.push(o):x.merge(s,Ft(o,n));return n===t||n&&x.nodeName(e,n)?x.merge([e],s):s}function Bt(e){Ct.test(e.type)&&(e.defaultChecked=e.checked)}x.extend({clone:function(e,t,n){var r,i,o,a,s,l=x.contains(e.ownerDocument,e);if(x.support.html5Clone||x.isXMLDoc(e)||!mt.test("<"+e.nodeName+">")?o=e.cloneNode(!0):(Dt.innerHTML=e.outerHTML,Dt.removeChild(o=Dt.firstChild)),!(x.support.noCloneEvent&&x.support.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||x.isXMLDoc(e)))for(r=Ft(o),s=Ft(e),a=0;null!=(i=s[a]);++a)r[a]&&Ot(i,r[a]);if(t)if(n)for(s=s||Ft(e),r=r||Ft(o),a=0;null!=(i=s[a]);a++)Mt(i,r[a]);else Mt(e,o);return r=Ft(o,"script"),r.length>0&&_t(r,!l&&Ft(e,"script")),r=s=i=null,o},buildFragment:function(e,t,n,r){var i,o,a,s,l,u,c,p=e.length,f=dt(t),d=[],h=0;for(;p>h;h++)if(o=e[h],o||0===o)if("object"===x.type(o))x.merge(d,o.nodeType?[o]:o);else if(wt.test(o)){s=s||f.appendChild(t.createElement("div")),l=(bt.exec(o)||["",""])[1].toLowerCase(),c=At[l]||At._default,s.innerHTML=c[1]+o.replace(vt,"<$1></$2>")+c[2],i=c[0];while(i--)s=s.lastChild;if(!x.support.leadingWhitespace&&yt.test(o)&&d.push(t.createTextNode(yt.exec(o)[0])),!x.support.tbody){o="table"!==l||xt.test(o)?"<table>"!==c[1]||xt.test(o)?0:s:s.firstChild,i=o&&o.childNodes.length;while(i--)x.nodeName(u=o.childNodes[i],"tbody")&&!u.childNodes.length&&o.removeChild(u)}x.merge(d,s.childNodes),s.textContent="";while(s.firstChild)s.removeChild(s.firstChild);s=f.lastChild}else d.push(t.createTextNode(o));s&&f.removeChild(s),x.support.appendChecked||x.grep(Ft(d,"input"),Bt),h=0;while(o=d[h++])if((!r||-1===x.inArray(o,r))&&(a=x.contains(o.ownerDocument,o),s=Ft(f.appendChild(o),"script"),a&&_t(s),n)){i=0;while(o=s[i++])kt.test(o.type||"")&&n.push(o)}return s=null,f},cleanData:function(e,t){var n,r,o,a,s=0,l=x.expando,u=x.cache,c=x.support.deleteExpando,f=x.event.special;for(;null!=(n=e[s]);s++)if((t||x.acceptData(n))&&(o=n[l],a=o&&u[o])){if(a.events)for(r in a.events)f[r]?x.event.remove(n,r):x.removeEvent(n,r,a.handle); u[o]&&(delete u[o],c?delete n[l]:typeof n.removeAttribute!==i?n.removeAttribute(l):n[l]=null,p.push(o))}},_evalUrl:function(e){return x.ajax({url:e,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})}}),x.fn.extend({wrapAll:function(e){if(x.isFunction(e))return this.each(function(t){x(this).wrapAll(e.call(this,t))});if(this[0]){var t=x(e,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstChild&&1===e.firstChild.nodeType)e=e.firstChild;return e}).append(this)}return this},wrapInner:function(e){return x.isFunction(e)?this.each(function(t){x(this).wrapInner(e.call(this,t))}):this.each(function(){var t=x(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=x.isFunction(e);return this.each(function(n){x(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){x.nodeName(this,"body")||x(this).replaceWith(this.childNodes)}).end()}});var Pt,Rt,Wt,$t=/alpha\([^)]*\)/i,It=/opacity\s*=\s*([^)]*)/,zt=/^(top|right|bottom|left)$/,Xt=/^(none|table(?!-c[ea]).+)/,Ut=/^margin/,Vt=RegExp("^("+w+")(.*)$","i"),Yt=RegExp("^("+w+")(?!px)[a-z%]+$","i"),Jt=RegExp("^([+-])=("+w+")","i"),Gt={BODY:"block"},Qt={position:"absolute",visibility:"hidden",display:"block"},Kt={letterSpacing:0,fontWeight:400},Zt=["Top","Right","Bottom","Left"],en=["Webkit","O","Moz","ms"];function tn(e,t){if(t in e)return t;var n=t.charAt(0).toUpperCase()+t.slice(1),r=t,i=en.length;while(i--)if(t=en[i]+n,t in e)return t;return r}function nn(e,t){return e=t||e,"none"===x.css(e,"display")||!x.contains(e.ownerDocument,e)}function rn(e,t){var n,r,i,o=[],a=0,s=e.length;for(;s>a;a++)r=e[a],r.style&&(o[a]=x._data(r,"olddisplay"),n=r.style.display,t?(o[a]||"none"!==n||(r.style.display=""),""===r.style.display&&nn(r)&&(o[a]=x._data(r,"olddisplay",ln(r.nodeName)))):o[a]||(i=nn(r),(n&&"none"!==n||!i)&&x._data(r,"olddisplay",i?n:x.css(r,"display"))));for(a=0;s>a;a++)r=e[a],r.style&&(t&&"none"!==r.style.display&&""!==r.style.display||(r.style.display=t?o[a]||"":"none"));return e}x.fn.extend({css:function(e,n){return x.access(this,function(e,n,r){var i,o,a={},s=0;if(x.isArray(n)){for(o=Rt(e),i=n.length;i>s;s++)a[n[s]]=x.css(e,n[s],!1,o);return a}return r!==t?x.style(e,n,r):x.css(e,n)},e,n,arguments.length>1)},show:function(){return rn(this,!0)},hide:function(){return rn(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){nn(this)?x(this).show():x(this).hide()})}}),x.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Wt(e,"opacity");return""===n?"1":n}}}},cssNumber:{columnCount:!0,fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":x.support.cssFloat?"cssFloat":"styleFloat"},style:function(e,n,r,i){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var o,a,s,l=x.camelCase(n),u=e.style;if(n=x.cssProps[l]||(x.cssProps[l]=tn(u,l)),s=x.cssHooks[n]||x.cssHooks[l],r===t)return s&&"get"in s&&(o=s.get(e,!1,i))!==t?o:u[n];if(a=typeof r,"string"===a&&(o=Jt.exec(r))&&(r=(o[1]+1)*o[2]+parseFloat(x.css(e,n)),a="number"),!(null==r||"number"===a&&isNaN(r)||("number"!==a||x.cssNumber[l]||(r+="px"),x.support.clearCloneStyle||""!==r||0!==n.indexOf("background")||(u[n]="inherit"),s&&"set"in s&&(r=s.set(e,r,i))===t)))try{u[n]=r}catch(c){}}},css:function(e,n,r,i){var o,a,s,l=x.camelCase(n);return n=x.cssProps[l]||(x.cssProps[l]=tn(e.style,l)),s=x.cssHooks[n]||x.cssHooks[l],s&&"get"in s&&(a=s.get(e,!0,r)),a===t&&(a=Wt(e,n,i)),"normal"===a&&n in Kt&&(a=Kt[n]),""===r||r?(o=parseFloat(a),r===!0||x.isNumeric(o)?o||0:a):a}}),e.getComputedStyle?(Rt=function(t){return e.getComputedStyle(t,null)},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),l=s?s.getPropertyValue(n)||s[n]:t,u=e.style;return s&&(""!==l||x.contains(e.ownerDocument,e)||(l=x.style(e,n)),Yt.test(l)&&Ut.test(n)&&(i=u.width,o=u.minWidth,a=u.maxWidth,u.minWidth=u.maxWidth=u.width=l,l=s.width,u.width=i,u.minWidth=o,u.maxWidth=a)),l}):a.documentElement.currentStyle&&(Rt=function(e){return e.currentStyle},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),l=s?s[n]:t,u=e.style;return null==l&&u&&u[n]&&(l=u[n]),Yt.test(l)&&!zt.test(n)&&(i=u.left,o=e.runtimeStyle,a=o&&o.left,a&&(o.left=e.currentStyle.left),u.left="fontSize"===n?"1em":l,l=u.pixelLeft+"px",u.left=i,a&&(o.left=a)),""===l?"auto":l});function on(e,t,n){var r=Vt.exec(t);return r?Math.max(0,r[1]-(n||0))+(r[2]||"px"):t}function an(e,t,n,r,i){var o=n===(r?"border":"content")?4:"width"===t?1:0,a=0;for(;4>o;o+=2)"margin"===n&&(a+=x.css(e,n+Zt[o],!0,i)),r?("content"===n&&(a-=x.css(e,"padding"+Zt[o],!0,i)),"margin"!==n&&(a-=x.css(e,"border"+Zt[o]+"Width",!0,i))):(a+=x.css(e,"padding"+Zt[o],!0,i),"padding"!==n&&(a+=x.css(e,"border"+Zt[o]+"Width",!0,i)));return a}function sn(e,t,n){var r=!0,i="width"===t?e.offsetWidth:e.offsetHeight,o=Rt(e),a=x.support.boxSizing&&"border-box"===x.css(e,"boxSizing",!1,o);if(0>=i||null==i){if(i=Wt(e,t,o),(0>i||null==i)&&(i=e.style[t]),Yt.test(i))return i;r=a&&(x.support.boxSizingReliable||i===e.style[t]),i=parseFloat(i)||0}return i+an(e,t,n||(a?"border":"content"),r,o)+"px"}function ln(e){var t=a,n=Gt[e];return n||(n=un(e,t),"none"!==n&&n||(Pt=(Pt||x("<iframe frameborder='0' width='0' height='0'/>").css("cssText","display:block !important")).appendTo(t.documentElement),t=(Pt[0].contentWindow||Pt[0].contentDocument).document,t.write("<!doctype html><html><body>"),t.close(),n=un(e,t),Pt.detach()),Gt[e]=n),n}function un(e,t){var n=x(t.createElement(e)).appendTo(t.body),r=x.css(n[0],"display");return n.remove(),r}x.each(["height","width"],function(e,n){x.cssHooks[n]={get:function(e,r,i){return r?0===e.offsetWidth&&Xt.test(x.css(e,"display"))?x.swap(e,Qt,function(){return sn(e,n,i)}):sn(e,n,i):t},set:function(e,t,r){var i=r&&Rt(e);return on(e,t,r?an(e,n,r,x.support.boxSizing&&"border-box"===x.css(e,"boxSizing",!1,i),i):0)}}}),x.support.opacity||(x.cssHooks.opacity={get:function(e,t){return It.test((t&&e.currentStyle?e.currentStyle.filter:e.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":t?"1":""},set:function(e,t){var n=e.style,r=e.currentStyle,i=x.isNumeric(t)?"alpha(opacity="+100*t+")":"",o=r&&r.filter||n.filter||"";n.zoom=1,(t>=1||""===t)&&""===x.trim(o.replace($t,""))&&n.removeAttribute&&(n.removeAttribute("filter"),""===t||r&&!r.filter)||(n.filter=$t.test(o)?o.replace($t,i):o+" "+i)}}),x(function(){x.support.reliableMarginRight||(x.cssHooks.marginRight={get:function(e,n){return n?x.swap(e,{display:"inline-block"},Wt,[e,"marginRight"]):t}}),!x.support.pixelPosition&&x.fn.position&&x.each(["top","left"],function(e,n){x.cssHooks[n]={get:function(e,r){return r?(r=Wt(e,n),Yt.test(r)?x(e).position()[n]+"px":r):t}}})}),x.expr&&x.expr.filters&&(x.expr.filters.hidden=function(e){return 0>=e.offsetWidth&&0>=e.offsetHeight||!x.support.reliableHiddenOffsets&&"none"===(e.style&&e.style.display||x.css(e,"display"))},x.expr.filters.visible=function(e){return!x.expr.filters.hidden(e)}),x.each({margin:"",padding:"",border:"Width"},function(e,t){x.cssHooks[e+t]={expand:function(n){var r=0,i={},o="string"==typeof n?n.split(" "):[n];for(;4>r;r++)i[e+Zt[r]+t]=o[r]||o[r-2]||o[0];return i}},Ut.test(e)||(x.cssHooks[e+t].set=on)});var cn=/%20/g,pn=/\[\]$/,fn=/\r?\n/g,dn=/^(?:submit|button|image|reset|file)$/i,hn=/^(?:input|select|textarea|keygen)/i;x.fn.extend({serialize:function(){return x.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=x.prop(this,"elements");return e?x.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!x(this).is(":disabled")&&hn.test(this.nodeName)&&!dn.test(e)&&(this.checked||!Ct.test(e))}).map(function(e,t){var n=x(this).val();return null==n?null:x.isArray(n)?x.map(n,function(e){return{name:t.name,value:e.replace(fn,"\r\n")}}):{name:t.name,value:n.replace(fn,"\r\n")}}).get()}}),x.param=function(e,n){var r,i=[],o=function(e,t){t=x.isFunction(t)?t():null==t?"":t,i[i.length]=encodeURIComponent(e)+"="+encodeURIComponent(t)};if(n===t&&(n=x.ajaxSettings&&x.ajaxSettings.traditional),x.isArray(e)||e.jquery&&!x.isPlainObject(e))x.each(e,function(){o(this.name,this.value)});else for(r in e)gn(r,e[r],n,o);return i.join("&").replace(cn,"+")};function gn(e,t,n,r){var i;if(x.isArray(t))x.each(t,function(t,i){n||pn.test(e)?r(e,i):gn(e+"["+("object"==typeof i?t:"")+"]",i,n,r)});else if(n||"object"!==x.type(t))r(e,t);else for(i in t)gn(e+"["+i+"]",t[i],n,r)}x.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(e,t){x.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}),x.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)},bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)}});var mn,yn,vn=x.now(),bn=/\?/,xn=/#.*$/,wn=/([?&])_=[^&]*/,Tn=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,Cn=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Nn=/^(?:GET|HEAD)$/,kn=/^\/\//,En=/^([\w.+-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,Sn=x.fn.load,An={},jn={},Dn="*/".concat("*");try{yn=o.href}catch(Ln){yn=a.createElement("a"),yn.href="",yn=yn.href}mn=En.exec(yn.toLowerCase())||[];function Hn(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(T)||[];if(x.isFunction(n))while(r=o[i++])"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function qn(e,n,r,i){var o={},a=e===jn;function s(l){var u;return o[l]=!0,x.each(e[l]||[],function(e,l){var c=l(n,r,i);return"string"!=typeof c||a||o[c]?a?!(u=c):t:(n.dataTypes.unshift(c),s(c),!1)}),u}return s(n.dataTypes[0])||!o["*"]&&s("*")}function _n(e,n){var r,i,o=x.ajaxSettings.flatOptions||{};for(i in n)n[i]!==t&&((o[i]?e:r||(r={}))[i]=n[i]);return r&&x.extend(!0,e,r),e}x.fn.load=function(e,n,r){if("string"!=typeof e&&Sn)return Sn.apply(this,arguments);var i,o,a,s=this,l=e.indexOf(" ");return l>=0&&(i=e.slice(l,e.length),e=e.slice(0,l)),x.isFunction(n)?(r=n,n=t):n&&"object"==typeof n&&(a="POST"),s.length>0&&x.ajax({url:e,type:a,dataType:"html",data:n}).done(function(e){o=arguments,s.html(i?x("<div>").append(x.parseHTML(e)).find(i):e)}).complete(r&&function(e,t){s.each(r,o||[e.responseText,t,e])}),this},x.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){x.fn[t]=function(e){return this.on(t,e)}}),x.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:yn,type:"GET",isLocal:Cn.test(mn[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Dn,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":x.parseJSON,"text xml":x.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?_n(_n(e,x.ajaxSettings),t):_n(x.ajaxSettings,e)},ajaxPrefilter:Hn(An),ajaxTransport:Hn(jn),ajax:function(e,n){"object"==typeof e&&(n=e,e=t),n=n||{};var r,i,o,a,s,l,u,c,p=x.ajaxSetup({},n),f=p.context||p,d=p.context&&(f.nodeType||f.jquery)?x(f):x.event,h=x.Deferred(),g=x.Callbacks("once memory"),m=p.statusCode||{},y={},v={},b=0,w="canceled",C={readyState:0,getResponseHeader:function(e){var t;if(2===b){if(!c){c={};while(t=Tn.exec(a))c[t[1].toLowerCase()]=t[2]}t=c[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return 2===b?a:null},setRequestHeader:function(e,t){var n=e.toLowerCase();return b||(e=v[n]=v[n]||e,y[e]=t),this},overrideMimeType:function(e){return b||(p.mimeType=e),this},statusCode:function(e){var t;if(e)if(2>b)for(t in e)m[t]=[m[t],e[t]];else C.always(e[C.status]);return this},abort:function(e){var t=e||w;return u&&u.abort(t),k(0,t),this}};if(h.promise(C).complete=g.add,C.success=C.done,C.error=C.fail,p.url=((e||p.url||yn)+"").replace(xn,"").replace(kn,mn[1]+"//"),p.type=n.method||n.type||p.method||p.type,p.dataTypes=x.trim(p.dataType||"*").toLowerCase().match(T)||[""],null==p.crossDomain&&(r=En.exec(p.url.toLowerCase()),p.crossDomain=!(!r||r[1]===mn[1]&&r[2]===mn[2]&&(r[3]||("http:"===r[1]?"80":"443"))===(mn[3]||("http:"===mn[1]?"80":"443")))),p.data&&p.processData&&"string"!=typeof p.data&&(p.data=x.param(p.data,p.traditional)),qn(An,p,n,C),2===b)return C;l=p.global,l&&0===x.active++&&x.event.trigger("ajaxStart"),p.type=p.type.toUpperCase(),p.hasContent=!Nn.test(p.type),o=p.url,p.hasContent||(p.data&&(o=p.url+=(bn.test(o)?"&":"?")+p.data,delete p.data),p.cache===!1&&(p.url=wn.test(o)?o.replace(wn,"$1_="+vn++):o+(bn.test(o)?"&":"?")+"_="+vn++)),p.ifModified&&(x.lastModified[o]&&C.setRequestHeader("If-Modified-Since",x.lastModified[o]),x.etag[o]&&C.setRequestHeader("If-None-Match",x.etag[o])),(p.data&&p.hasContent&&p.contentType!==!1||n.contentType)&&C.setRequestHeader("Content-Type",p.contentType),C.setRequestHeader("Accept",p.dataTypes[0]&&p.accepts[p.dataTypes[0]]?p.accepts[p.dataTypes[0]]+("*"!==p.dataTypes[0]?", "+Dn+"; q=0.01":""):p.accepts["*"]);for(i in p.headers)C.setRequestHeader(i,p.headers[i]);if(p.beforeSend&&(p.beforeSend.call(f,C,p)===!1||2===b))return C.abort();w="abort";for(i in{success:1,error:1,complete:1})C[i](p[i]);if(u=qn(jn,p,n,C)){C.readyState=1,l&&d.trigger("ajaxSend",[C,p]),p.async&&p.timeout>0&&(s=setTimeout(function(){C.abort("timeout")},p.timeout));try{b=1,u.send(y,k)}catch(N){if(!(2>b))throw N;k(-1,N)}}else k(-1,"No Transport");function k(e,n,r,i){var c,y,v,w,T,N=n;2!==b&&(b=2,s&&clearTimeout(s),u=t,a=i||"",C.readyState=e>0?4:0,c=e>=200&&300>e||304===e,r&&(w=Mn(p,C,r)),w=On(p,w,C,c),c?(p.ifModified&&(T=C.getResponseHeader("Last-Modified"),T&&(x.lastModified[o]=T),T=C.getResponseHeader("etag"),T&&(x.etag[o]=T)),204===e||"HEAD"===p.type?N="nocontent":304===e?N="notmodified":(N=w.state,y=w.data,v=w.error,c=!v)):(v=N,(e||!N)&&(N="error",0>e&&(e=0))),C.status=e,C.statusText=(n||N)+"",c?h.resolveWith(f,[y,N,C]):h.rejectWith(f,[C,N,v]),C.statusCode(m),m=t,l&&d.trigger(c?"ajaxSuccess":"ajaxError",[C,p,c?y:v]),g.fireWith(f,[C,N]),l&&(d.trigger("ajaxComplete",[C,p]),--x.active||x.event.trigger("ajaxStop")))}return C},getJSON:function(e,t,n){return x.get(e,t,n,"json")},getScript:function(e,n){return x.get(e,t,n,"script")}}),x.each(["get","post"],function(e,n){x[n]=function(e,r,i,o){return x.isFunction(r)&&(o=o||i,i=r,r=t),x.ajax({url:e,type:n,dataType:o,data:r,success:i})}});function Mn(e,n,r){var i,o,a,s,l=e.contents,u=e.dataTypes;while("*"===u[0])u.shift(),o===t&&(o=e.mimeType||n.getResponseHeader("Content-Type"));if(o)for(s in l)if(l[s]&&l[s].test(o)){u.unshift(s);break}if(u[0]in r)a=u[0];else{for(s in r){if(!u[0]||e.converters[s+" "+u[0]]){a=s;break}i||(i=s)}a=a||i}return a?(a!==u[0]&&u.unshift(a),r[a]):t}function On(e,t,n,r){var i,o,a,s,l,u={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)u[a.toLowerCase()]=e.converters[a];o=c.shift();while(o)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!l&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),l=o,o=c.shift())if("*"===o)o=l;else if("*"!==l&&l!==o){if(a=u[l+" "+o]||u["* "+o],!a)for(i in u)if(s=i.split(" "),s[1]===o&&(a=u[l+" "+s[0]]||u["* "+s[0]])){a===!0?a=u[i]:u[i]!==!0&&(o=s[0],c.unshift(s[1]));break}if(a!==!0)if(a&&e["throws"])t=a(t);else try{t=a(t)}catch(p){return{state:"parsererror",error:a?p:"No conversion from "+l+" to "+o}}}return{state:"success",data:t}}x.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(e){return x.globalEval(e),e}}}),x.ajaxPrefilter("script",function(e){e.cache===t&&(e.cache=!1),e.crossDomain&&(e.type="GET",e.global=!1)}),x.ajaxTransport("script",function(e){if(e.crossDomain){var n,r=a.head||x("head")[0]||a.documentElement;return{send:function(t,i){n=a.createElement("script"),n.async=!0,e.scriptCharset&&(n.charset=e.scriptCharset),n.src=e.url,n.onload=n.onreadystatechange=function(e,t){(t||!n.readyState||/loaded|complete/.test(n.readyState))&&(n.onload=n.onreadystatechange=null,n.parentNode&&n.parentNode.removeChild(n),n=null,t||i(200,"success"))},r.insertBefore(n,r.firstChild)},abort:function(){n&&n.onload(t,!0)}}}});var Fn=[],Bn=/(=)\?(?=&|$)|\?\?/;x.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Fn.pop()||x.expando+"_"+vn++;return this[e]=!0,e}}),x.ajaxPrefilter("json jsonp",function(n,r,i){var o,a,s,l=n.jsonp!==!1&&(Bn.test(n.url)?"url":"string"==typeof n.data&&!(n.contentType||"").indexOf("application/x-www-form-urlencoded")&&Bn.test(n.data)&&"data");return l||"jsonp"===n.dataTypes[0]?(o=n.jsonpCallback=x.isFunction(n.jsonpCallback)?n.jsonpCallback():n.jsonpCallback,l?n[l]=n[l].replace(Bn,"$1"+o):n.jsonp!==!1&&(n.url+=(bn.test(n.url)?"&":"?")+n.jsonp+"="+o),n.converters["script json"]=function(){return s||x.error(o+" was not called"),s[0]},n.dataTypes[0]="json",a=e[o],e[o]=function(){s=arguments},i.always(function(){e[o]=a,n[o]&&(n.jsonpCallback=r.jsonpCallback,Fn.push(o)),s&&x.isFunction(a)&&a(s[0]),s=a=t}),"script"):t});var Pn,Rn,Wn=0,$n=e.ActiveXObject&&function(){var e;for(e in Pn)Pn[e](t,!0)};function In(){try{return new e.XMLHttpRequest}catch(t){}}function zn(){try{return new e.ActiveXObject("Microsoft.XMLHTTP")}catch(t){}}x.ajaxSettings.xhr=e.ActiveXObject?function(){return!this.isLocal&&In()||zn()}:In,Rn=x.ajaxSettings.xhr(),x.support.cors=!!Rn&&"withCredentials"in Rn,Rn=x.support.ajax=!!Rn,Rn&&x.ajaxTransport(function(n){if(!n.crossDomain||x.support.cors){var r;return{send:function(i,o){var a,s,l=n.xhr();if(n.username?l.open(n.type,n.url,n.async,n.username,n.password):l.open(n.type,n.url,n.async),n.xhrFields)for(s in n.xhrFields)l[s]=n.xhrFields[s];n.mimeType&&l.overrideMimeType&&l.overrideMimeType(n.mimeType),n.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest");try{for(s in i)l.setRequestHeader(s,i[s])}catch(u){}l.send(n.hasContent&&n.data||null),r=function(e,i){var s,u,c,p;try{if(r&&(i||4===l.readyState))if(r=t,a&&(l.onreadystatechange=x.noop,$n&&delete Pn[a]),i)4!==l.readyState&&l.abort();else{p={},s=l.status,u=l.getAllResponseHeaders(),"string"==typeof l.responseText&&(p.text=l.responseText);try{c=l.statusText}catch(f){c=""}s||!n.isLocal||n.crossDomain?1223===s&&(s=204):s=p.text?200:404}}catch(d){i||o(-1,d)}p&&o(s,c,p,u)},n.async?4===l.readyState?setTimeout(r):(a=++Wn,$n&&(Pn||(Pn={},x(e).unload($n)),Pn[a]=r),l.onreadystatechange=r):r()},abort:function(){r&&r(t,!0)}}}});var Xn,Un,Vn=/^(?:toggle|show|hide)$/,Yn=RegExp("^(?:([+-])=|)("+w+")([a-z%]*)$","i"),Jn=/queueHooks$/,Gn=[nr],Qn={"*":[function(e,t){var n=this.createTween(e,t),r=n.cur(),i=Yn.exec(t),o=i&&i[3]||(x.cssNumber[e]?"":"px"),a=(x.cssNumber[e]||"px"!==o&&+r)&&Yn.exec(x.css(n.elem,e)),s=1,l=20;if(a&&a[3]!==o){o=o||a[3],i=i||[],a=+r||1;do s=s||".5",a/=s,x.style(n.elem,e,a+o);while(s!==(s=n.cur()/r)&&1!==s&&--l)}return i&&(a=n.start=+a||+r||0,n.unit=o,n.end=i[1]?a+(i[1]+1)*i[2]:+i[2]),n}]};function Kn(){return setTimeout(function(){Xn=t}),Xn=x.now()}function Zn(e,t,n){var r,i=(Qn[t]||[]).concat(Qn["*"]),o=0,a=i.length;for(;a>o;o++)if(r=i[o].call(n,t,e))return r}function er(e,t,n){var r,i,o=0,a=Gn.length,s=x.Deferred().always(function(){delete l.elem}),l=function(){if(i)return!1;var t=Xn||Kn(),n=Math.max(0,u.startTime+u.duration-t),r=n/u.duration||0,o=1-r,a=0,l=u.tweens.length;for(;l>a;a++)u.tweens[a].run(o);return s.notifyWith(e,[u,o,n]),1>o&&l?n:(s.resolveWith(e,[u]),!1)},u=s.promise({elem:e,props:x.extend({},t),opts:x.extend(!0,{specialEasing:{}},n),originalProperties:t,originalOptions:n,startTime:Xn||Kn(),duration:n.duration,tweens:[],createTween:function(t,n){var r=x.Tween(e,u.opts,t,n,u.opts.specialEasing[t]||u.opts.easing);return u.tweens.push(r),r},stop:function(t){var n=0,r=t?u.tweens.length:0;if(i)return this;for(i=!0;r>n;n++)u.tweens[n].run(1);return t?s.resolveWith(e,[u,t]):s.rejectWith(e,[u,t]),this}}),c=u.props;for(tr(c,u.opts.specialEasing);a>o;o++)if(r=Gn[o].call(u,e,c,u.opts))return r;return x.map(c,Zn,u),x.isFunction(u.opts.start)&&u.opts.start.call(e,u),x.fx.timer(x.extend(l,{elem:e,anim:u,queue:u.opts.queue})),u.progress(u.opts.progress).done(u.opts.done,u.opts.complete).fail(u.opts.fail).always(u.opts.always)}function tr(e,t){var n,r,i,o,a;for(n in e)if(r=x.camelCase(n),i=t[r],o=e[n],x.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),a=x.cssHooks[r],a&&"expand"in a){o=a.expand(o),delete e[r];for(n in o)n in e||(e[n]=o[n],t[n]=i)}else t[r]=i}x.Animation=x.extend(er,{tweener:function(e,t){x.isFunction(e)?(t=e,e=["*"]):e=e.split(" ");var n,r=0,i=e.length;for(;i>r;r++)n=e[r],Qn[n]=Qn[n]||[],Qn[n].unshift(t)},prefilter:function(e,t){t?Gn.unshift(e):Gn.push(e)}});function nr(e,t,n){var r,i,o,a,s,l,u=this,c={},p=e.style,f=e.nodeType&&nn(e),d=x._data(e,"fxshow");n.queue||(s=x._queueHooks(e,"fx"),null==s.unqueued&&(s.unqueued=0,l=s.empty.fire,s.empty.fire=function(){s.unqueued||l()}),s.unqueued++,u.always(function(){u.always(function(){s.unqueued--,x.queue(e,"fx").length||s.empty.fire()})})),1===e.nodeType&&("height"in t||"width"in t)&&(n.overflow=[p.overflow,p.overflowX,p.overflowY],"inline"===x.css(e,"display")&&"none"===x.css(e,"float")&&(x.support.inlineBlockNeedsLayout&&"inline"!==ln(e.nodeName)?p.zoom=1:p.display="inline-block")),n.overflow&&(p.overflow="hidden",x.support.shrinkWrapBlocks||u.always(function(){p.overflow=n.overflow[0],p.overflowX=n.overflow[1],p.overflowY=n.overflow[2]}));for(r in t)if(i=t[r],Vn.exec(i)){if(delete t[r],o=o||"toggle"===i,i===(f?"hide":"show"))continue;c[r]=d&&d[r]||x.style(e,r)}if(!x.isEmptyObject(c)){d?"hidden"in d&&(f=d.hidden):d=x._data(e,"fxshow",{}),o&&(d.hidden=!f),f?x(e).show():u.done(function(){x(e).hide()}),u.done(function(){var t;x._removeData(e,"fxshow");for(t in c)x.style(e,t,c[t])});for(r in c)a=Zn(f?d[r]:0,r,u),r in d||(d[r]=a.start,f&&(a.end=a.start,a.start="width"===r||"height"===r?1:0))}}function rr(e,t,n,r,i){return new rr.prototype.init(e,t,n,r,i)}x.Tween=rr,rr.prototype={constructor:rr,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||"swing",this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(x.cssNumber[n]?"":"px")},cur:function(){var e=rr.propHooks[this.prop];return e&&e.get?e.get(this):rr.propHooks._default.get(this)},run:function(e){var t,n=rr.propHooks[this.prop];return this.pos=t=this.options.duration?x.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):rr.propHooks._default.set(this),this}},rr.prototype.init.prototype=rr.prototype,rr.propHooks={_default:{get:function(e){var t;return null==e.elem[e.prop]||e.elem.style&&null!=e.elem.style[e.prop]?(t=x.css(e.elem,e.prop,""),t&&"auto"!==t?t:0):e.elem[e.prop]},set:function(e){x.fx.step[e.prop]?x.fx.step[e.prop](e):e.elem.style&&(null!=e.elem.style[x.cssProps[e.prop]]||x.cssHooks[e.prop])?x.style(e.elem,e.prop,e.now+e.unit):e.elem[e.prop]=e.now}}},rr.propHooks.scrollTop=rr.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},x.each(["toggle","show","hide"],function(e,t){var n=x.fn[t];x.fn[t]=function(e,r,i){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(ir(t,!0),e,r,i)}}),x.fn.extend({fadeTo:function(e,t,n,r){return this.filter(nn).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(e,t,n,r){var i=x.isEmptyObject(e),o=x.speed(t,n,r),a=function(){var t=er(this,x.extend({},e),o);(i||x._data(this,"finish"))&&t.stop(!0)};return a.finish=a,i||o.queue===!1?this.each(a):this.queue(o.queue,a)},stop:function(e,n,r){var i=function(e){var t=e.stop;delete e.stop,t(r)};return"string"!=typeof e&&(r=n,n=e,e=t),n&&e!==!1&&this.queue(e||"fx",[]),this.each(function(){var t=!0,n=null!=e&&e+"queueHooks",o=x.timers,a=x._data(this);if(n)a[n]&&a[n].stop&&i(a[n]);else for(n in a)a[n]&&a[n].stop&&Jn.test(n)&&i(a[n]);for(n=o.length;n--;)o[n].elem!==this||null!=e&&o[n].queue!==e||(o[n].anim.stop(r),t=!1,o.splice(n,1));(t||!r)&&x.dequeue(this,e)})},finish:function(e){return e!==!1&&(e=e||"fx"),this.each(function(){var t,n=x._data(this),r=n[e+"queue"],i=n[e+"queueHooks"],o=x.timers,a=r?r.length:0;for(n.finish=!0,x.queue(this,e,[]),i&&i.stop&&i.stop.call(this,!0),t=o.length;t--;)o[t].elem===this&&o[t].queue===e&&(o[t].anim.stop(!0),o.splice(t,1));for(t=0;a>t;t++)r[t]&&r[t].finish&&r[t].finish.call(this);delete n.finish})}});function ir(e,t){var n,r={height:e},i=0;for(t=t?1:0;4>i;i+=2-t)n=Zt[i],r["margin"+n]=r["padding"+n]=e;return t&&(r.opacity=r.width=e),r}x.each({slideDown:ir("show"),slideUp:ir("hide"),slideToggle:ir("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,t){x.fn[e]=function(e,n,r){return this.animate(t,e,n,r)}}),x.speed=function(e,t,n){var r=e&&"object"==typeof e?x.extend({},e):{complete:n||!n&&t||x.isFunction(e)&&e,duration:e,easing:n&&t||t&&!x.isFunction(t)&&t};return r.duration=x.fx.off?0:"number"==typeof r.duration?r.duration:r.duration in x.fx.speeds?x.fx.speeds[r.duration]:x.fx.speeds._default,(null==r.queue||r.queue===!0)&&(r.queue="fx"),r.old=r.complete,r.complete=function(){x.isFunction(r.old)&&r.old.call(this),r.queue&&x.dequeue(this,r.queue)},r},x.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2}},x.timers=[],x.fx=rr.prototype.init,x.fx.tick=function(){var e,n=x.timers,r=0;for(Xn=x.now();n.length>r;r++)e=n[r],e()||n[r]!==e||n.splice(r--,1);n.length||x.fx.stop(),Xn=t},x.fx.timer=function(e){e()&&x.timers.push(e)&&x.fx.start()},x.fx.interval=13,x.fx.start=function(){Un||(Un=setInterval(x.fx.tick,x.fx.interval))},x.fx.stop=function(){clearInterval(Un),Un=null},x.fx.speeds={slow:600,fast:200,_default:400},x.fx.step={},x.expr&&x.expr.filters&&(x.expr.filters.animated=function(e){return x.grep(x.timers,function(t){return e===t.elem}).length}),x.fn.offset=function(e){if(arguments.length)return e===t?this:this.each(function(t){x.offset.setOffset(this,e,t)});var n,r,o={top:0,left:0},a=this[0],s=a&&a.ownerDocument;if(s)return n=s.documentElement,x.contains(n,a)?(typeof a.getBoundingClientRect!==i&&(o=a.getBoundingClientRect()),r=or(s),{top:o.top+(r.pageYOffset||n.scrollTop)-(n.clientTop||0),left:o.left+(r.pageXOffset||n.scrollLeft)-(n.clientLeft||0)}):o},x.offset={setOffset:function(e,t,n){var r=x.css(e,"position");"static"===r&&(e.style.position="relative");var i=x(e),o=i.offset(),a=x.css(e,"top"),s=x.css(e,"left"),l=("absolute"===r||"fixed"===r)&&x.inArray("auto",[a,s])>-1,u={},c={},p,f;l?(c=i.position(),p=c.top,f=c.left):(p=parseFloat(a)||0,f=parseFloat(s)||0),x.isFunction(t)&&(t=t.call(e,n,o)),null!=t.top&&(u.top=t.top-o.top+p),null!=t.left&&(u.left=t.left-o.left+f),"using"in t?t.using.call(e,u):i.css(u)}},x.fn.extend({position:function(){if(this[0]){var e,t,n={top:0,left:0},r=this[0];return"fixed"===x.css(r,"position")?t=r.getBoundingClientRect():(e=this.offsetParent(),t=this.offset(),x.nodeName(e[0],"html")||(n=e.offset()),n.top+=x.css(e[0],"borderTopWidth",!0),n.left+=x.css(e[0],"borderLeftWidth",!0)),{top:t.top-n.top-x.css(r,"marginTop",!0),left:t.left-n.left-x.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent||s;while(e&&!x.nodeName(e,"html")&&"static"===x.css(e,"position"))e=e.offsetParent;return e||s})}}),x.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(e,n){var r=/Y/.test(n);x.fn[e]=function(i){return x.access(this,function(e,i,o){var a=or(e);return o===t?a?n in a?a[n]:a.document.documentElement[i]:e[i]:(a?a.scrollTo(r?x(a).scrollLeft():o,r?o:x(a).scrollTop()):e[i]=o,t)},e,i,arguments.length,null)}});function or(e){return x.isWindow(e)?e:9===e.nodeType?e.defaultView||e.parentWindow:!1}x.each({Height:"height",Width:"width"},function(e,n){x.each({padding:"inner"+e,content:n,"":"outer"+e},function(r,i){x.fn[i]=function(i,o){var a=arguments.length&&(r||"boolean"!=typeof i),s=r||(i===!0||o===!0?"margin":"border");return x.access(this,function(n,r,i){var o;return x.isWindow(n)?n.document.documentElement["client"+e]:9===n.nodeType?(o=n.documentElement,Math.max(n.body["scroll"+e],o["scroll"+e],n.body["offset"+e],o["offset"+e],o["client"+e])):i===t?x.css(n,r,s):x.style(n,r,i,s)},n,a?i:t,a,null)}})}),x.fn.size=function(){return this.length},x.fn.andSelf=x.fn.addBack,"object"==typeof module&&module&&"object"==typeof module.exports?module.exports=x:(e.jQuery=e.$=x,"function"==typeof define&&define.amd&&define("jquery",[],function(){return x}))})(window);Evidence nginx
-
Tech Detected - Varnish (1)
GET http://code.jquery.com/jquery-1.10.2.min.js
Alert tags Alert description The following "Caching" technology was identified: Varnish.
Described as:
Varnish is a reverse caching proxy.
Other info The following CPE is associated with the identified tech: cpe:2.3:a:varnish-software:varnish_cache:*:*:*:*:*:*:*:*
Request Request line and header section (291 bytes)
GET http://code.jquery.com/jquery-1.10.2.min.js HTTP/1.1 host: code.jquery.com User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:136.0) Gecko/20100101 Firefox/136.0 Accept: */* Accept-Language: en-CA,en-US;q=0.7,en;q=0.3 Connection: keep-alive Referer: http://localhost/Request body (0 bytes)
Response Status line and header section (613 bytes)
HTTP/1.1 200 OK Connection: keep-alive Content-Length: 93107 Server: nginx Content-Type: application/javascript; charset=utf-8 Last-Modified: Fri, 18 Oct 1991 12:00:00 GMT ETag: "28feccc0-16bb3" Cache-Control: public, max-age=31536000, stale-while-revalidate=604800 Access-Control-Allow-Origin: * Cross-Origin-Resource-Policy: cross-origin Via: 1.1 varnish, 1.1 varnish Accept-Ranges: bytes Age: 1575604 Date: Sat, 19 Apr 2025 15:20:32 GMT X-Served-By: cache-lga21955-LGA, cache-yul1970064-YUL X-Cache: HIT, HIT X-Cache-Hits: 3555, 0 X-Timer: S1745076032.218693,VS0,VE1 Vary: Accept-EncodingResponse body (93107 bytes)
/*! jQuery v1.10.2 | (c) 2005, 2013 jQuery Foundation, Inc. | jquery.org/license //@ sourceMappingURL=jquery-1.10.2.min.map */ (function(e,t){var n,r,i=typeof t,o=e.location,a=e.document,s=a.documentElement,l=e.jQuery,u=e.$,c={},p=[],f="1.10.2",d=p.concat,h=p.push,g=p.slice,m=p.indexOf,y=c.toString,v=c.hasOwnProperty,b=f.trim,x=function(e,t){return new x.fn.init(e,t,r)},w=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,T=/\S+/g,C=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,N=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,k=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,E=/^[\],:{}\s]*$/,S=/(?:^|:|,)(?:\s*\[)+/g,A=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,j=/"[^"\\\r\n]*"|true|false|null|-?(?:\d+\.|)\d+(?:[eE][+-]?\d+|)/g,D=/^-ms-/,L=/-([\da-z])/gi,H=function(e,t){return t.toUpperCase()},q=function(e){(a.addEventListener||"load"===e.type||"complete"===a.readyState)&&(_(),x.ready())},_=function(){a.addEventListener?(a.removeEventListener("DOMContentLoaded",q,!1),e.removeEventListener("load",q,!1)):(a.detachEvent("onreadystatechange",q),e.detachEvent("onload",q))};x.fn=x.prototype={jquery:f,constructor:x,init:function(e,n,r){var i,o;if(!e)return this;if("string"==typeof e){if(i="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&e.length>=3?[null,e,null]:N.exec(e),!i||!i[1]&&n)return!n||n.jquery?(n||r).find(e):this.constructor(n).find(e);if(i[1]){if(n=n instanceof x?n[0]:n,x.merge(this,x.parseHTML(i[1],n&&n.nodeType?n.ownerDocument||n:a,!0)),k.test(i[1])&&x.isPlainObject(n))for(i in n)x.isFunction(this[i])?this[i](n[i]):this.attr(i,n[i]);return this}if(o=a.getElementById(i[2]),o&&o.parentNode){if(o.id!==i[2])return r.find(e);this.length=1,this[0]=o}return this.context=a,this.selector=e,this}return e.nodeType?(this.context=this[0]=e,this.length=1,this):x.isFunction(e)?r.ready(e):(e.selector!==t&&(this.selector=e.selector,this.context=e.context),x.makeArray(e,this))},selector:"",length:0,toArray:function(){return g.call(this)},get:function(e){return null==e?this.toArray():0>e?this[this.length+e]:this[e]},pushStack:function(e){var t=x.merge(this.constructor(),e);return t.prevObject=this,t.context=this.context,t},each:function(e,t){return x.each(this,e,t)},ready:function(e){return x.ready.promise().done(e),this},slice:function(){return this.pushStack(g.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(0>e?t:0);return this.pushStack(n>=0&&t>n?[this[n]]:[])},map:function(e){return this.pushStack(x.map(this,function(t,n){return e.call(t,n,t)}))},end:function(){return this.prevObject||this.constructor(null)},push:h,sort:[].sort,splice:[].splice},x.fn.init.prototype=x.fn,x.extend=x.fn.extend=function(){var e,n,r,i,o,a,s=arguments[0]||{},l=1,u=arguments.length,c=!1;for("boolean"==typeof s&&(c=s,s=arguments[1]||{},l=2),"object"==typeof s||x.isFunction(s)||(s={}),u===l&&(s=this,--l);u>l;l++)if(null!=(o=arguments[l]))for(i in o)e=s[i],r=o[i],s!==r&&(c&&r&&(x.isPlainObject(r)||(n=x.isArray(r)))?(n?(n=!1,a=e&&x.isArray(e)?e:[]):a=e&&x.isPlainObject(e)?e:{},s[i]=x.extend(c,a,r)):r!==t&&(s[i]=r));return s},x.extend({expando:"jQuery"+(f+Math.random()).replace(/\D/g,""),noConflict:function(t){return e.$===x&&(e.$=u),t&&e.jQuery===x&&(e.jQuery=l),x},isReady:!1,readyWait:1,holdReady:function(e){e?x.readyWait++:x.ready(!0)},ready:function(e){if(e===!0?!--x.readyWait:!x.isReady){if(!a.body)return setTimeout(x.ready);x.isReady=!0,e!==!0&&--x.readyWait>0||(n.resolveWith(a,[x]),x.fn.trigger&&x(a).trigger("ready").off("ready"))}},isFunction:function(e){return"function"===x.type(e)},isArray:Array.isArray||function(e){return"array"===x.type(e)},isWindow:function(e){return null!=e&&e==e.window},isNumeric:function(e){return!isNaN(parseFloat(e))&&isFinite(e)},type:function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?c[y.call(e)]||"object":typeof e},isPlainObject:function(e){var n;if(!e||"object"!==x.type(e)||e.nodeType||x.isWindow(e))return!1;try{if(e.constructor&&!v.call(e,"constructor")&&!v.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(r){return!1}if(x.support.ownLast)for(n in e)return v.call(e,n);for(n in e);return n===t||v.call(e,n)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},error:function(e){throw Error(e)},parseHTML:function(e,t,n){if(!e||"string"!=typeof e)return null;"boolean"==typeof t&&(n=t,t=!1),t=t||a;var r=k.exec(e),i=!n&&[];return r?[t.createElement(r[1])]:(r=x.buildFragment([e],t,i),i&&x(i).remove(),x.merge([],r.childNodes))},parseJSON:function(n){return e.JSON&&e.JSON.parse?e.JSON.parse(n):null===n?n:"string"==typeof n&&(n=x.trim(n),n&&E.test(n.replace(A,"@").replace(j,"]").replace(S,"")))?Function("return "+n)():(x.error("Invalid JSON: "+n),t)},parseXML:function(n){var r,i;if(!n||"string"!=typeof n)return null;try{e.DOMParser?(i=new DOMParser,r=i.parseFromString(n,"text/xml")):(r=new ActiveXObject("Microsoft.XMLDOM"),r.async="false",r.loadXML(n))}catch(o){r=t}return r&&r.documentElement&&!r.getElementsByTagName("parsererror").length||x.error("Invalid XML: "+n),r},noop:function(){},globalEval:function(t){t&&x.trim(t)&&(e.execScript||function(t){e.eval.call(e,t)})(t)},camelCase:function(e){return e.replace(D,"ms-").replace(L,H)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t,n){var r,i=0,o=e.length,a=M(e);if(n){if(a){for(;o>i;i++)if(r=t.apply(e[i],n),r===!1)break}else for(i in e)if(r=t.apply(e[i],n),r===!1)break}else if(a){for(;o>i;i++)if(r=t.call(e[i],i,e[i]),r===!1)break}else for(i in e)if(r=t.call(e[i],i,e[i]),r===!1)break;return e},trim:b&&!b.call("\ufeff\u00a0")?function(e){return null==e?"":b.call(e)}:function(e){return null==e?"":(e+"").replace(C,"")},makeArray:function(e,t){var n=t||[];return null!=e&&(M(Object(e))?x.merge(n,"string"==typeof e?[e]:e):h.call(n,e)),n},inArray:function(e,t,n){var r;if(t){if(m)return m.call(t,e,n);for(r=t.length,n=n?0>n?Math.max(0,r+n):n:0;r>n;n++)if(n in t&&t[n]===e)return n}return-1},merge:function(e,n){var r=n.length,i=e.length,o=0;if("number"==typeof r)for(;r>o;o++)e[i++]=n[o];else while(n[o]!==t)e[i++]=n[o++];return e.length=i,e},grep:function(e,t,n){var r,i=[],o=0,a=e.length;for(n=!!n;a>o;o++)r=!!t(e[o],o),n!==r&&i.push(e[o]);return i},map:function(e,t,n){var r,i=0,o=e.length,a=M(e),s=[];if(a)for(;o>i;i++)r=t(e[i],i,n),null!=r&&(s[s.length]=r);else for(i in e)r=t(e[i],i,n),null!=r&&(s[s.length]=r);return d.apply([],s)},guid:1,proxy:function(e,n){var r,i,o;return"string"==typeof n&&(o=e[n],n=e,e=o),x.isFunction(e)?(r=g.call(arguments,2),i=function(){return e.apply(n||this,r.concat(g.call(arguments)))},i.guid=e.guid=e.guid||x.guid++,i):t},access:function(e,n,r,i,o,a,s){var l=0,u=e.length,c=null==r;if("object"===x.type(r)){o=!0;for(l in r)x.access(e,n,l,r[l],!0,a,s)}else if(i!==t&&(o=!0,x.isFunction(i)||(s=!0),c&&(s?(n.call(e,i),n=null):(c=n,n=function(e,t,n){return c.call(x(e),n)})),n))for(;u>l;l++)n(e[l],r,s?i:i.call(e[l],l,n(e[l],r)));return o?e:c?n.call(e):u?n(e[0],r):a},now:function(){return(new Date).getTime()},swap:function(e,t,n,r){var i,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=t[o];i=n.apply(e,r||[]);for(o in t)e.style[o]=a[o];return i}}),x.ready.promise=function(t){if(!n)if(n=x.Deferred(),"complete"===a.readyState)setTimeout(x.ready);else if(a.addEventListener)a.addEventListener("DOMContentLoaded",q,!1),e.addEventListener("load",q,!1);else{a.attachEvent("onreadystatechange",q),e.attachEvent("onload",q);var r=!1;try{r=null==e.frameElement&&a.documentElement}catch(i){}r&&r.doScroll&&function o(){if(!x.isReady){try{r.doScroll("left")}catch(e){return setTimeout(o,50)}_(),x.ready()}}()}return n.promise(t)},x.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(e,t){c["[object "+t+"]"]=t.toLowerCase()});function M(e){var t=e.length,n=x.type(e);return x.isWindow(e)?!1:1===e.nodeType&&t?!0:"array"===n||"function"!==n&&(0===t||"number"==typeof t&&t>0&&t-1 in e)}r=x(a),function(e,t){var n,r,i,o,a,s,l,u,c,p,f,d,h,g,m,y,v,b="sizzle"+-new Date,w=e.document,T=0,C=0,N=st(),k=st(),E=st(),S=!1,A=function(e,t){return e===t?(S=!0,0):0},j=typeof t,D=1<<31,L={}.hasOwnProperty,H=[],q=H.pop,_=H.push,M=H.push,O=H.slice,F=H.indexOf||function(e){var t=0,n=this.length;for(;n>t;t++)if(this[t]===e)return t;return-1},B="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",P="[\\x20\\t\\r\\n\\f]",R="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",W=R.replace("w","w#"),$="\\["+P+"*("+R+")"+P+"*(?:([*^$|!~]?=)"+P+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+W+")|)|)"+P+"*\\]",I=":("+R+")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|"+$.replace(3,8)+")*)|.*)\\)|)",z=RegExp("^"+P+"+|((?:^|[^\\\\])(?:\\\\.)*)"+P+"+$","g"),X=RegExp("^"+P+"*,"+P+"*"),U=RegExp("^"+P+"*([>+~]|"+P+")"+P+"*"),V=RegExp(P+"*[+~]"),Y=RegExp("="+P+"*([^\\]'\"]*)"+P+"*\\]","g"),J=RegExp(I),G=RegExp("^"+W+"$"),Q={ID:RegExp("^#("+R+")"),CLASS:RegExp("^\\.("+R+")"),TAG:RegExp("^("+R.replace("w","w*")+")"),ATTR:RegExp("^"+$),PSEUDO:RegExp("^"+I),CHILD:RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+P+"*(even|odd|(([+-]|)(\\d*)n|)"+P+"*(?:([+-]|)"+P+"*(\\d+)|))"+P+"*\\)|)","i"),bool:RegExp("^(?:"+B+")$","i"),needsContext:RegExp("^"+P+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+P+"*((?:-\\d)?\\d*)"+P+"*\\)|)(?=[^-]|$)","i")},K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,et=/^(?:input|select|textarea|button)$/i,tt=/^h\d$/i,nt=/'|\\/g,rt=RegExp("\\\\([\\da-f]{1,6}"+P+"?|("+P+")|.)","ig"),it=function(e,t,n){var r="0x"+t-65536;return r!==r||n?t:0>r?String.fromCharCode(r+65536):String.fromCharCode(55296|r>>10,56320|1023&r)};try{M.apply(H=O.call(w.childNodes),w.childNodes),H[w.childNodes.length].nodeType}catch(ot){M={apply:H.length?function(e,t){_.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function at(e,t,n,i){var o,a,s,l,u,c,d,m,y,x;if((t?t.ownerDocument||t:w)!==f&&p(t),t=t||f,n=n||[],!e||"string"!=typeof e)return n;if(1!==(l=t.nodeType)&&9!==l)return[];if(h&&!i){if(o=Z.exec(e))if(s=o[1]){if(9===l){if(a=t.getElementById(s),!a||!a.parentNode)return n;if(a.id===s)return n.push(a),n}else if(t.ownerDocument&&(a=t.ownerDocument.getElementById(s))&&v(t,a)&&a.id===s)return n.push(a),n}else{if(o[2])return M.apply(n,t.getElementsByTagName(e)),n;if((s=o[3])&&r.getElementsByClassName&&t.getElementsByClassName)return M.apply(n,t.getElementsByClassName(s)),n}if(r.qsa&&(!g||!g.test(e))){if(m=d=b,y=t,x=9===l&&e,1===l&&"object"!==t.nodeName.toLowerCase()){c=mt(e),(d=t.getAttribute("id"))?m=d.replace(nt,"\\$&"):t.setAttribute("id",m),m="[id='"+m+"'] ",u=c.length;while(u--)c[u]=m+yt(c[u]);y=V.test(e)&&t.parentNode||t,x=c.join(",")}if(x)try{return M.apply(n,y.querySelectorAll(x)),n}catch(T){}finally{d||t.removeAttribute("id")}}}return kt(e.replace(z,"$1"),t,n,i)}function st(){var e=[];function t(n,r){return e.push(n+=" ")>o.cacheLength&&delete t[e.shift()],t[n]=r}return t}function lt(e){return e[b]=!0,e}function ut(e){var t=f.createElement("div");try{return!!e(t)}catch(n){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function ct(e,t){var n=e.split("|"),r=e.length;while(r--)o.attrHandle[n[r]]=t}function pt(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&(~t.sourceIndex||D)-(~e.sourceIndex||D);if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function ft(e){return function(t){var n=t.nodeName.toLowerCase();return"input"===n&&t.type===e}}function dt(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function ht(e){return lt(function(t){return t=+t,lt(function(n,r){var i,o=e([],n.length,t),a=o.length;while(a--)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}s=at.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return t?"HTML"!==t.nodeName:!1},r=at.support={},p=at.setDocument=function(e){var n=e?e.ownerDocument||e:w,i=n.defaultView;return n!==f&&9===n.nodeType&&n.documentElement?(f=n,d=n.documentElement,h=!s(n),i&&i.attachEvent&&i!==i.top&&i.attachEvent("onbeforeunload",function(){p()}),r.attributes=ut(function(e){return e.className="i",!e.getAttribute("className")}),r.getElementsByTagName=ut(function(e){return e.appendChild(n.createComment("")),!e.getElementsByTagName("*").length}),r.getElementsByClassName=ut(function(e){return e.innerHTML="<div class='a'></div><div class='a i'></div>",e.firstChild.className="i",2===e.getElementsByClassName("i").length}),r.getById=ut(function(e){return d.appendChild(e).id=b,!n.getElementsByName||!n.getElementsByName(b).length}),r.getById?(o.find.ID=function(e,t){if(typeof t.getElementById!==j&&h){var n=t.getElementById(e);return n&&n.parentNode?[n]:[]}},o.filter.ID=function(e){var t=e.replace(rt,it);return function(e){return e.getAttribute("id")===t}}):(delete o.find.ID,o.filter.ID=function(e){var t=e.replace(rt,it);return function(e){var n=typeof e.getAttributeNode!==j&&e.getAttributeNode("id");return n&&n.value===t}}),o.find.TAG=r.getElementsByTagName?function(e,n){return typeof n.getElementsByTagName!==j?n.getElementsByTagName(e):t}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},o.find.CLASS=r.getElementsByClassName&&function(e,n){return typeof n.getElementsByClassName!==j&&h?n.getElementsByClassName(e):t},m=[],g=[],(r.qsa=K.test(n.querySelectorAll))&&(ut(function(e){e.innerHTML="<select><option selected=''></option></select>",e.querySelectorAll("[selected]").length||g.push("\\["+P+"*(?:value|"+B+")"),e.querySelectorAll(":checked").length||g.push(":checked")}),ut(function(e){var t=n.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("t",""),e.querySelectorAll("[t^='']").length&&g.push("[*^$]="+P+"*(?:''|\"\")"),e.querySelectorAll(":enabled").length||g.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),g.push(",.*:")})),(r.matchesSelector=K.test(y=d.webkitMatchesSelector||d.mozMatchesSelector||d.oMatchesSelector||d.msMatchesSelector))&&ut(function(e){r.disconnectedMatch=y.call(e,"div"),y.call(e,"[s!='']:x"),m.push("!=",I)}),g=g.length&&RegExp(g.join("|")),m=m.length&&RegExp(m.join("|")),v=K.test(d.contains)||d.compareDocumentPosition?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},A=d.compareDocumentPosition?function(e,t){if(e===t)return S=!0,0;var i=t.compareDocumentPosition&&e.compareDocumentPosition&&e.compareDocumentPosition(t);return i?1&i||!r.sortDetached&&t.compareDocumentPosition(e)===i?e===n||v(w,e)?-1:t===n||v(w,t)?1:c?F.call(c,e)-F.call(c,t):0:4&i?-1:1:e.compareDocumentPosition?-1:1}:function(e,t){var r,i=0,o=e.parentNode,a=t.parentNode,s=[e],l=[t];if(e===t)return S=!0,0;if(!o||!a)return e===n?-1:t===n?1:o?-1:a?1:c?F.call(c,e)-F.call(c,t):0;if(o===a)return pt(e,t);r=e;while(r=r.parentNode)s.unshift(r);r=t;while(r=r.parentNode)l.unshift(r);while(s[i]===l[i])i++;return i?pt(s[i],l[i]):s[i]===w?-1:l[i]===w?1:0},n):f},at.matches=function(e,t){return at(e,null,null,t)},at.matchesSelector=function(e,t){if((e.ownerDocument||e)!==f&&p(e),t=t.replace(Y,"='$1']"),!(!r.matchesSelector||!h||m&&m.test(t)||g&&g.test(t)))try{var n=y.call(e,t);if(n||r.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(i){}return at(t,f,null,[e]).length>0},at.contains=function(e,t){return(e.ownerDocument||e)!==f&&p(e),v(e,t)},at.attr=function(e,n){(e.ownerDocument||e)!==f&&p(e);var i=o.attrHandle[n.toLowerCase()],a=i&&L.call(o.attrHandle,n.toLowerCase())?i(e,n,!h):t;return a===t?r.attributes||!h?e.getAttribute(n):(a=e.getAttributeNode(n))&&a.specified?a.value:null:a},at.error=function(e){throw Error("Syntax error, unrecognized expression: "+e)},at.uniqueSort=function(e){var t,n=[],i=0,o=0;if(S=!r.detectDuplicates,c=!r.sortStable&&e.slice(0),e.sort(A),S){while(t=e[o++])t===e[o]&&(i=n.push(o));while(i--)e.splice(n[i],1)}return e},a=at.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=a(e)}else if(3===i||4===i)return e.nodeValue}else for(;t=e[r];r++)n+=a(t);return n},o=at.selectors={cacheLength:50,createPseudo:lt,match:Q,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(rt,it),e[3]=(e[4]||e[5]||"").replace(rt,it),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||at.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&at.error(e[0]),e},PSEUDO:function(e){var n,r=!e[5]&&e[2];return Q.CHILD.test(e[0])?null:(e[3]&&e[4]!==t?e[2]=e[4]:r&&J.test(r)&&(n=mt(r,!0))&&(n=r.indexOf(")",r.length-n)-r.length)&&(e[0]=e[0].slice(0,n),e[2]=r.slice(0,n)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(rt,it).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=N[e+" "];return t||(t=RegExp("(^|"+P+")"+e+"("+P+"|$)"))&&N(e,function(e){return t.test("string"==typeof e.className&&e.className||typeof e.getAttribute!==j&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=at.attr(r,e);return null==i?"!="===t:t?(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i+" ").indexOf(n)>-1:"|="===t?i===n||i.slice(0,n.length+1)===n+"-":!1):!0}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,l){var u,c,p,f,d,h,g=o!==a?"nextSibling":"previousSibling",m=t.parentNode,y=s&&t.nodeName.toLowerCase(),v=!l&&!s;if(m){if(o){while(g){p=t;while(p=p[g])if(s?p.nodeName.toLowerCase()===y:1===p.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?m.firstChild:m.lastChild],a&&v){c=m[b]||(m[b]={}),u=c[e]||[],d=u[0]===T&&u[1],f=u[0]===T&&u[2],p=d&&m.childNodes[d];while(p=++d&&p&&p[g]||(f=d=0)||h.pop())if(1===p.nodeType&&++f&&p===t){c[e]=[T,d,f];break}}else if(v&&(u=(t[b]||(t[b]={}))[e])&&u[0]===T)f=u[1];else while(p=++d&&p&&p[g]||(f=d=0)||h.pop())if((s?p.nodeName.toLowerCase()===y:1===p.nodeType)&&++f&&(v&&((p[b]||(p[b]={}))[e]=[T,f]),p===t))break;return f-=i,f===r||0===f%r&&f/r>=0}}},PSEUDO:function(e,t){var n,r=o.pseudos[e]||o.setFilters[e.toLowerCase()]||at.error("unsupported pseudo: "+e);return r[b]?r(t):r.length>1?(n=[e,e,"",t],o.setFilters.hasOwnProperty(e.toLowerCase())?lt(function(e,n){var i,o=r(e,t),a=o.length;while(a--)i=F.call(e,o[a]),e[i]=!(n[i]=o[a])}):function(e){return r(e,0,n)}):r}},pseudos:{not:lt(function(e){var t=[],n=[],r=l(e.replace(z,"$1"));return r[b]?lt(function(e,t,n,i){var o,a=r(e,null,i,[]),s=e.length;while(s--)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),!n.pop()}}),has:lt(function(e){return function(t){return at(e,t).length>0}}),contains:lt(function(e){return function(t){return(t.textContent||t.innerText||a(t)).indexOf(e)>-1}}),lang:lt(function(e){return G.test(e||"")||at.error("unsupported lang: "+e),e=e.replace(rt,it).toLowerCase(),function(t){var n;do if(n=h?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return n=n.toLowerCase(),n===e||0===n.indexOf(e+"-");while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===d},focus:function(e){return e===f.activeElement&&(!f.hasFocus||f.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:function(e){return e.disabled===!1},disabled:function(e){return e.disabled===!0},checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeName>"@"||3===e.nodeType||4===e.nodeType)return!1;return!0},parent:function(e){return!o.pseudos.empty(e)},header:function(e){return tt.test(e.nodeName)},input:function(e){return et.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||t.toLowerCase()===e.type)},first:ht(function(){return[0]}),last:ht(function(e,t){return[t-1]}),eq:ht(function(e,t,n){return[0>n?n+t:n]}),even:ht(function(e,t){var n=0;for(;t>n;n+=2)e.push(n);return e}),odd:ht(function(e,t){var n=1;for(;t>n;n+=2)e.push(n);return e}),lt:ht(function(e,t,n){var r=0>n?n+t:n;for(;--r>=0;)e.push(r);return e}),gt:ht(function(e,t,n){var r=0>n?n+t:n;for(;t>++r;)e.push(r);return e})}},o.pseudos.nth=o.pseudos.eq;for(n in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})o.pseudos[n]=ft(n);for(n in{submit:!0,reset:!0})o.pseudos[n]=dt(n);function gt(){}gt.prototype=o.filters=o.pseudos,o.setFilters=new gt;function mt(e,t){var n,r,i,a,s,l,u,c=k[e+" "];if(c)return t?0:c.slice(0);s=e,l=[],u=o.preFilter;while(s){(!n||(r=X.exec(s)))&&(r&&(s=s.slice(r[0].length)||s),l.push(i=[])),n=!1,(r=U.exec(s))&&(n=r.shift(),i.push({value:n,type:r[0].replace(z," ")}),s=s.slice(n.length));for(a in o.filter)!(r=Q[a].exec(s))||u[a]&&!(r=u[a](r))||(n=r.shift(),i.push({value:n,type:a,matches:r}),s=s.slice(n.length));if(!n)break}return t?s.length:s?at.error(e):k(e,l).slice(0)}function yt(e){var t=0,n=e.length,r="";for(;n>t;t++)r+=e[t].value;return r}function vt(e,t,n){var r=t.dir,o=n&&"parentNode"===r,a=C++;return t.first?function(t,n,i){while(t=t[r])if(1===t.nodeType||o)return e(t,n,i)}:function(t,n,s){var l,u,c,p=T+" "+a;if(s){while(t=t[r])if((1===t.nodeType||o)&&e(t,n,s))return!0}else while(t=t[r])if(1===t.nodeType||o)if(c=t[b]||(t[b]={}),(u=c[r])&&u[0]===p){if((l=u[1])===!0||l===i)return l===!0}else if(u=c[r]=[p],u[1]=e(t,n,s)||i,u[1]===!0)return!0}}function bt(e){return e.length>1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function xt(e,t,n,r,i){var o,a=[],s=0,l=e.length,u=null!=t;for(;l>s;s++)(o=e[s])&&(!n||n(o,r,i))&&(a.push(o),u&&t.push(s));return a}function wt(e,t,n,r,i,o){return r&&!r[b]&&(r=wt(r)),i&&!i[b]&&(i=wt(i,o)),lt(function(o,a,s,l){var u,c,p,f=[],d=[],h=a.length,g=o||Nt(t||"*",s.nodeType?[s]:s,[]),m=!e||!o&&t?g:xt(g,f,e,s,l),y=n?i||(o?e:h||r)?[]:a:m;if(n&&n(m,y,s,l),r){u=xt(y,d),r(u,[],s,l),c=u.length;while(c--)(p=u[c])&&(y[d[c]]=!(m[d[c]]=p))}if(o){if(i||e){if(i){u=[],c=y.length;while(c--)(p=y[c])&&u.push(m[c]=p);i(null,y=[],u,l)}c=y.length;while(c--)(p=y[c])&&(u=i?F.call(o,p):f[c])>-1&&(o[u]=!(a[u]=p))}}else y=xt(y===a?y.splice(h,y.length):y),i?i(null,a,y,l):M.apply(a,y)})}function Tt(e){var t,n,r,i=e.length,a=o.relative[e[0].type],s=a||o.relative[" "],l=a?1:0,c=vt(function(e){return e===t},s,!0),p=vt(function(e){return F.call(t,e)>-1},s,!0),f=[function(e,n,r){return!a&&(r||n!==u)||((t=n).nodeType?c(e,n,r):p(e,n,r))}];for(;i>l;l++)if(n=o.relative[e[l].type])f=[vt(bt(f),n)];else{if(n=o.filter[e[l].type].apply(null,e[l].matches),n[b]){for(r=++l;i>r;r++)if(o.relative[e[r].type])break;return wt(l>1&&bt(f),l>1&&yt(e.slice(0,l-1).concat({value:" "===e[l-2].type?"*":""})).replace(z,"$1"),n,r>l&&Tt(e.slice(l,r)),i>r&&Tt(e=e.slice(r)),i>r&&yt(e))}f.push(n)}return bt(f)}function Ct(e,t){var n=0,r=t.length>0,a=e.length>0,s=function(s,l,c,p,d){var h,g,m,y=[],v=0,b="0",x=s&&[],w=null!=d,C=u,N=s||a&&o.find.TAG("*",d&&l.parentNode||l),k=T+=null==C?1:Math.random()||.1;for(w&&(u=l!==f&&l,i=n);null!=(h=N[b]);b++){if(a&&h){g=0;while(m=e[g++])if(m(h,l,c)){p.push(h);break}w&&(T=k,i=++n)}r&&((h=!m&&h)&&v--,s&&x.push(h))}if(v+=b,r&&b!==v){g=0;while(m=t[g++])m(x,y,l,c);if(s){if(v>0)while(b--)x[b]||y[b]||(y[b]=q.call(p));y=xt(y)}M.apply(p,y),w&&!s&&y.length>0&&v+t.length>1&&at.uniqueSort(p)}return w&&(T=k,u=C),x};return r?lt(s):s}l=at.compile=function(e,t){var n,r=[],i=[],o=E[e+" "];if(!o){t||(t=mt(e)),n=t.length;while(n--)o=Tt(t[n]),o[b]?r.push(o):i.push(o);o=E(e,Ct(i,r))}return o};function Nt(e,t,n){var r=0,i=t.length;for(;i>r;r++)at(e,t[r],n);return n}function kt(e,t,n,i){var a,s,u,c,p,f=mt(e);if(!i&&1===f.length){if(s=f[0]=f[0].slice(0),s.length>2&&"ID"===(u=s[0]).type&&r.getById&&9===t.nodeType&&h&&o.relative[s[1].type]){if(t=(o.find.ID(u.matches[0].replace(rt,it),t)||[])[0],!t)return n;e=e.slice(s.shift().value.length)}a=Q.needsContext.test(e)?0:s.length;while(a--){if(u=s[a],o.relative[c=u.type])break;if((p=o.find[c])&&(i=p(u.matches[0].replace(rt,it),V.test(s[0].type)&&t.parentNode||t))){if(s.splice(a,1),e=i.length&&yt(s),!e)return M.apply(n,i),n;break}}}return l(e,f)(i,t,!h,n,V.test(e)),n}r.sortStable=b.split("").sort(A).join("")===b,r.detectDuplicates=S,p(),r.sortDetached=ut(function(e){return 1&e.compareDocumentPosition(f.createElement("div"))}),ut(function(e){return e.innerHTML="<a href='#'></a>","#"===e.firstChild.getAttribute("href")})||ct("type|href|height|width",function(e,n,r){return r?t:e.getAttribute(n,"type"===n.toLowerCase()?1:2)}),r.attributes&&ut(function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||ct("value",function(e,n,r){return r||"input"!==e.nodeName.toLowerCase()?t:e.defaultValue}),ut(function(e){return null==e.getAttribute("disabled")})||ct(B,function(e,n,r){var i;return r?t:(i=e.getAttributeNode(n))&&i.specified?i.value:e[n]===!0?n.toLowerCase():null}),x.find=at,x.expr=at.selectors,x.expr[":"]=x.expr.pseudos,x.unique=at.uniqueSort,x.text=at.getText,x.isXMLDoc=at.isXML,x.contains=at.contains}(e);var O={};function F(e){var t=O[e]={};return x.each(e.match(T)||[],function(e,n){t[n]=!0}),t}x.Callbacks=function(e){e="string"==typeof e?O[e]||F(e):x.extend({},e);var n,r,i,o,a,s,l=[],u=!e.once&&[],c=function(t){for(r=e.memory&&t,i=!0,a=s||0,s=0,o=l.length,n=!0;l&&o>a;a++)if(l[a].apply(t[0],t[1])===!1&&e.stopOnFalse){r=!1;break}n=!1,l&&(u?u.length&&c(u.shift()):r?l=[]:p.disable())},p={add:function(){if(l){var t=l.length;(function i(t){x.each(t,function(t,n){var r=x.type(n);"function"===r?e.unique&&p.has(n)||l.push(n):n&&n.length&&"string"!==r&&i(n)})})(arguments),n?o=l.length:r&&(s=t,c(r))}return this},remove:function(){return l&&x.each(arguments,function(e,t){var r;while((r=x.inArray(t,l,r))>-1)l.splice(r,1),n&&(o>=r&&o--,a>=r&&a--)}),this},has:function(e){return e?x.inArray(e,l)>-1:!(!l||!l.length)},empty:function(){return l=[],o=0,this},disable:function(){return l=u=r=t,this},disabled:function(){return!l},lock:function(){return u=t,r||p.disable(),this},locked:function(){return!u},fireWith:function(e,t){return!l||i&&!u||(t=t||[],t=[e,t.slice?t.slice():t],n?u.push(t):c(t)),this},fire:function(){return p.fireWith(this,arguments),this},fired:function(){return!!i}};return p},x.extend({Deferred:function(e){var t=[["resolve","done",x.Callbacks("once memory"),"resolved"],["reject","fail",x.Callbacks("once memory"),"rejected"],["notify","progress",x.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return x.Deferred(function(n){x.each(t,function(t,o){var a=o[0],s=x.isFunction(e[t])&&e[t];i[o[1]](function(){var e=s&&s.apply(this,arguments);e&&x.isFunction(e.promise)?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[a+"With"](this===r?n.promise():this,s?[e]:arguments)})}),e=null}).promise()},promise:function(e){return null!=e?x.extend(e,r):r}},i={};return r.pipe=r.then,x.each(t,function(e,o){var a=o[2],s=o[3];r[o[1]]=a.add,s&&a.add(function(){n=s},t[1^e][2].disable,t[2][2].lock),i[o[0]]=function(){return i[o[0]+"With"](this===i?r:this,arguments),this},i[o[0]+"With"]=a.fireWith}),r.promise(i),e&&e.call(i,i),i},when:function(e){var t=0,n=g.call(arguments),r=n.length,i=1!==r||e&&x.isFunction(e.promise)?r:0,o=1===i?e:x.Deferred(),a=function(e,t,n){return function(r){t[e]=this,n[e]=arguments.length>1?g.call(arguments):r,n===s?o.notifyWith(t,n):--i||o.resolveWith(t,n)}},s,l,u;if(r>1)for(s=Array(r),l=Array(r),u=Array(r);r>t;t++)n[t]&&x.isFunction(n[t].promise)?n[t].promise().done(a(t,u,n)).fail(o.reject).progress(a(t,l,s)):--i;return i||o.resolveWith(u,n),o.promise()}}),x.support=function(t){var n,r,o,s,l,u,c,p,f,d=a.createElement("div");if(d.setAttribute("className","t"),d.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",n=d.getElementsByTagName("*")||[],r=d.getElementsByTagName("a")[0],!r||!r.style||!n.length)return t;s=a.createElement("select"),u=s.appendChild(a.createElement("option")),o=d.getElementsByTagName("input")[0],r.style.cssText="top:1px;float:left;opacity:.5",t.getSetAttribute="t"!==d.className,t.leadingWhitespace=3===d.firstChild.nodeType,t.tbody=!d.getElementsByTagName("tbody").length,t.htmlSerialize=!!d.getElementsByTagName("link").length,t.style=/top/.test(r.getAttribute("style")),t.hrefNormalized="/a"===r.getAttribute("href"),t.opacity=/^0.5/.test(r.style.opacity),t.cssFloat=!!r.style.cssFloat,t.checkOn=!!o.value,t.optSelected=u.selected,t.enctype=!!a.createElement("form").enctype,t.html5Clone="<:nav></:nav>"!==a.createElement("nav").cloneNode(!0).outerHTML,t.inlineBlockNeedsLayout=!1,t.shrinkWrapBlocks=!1,t.pixelPosition=!1,t.deleteExpando=!0,t.noCloneEvent=!0,t.reliableMarginRight=!0,t.boxSizingReliable=!0,o.checked=!0,t.noCloneChecked=o.cloneNode(!0).checked,s.disabled=!0,t.optDisabled=!u.disabled;try{delete d.test}catch(h){t.deleteExpando=!1}o=a.createElement("input"),o.setAttribute("value",""),t.input=""===o.getAttribute("value"),o.value="t",o.setAttribute("type","radio"),t.radioValue="t"===o.value,o.setAttribute("checked","t"),o.setAttribute("name","t"),l=a.createDocumentFragment(),l.appendChild(o),t.appendChecked=o.checked,t.checkClone=l.cloneNode(!0).cloneNode(!0).lastChild.checked,d.attachEvent&&(d.attachEvent("onclick",function(){t.noCloneEvent=!1}),d.cloneNode(!0).click());for(f in{submit:!0,change:!0,focusin:!0})d.setAttribute(c="on"+f,"t"),t[f+"Bubbles"]=c in e||d.attributes[c].expando===!1;d.style.backgroundClip="content-box",d.cloneNode(!0).style.backgroundClip="",t.clearCloneStyle="content-box"===d.style.backgroundClip;for(f in x(t))break;return t.ownLast="0"!==f,x(function(){var n,r,o,s="padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;",l=a.getElementsByTagName("body")[0];l&&(n=a.createElement("div"),n.style.cssText="border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px",l.appendChild(n).appendChild(d),d.innerHTML="<table><tr><td></td><td>t</td></tr></table>",o=d.getElementsByTagName("td"),o[0].style.cssText="padding:0;margin:0;border:0;display:none",p=0===o[0].offsetHeight,o[0].style.display="",o[1].style.display="none",t.reliableHiddenOffsets=p&&0===o[0].offsetHeight,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",x.swap(l,null!=l.style.zoom?{zoom:1}:{},function(){t.boxSizing=4===d.offsetWidth}),e.getComputedStyle&&(t.pixelPosition="1%"!==(e.getComputedStyle(d,null)||{}).top,t.boxSizingReliable="4px"===(e.getComputedStyle(d,null)||{width:"4px"}).width,r=d.appendChild(a.createElement("div")),r.style.cssText=d.style.cssText=s,r.style.marginRight=r.style.width="0",d.style.width="1px",t.reliableMarginRight=!parseFloat((e.getComputedStyle(r,null)||{}).marginRight)),typeof d.style.zoom!==i&&(d.innerHTML="",d.style.cssText=s+"width:1px;padding:1px;display:inline;zoom:1",t.inlineBlockNeedsLayout=3===d.offsetWidth,d.style.display="block",d.innerHTML="<div></div>",d.firstChild.style.width="5px",t.shrinkWrapBlocks=3!==d.offsetWidth,t.inlineBlockNeedsLayout&&(l.style.zoom=1)),l.removeChild(n),n=d=o=r=null)}),n=s=l=u=r=o=null,t }({});var B=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,P=/([A-Z])/g;function R(e,n,r,i){if(x.acceptData(e)){var o,a,s=x.expando,l=e.nodeType,u=l?x.cache:e,c=l?e[s]:e[s]&&s;if(c&&u[c]&&(i||u[c].data)||r!==t||"string"!=typeof n)return c||(c=l?e[s]=p.pop()||x.guid++:s),u[c]||(u[c]=l?{}:{toJSON:x.noop}),("object"==typeof n||"function"==typeof n)&&(i?u[c]=x.extend(u[c],n):u[c].data=x.extend(u[c].data,n)),a=u[c],i||(a.data||(a.data={}),a=a.data),r!==t&&(a[x.camelCase(n)]=r),"string"==typeof n?(o=a[n],null==o&&(o=a[x.camelCase(n)])):o=a,o}}function W(e,t,n){if(x.acceptData(e)){var r,i,o=e.nodeType,a=o?x.cache:e,s=o?e[x.expando]:x.expando;if(a[s]){if(t&&(r=n?a[s]:a[s].data)){x.isArray(t)?t=t.concat(x.map(t,x.camelCase)):t in r?t=[t]:(t=x.camelCase(t),t=t in r?[t]:t.split(" ")),i=t.length;while(i--)delete r[t[i]];if(n?!I(r):!x.isEmptyObject(r))return}(n||(delete a[s].data,I(a[s])))&&(o?x.cleanData([e],!0):x.support.deleteExpando||a!=a.window?delete a[s]:a[s]=null)}}}x.extend({cache:{},noData:{applet:!0,embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(e){return e=e.nodeType?x.cache[e[x.expando]]:e[x.expando],!!e&&!I(e)},data:function(e,t,n){return R(e,t,n)},removeData:function(e,t){return W(e,t)},_data:function(e,t,n){return R(e,t,n,!0)},_removeData:function(e,t){return W(e,t,!0)},acceptData:function(e){if(e.nodeType&&1!==e.nodeType&&9!==e.nodeType)return!1;var t=e.nodeName&&x.noData[e.nodeName.toLowerCase()];return!t||t!==!0&&e.getAttribute("classid")===t}}),x.fn.extend({data:function(e,n){var r,i,o=null,a=0,s=this[0];if(e===t){if(this.length&&(o=x.data(s),1===s.nodeType&&!x._data(s,"parsedAttrs"))){for(r=s.attributes;r.length>a;a++)i=r[a].name,0===i.indexOf("data-")&&(i=x.camelCase(i.slice(5)),$(s,i,o[i]));x._data(s,"parsedAttrs",!0)}return o}return"object"==typeof e?this.each(function(){x.data(this,e)}):arguments.length>1?this.each(function(){x.data(this,e,n)}):s?$(s,e,x.data(s,e)):null},removeData:function(e){return this.each(function(){x.removeData(this,e)})}});function $(e,n,r){if(r===t&&1===e.nodeType){var i="data-"+n.replace(P,"-$1").toLowerCase();if(r=e.getAttribute(i),"string"==typeof r){try{r="true"===r?!0:"false"===r?!1:"null"===r?null:+r+""===r?+r:B.test(r)?x.parseJSON(r):r}catch(o){}x.data(e,n,r)}else r=t}return r}function I(e){var t;for(t in e)if(("data"!==t||!x.isEmptyObject(e[t]))&&"toJSON"!==t)return!1;return!0}x.extend({queue:function(e,n,r){var i;return e?(n=(n||"fx")+"queue",i=x._data(e,n),r&&(!i||x.isArray(r)?i=x._data(e,n,x.makeArray(r)):i.push(r)),i||[]):t},dequeue:function(e,t){t=t||"fx";var n=x.queue(e,t),r=n.length,i=n.shift(),o=x._queueHooks(e,t),a=function(){x.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,a,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return x._data(e,n)||x._data(e,n,{empty:x.Callbacks("once memory").add(function(){x._removeData(e,t+"queue"),x._removeData(e,n)})})}}),x.fn.extend({queue:function(e,n){var r=2;return"string"!=typeof e&&(n=e,e="fx",r--),r>arguments.length?x.queue(this[0],e):n===t?this:this.each(function(){var t=x.queue(this,e,n);x._queueHooks(this,e),"fx"===e&&"inprogress"!==t[0]&&x.dequeue(this,e)})},dequeue:function(e){return this.each(function(){x.dequeue(this,e)})},delay:function(e,t){return e=x.fx?x.fx.speeds[e]||e:e,t=t||"fx",this.queue(t,function(t,n){var r=setTimeout(t,e);n.stop=function(){clearTimeout(r)}})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,n){var r,i=1,o=x.Deferred(),a=this,s=this.length,l=function(){--i||o.resolveWith(a,[a])};"string"!=typeof e&&(n=e,e=t),e=e||"fx";while(s--)r=x._data(a[s],e+"queueHooks"),r&&r.empty&&(i++,r.empty.add(l));return l(),o.promise(n)}});var z,X,U=/[\t\r\n\f]/g,V=/\r/g,Y=/^(?:input|select|textarea|button|object)$/i,J=/^(?:a|area)$/i,G=/^(?:checked|selected)$/i,Q=x.support.getSetAttribute,K=x.support.input;x.fn.extend({attr:function(e,t){return x.access(this,x.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){x.removeAttr(this,e)})},prop:function(e,t){return x.access(this,x.prop,e,t,arguments.length>1)},removeProp:function(e){return e=x.propFix[e]||e,this.each(function(){try{this[e]=t,delete this[e]}catch(n){}})},addClass:function(e){var t,n,r,i,o,a=0,s=this.length,l="string"==typeof e&&e;if(x.isFunction(e))return this.each(function(t){x(this).addClass(e.call(this,t,this.className))});if(l)for(t=(e||"").match(T)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(U," "):" ")){o=0;while(i=t[o++])0>r.indexOf(" "+i+" ")&&(r+=i+" ");n.className=x.trim(r)}return this},removeClass:function(e){var t,n,r,i,o,a=0,s=this.length,l=0===arguments.length||"string"==typeof e&&e;if(x.isFunction(e))return this.each(function(t){x(this).removeClass(e.call(this,t,this.className))});if(l)for(t=(e||"").match(T)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(U," "):"")){o=0;while(i=t[o++])while(r.indexOf(" "+i+" ")>=0)r=r.replace(" "+i+" "," ");n.className=e?x.trim(r):""}return this},toggleClass:function(e,t){var n=typeof e;return"boolean"==typeof t&&"string"===n?t?this.addClass(e):this.removeClass(e):x.isFunction(e)?this.each(function(n){x(this).toggleClass(e.call(this,n,this.className,t),t)}):this.each(function(){if("string"===n){var t,r=0,o=x(this),a=e.match(T)||[];while(t=a[r++])o.hasClass(t)?o.removeClass(t):o.addClass(t)}else(n===i||"boolean"===n)&&(this.className&&x._data(this,"__className__",this.className),this.className=this.className||e===!1?"":x._data(this,"__className__")||"")})},hasClass:function(e){var t=" "+e+" ",n=0,r=this.length;for(;r>n;n++)if(1===this[n].nodeType&&(" "+this[n].className+" ").replace(U," ").indexOf(t)>=0)return!0;return!1},val:function(e){var n,r,i,o=this[0];{if(arguments.length)return i=x.isFunction(e),this.each(function(n){var o;1===this.nodeType&&(o=i?e.call(this,n,x(this).val()):e,null==o?o="":"number"==typeof o?o+="":x.isArray(o)&&(o=x.map(o,function(e){return null==e?"":e+""})),r=x.valHooks[this.type]||x.valHooks[this.nodeName.toLowerCase()],r&&"set"in r&&r.set(this,o,"value")!==t||(this.value=o))});if(o)return r=x.valHooks[o.type]||x.valHooks[o.nodeName.toLowerCase()],r&&"get"in r&&(n=r.get(o,"value"))!==t?n:(n=o.value,"string"==typeof n?n.replace(V,""):null==n?"":n)}}}),x.extend({valHooks:{option:{get:function(e){var t=x.find.attr(e,"value");return null!=t?t:e.text}},select:{get:function(e){var t,n,r=e.options,i=e.selectedIndex,o="select-one"===e.type||0>i,a=o?null:[],s=o?i+1:r.length,l=0>i?s:o?i:0;for(;s>l;l++)if(n=r[l],!(!n.selected&&l!==i||(x.support.optDisabled?n.disabled:null!==n.getAttribute("disabled"))||n.parentNode.disabled&&x.nodeName(n.parentNode,"optgroup"))){if(t=x(n).val(),o)return t;a.push(t)}return a},set:function(e,t){var n,r,i=e.options,o=x.makeArray(t),a=i.length;while(a--)r=i[a],(r.selected=x.inArray(x(r).val(),o)>=0)&&(n=!0);return n||(e.selectedIndex=-1),o}}},attr:function(e,n,r){var o,a,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return typeof e.getAttribute===i?x.prop(e,n,r):(1===s&&x.isXMLDoc(e)||(n=n.toLowerCase(),o=x.attrHooks[n]||(x.expr.match.bool.test(n)?X:z)),r===t?o&&"get"in o&&null!==(a=o.get(e,n))?a:(a=x.find.attr(e,n),null==a?t:a):null!==r?o&&"set"in o&&(a=o.set(e,r,n))!==t?a:(e.setAttribute(n,r+""),r):(x.removeAttr(e,n),t))},removeAttr:function(e,t){var n,r,i=0,o=t&&t.match(T);if(o&&1===e.nodeType)while(n=o[i++])r=x.propFix[n]||n,x.expr.match.bool.test(n)?K&&Q||!G.test(n)?e[r]=!1:e[x.camelCase("default-"+n)]=e[r]=!1:x.attr(e,n,""),e.removeAttribute(Q?n:r)},attrHooks:{type:{set:function(e,t){if(!x.support.radioValue&&"radio"===t&&x.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},propFix:{"for":"htmlFor","class":"className"},prop:function(e,n,r){var i,o,a,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return a=1!==s||!x.isXMLDoc(e),a&&(n=x.propFix[n]||n,o=x.propHooks[n]),r!==t?o&&"set"in o&&(i=o.set(e,r,n))!==t?i:e[n]=r:o&&"get"in o&&null!==(i=o.get(e,n))?i:e[n]},propHooks:{tabIndex:{get:function(e){var t=x.find.attr(e,"tabindex");return t?parseInt(t,10):Y.test(e.nodeName)||J.test(e.nodeName)&&e.href?0:-1}}}}),X={set:function(e,t,n){return t===!1?x.removeAttr(e,n):K&&Q||!G.test(n)?e.setAttribute(!Q&&x.propFix[n]||n,n):e[x.camelCase("default-"+n)]=e[n]=!0,n}},x.each(x.expr.match.bool.source.match(/\w+/g),function(e,n){var r=x.expr.attrHandle[n]||x.find.attr;x.expr.attrHandle[n]=K&&Q||!G.test(n)?function(e,n,i){var o=x.expr.attrHandle[n],a=i?t:(x.expr.attrHandle[n]=t)!=r(e,n,i)?n.toLowerCase():null;return x.expr.attrHandle[n]=o,a}:function(e,n,r){return r?t:e[x.camelCase("default-"+n)]?n.toLowerCase():null}}),K&&Q||(x.attrHooks.value={set:function(e,n,r){return x.nodeName(e,"input")?(e.defaultValue=n,t):z&&z.set(e,n,r)}}),Q||(z={set:function(e,n,r){var i=e.getAttributeNode(r);return i||e.setAttributeNode(i=e.ownerDocument.createAttribute(r)),i.value=n+="","value"===r||n===e.getAttribute(r)?n:t}},x.expr.attrHandle.id=x.expr.attrHandle.name=x.expr.attrHandle.coords=function(e,n,r){var i;return r?t:(i=e.getAttributeNode(n))&&""!==i.value?i.value:null},x.valHooks.button={get:function(e,n){var r=e.getAttributeNode(n);return r&&r.specified?r.value:t},set:z.set},x.attrHooks.contenteditable={set:function(e,t,n){z.set(e,""===t?!1:t,n)}},x.each(["width","height"],function(e,n){x.attrHooks[n]={set:function(e,r){return""===r?(e.setAttribute(n,"auto"),r):t}}})),x.support.hrefNormalized||x.each(["href","src"],function(e,t){x.propHooks[t]={get:function(e){return e.getAttribute(t,4)}}}),x.support.style||(x.attrHooks.style={get:function(e){return e.style.cssText||t},set:function(e,t){return e.style.cssText=t+""}}),x.support.optSelected||(x.propHooks.selected={get:function(e){var t=e.parentNode;return t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex),null}}),x.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){x.propFix[this.toLowerCase()]=this}),x.support.enctype||(x.propFix.enctype="encoding"),x.each(["radio","checkbox"],function(){x.valHooks[this]={set:function(e,n){return x.isArray(n)?e.checked=x.inArray(x(e).val(),n)>=0:t}},x.support.checkOn||(x.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})});var Z=/^(?:input|select|textarea)$/i,et=/^key/,tt=/^(?:mouse|contextmenu)|click/,nt=/^(?:focusinfocus|focusoutblur)$/,rt=/^([^.]*)(?:\.(.+)|)$/;function it(){return!0}function ot(){return!1}function at(){try{return a.activeElement}catch(e){}}x.event={global:{},add:function(e,n,r,o,a){var s,l,u,c,p,f,d,h,g,m,y,v=x._data(e);if(v){r.handler&&(c=r,r=c.handler,a=c.selector),r.guid||(r.guid=x.guid++),(l=v.events)||(l=v.events={}),(f=v.handle)||(f=v.handle=function(e){return typeof x===i||e&&x.event.triggered===e.type?t:x.event.dispatch.apply(f.elem,arguments)},f.elem=e),n=(n||"").match(T)||[""],u=n.length;while(u--)s=rt.exec(n[u])||[],g=y=s[1],m=(s[2]||"").split(".").sort(),g&&(p=x.event.special[g]||{},g=(a?p.delegateType:p.bindType)||g,p=x.event.special[g]||{},d=x.extend({type:g,origType:y,data:o,handler:r,guid:r.guid,selector:a,needsContext:a&&x.expr.match.needsContext.test(a),namespace:m.join(".")},c),(h=l[g])||(h=l[g]=[],h.delegateCount=0,p.setup&&p.setup.call(e,o,m,f)!==!1||(e.addEventListener?e.addEventListener(g,f,!1):e.attachEvent&&e.attachEvent("on"+g,f))),p.add&&(p.add.call(e,d),d.handler.guid||(d.handler.guid=r.guid)),a?h.splice(h.delegateCount++,0,d):h.push(d),x.event.global[g]=!0);e=null}},remove:function(e,t,n,r,i){var o,a,s,l,u,c,p,f,d,h,g,m=x.hasData(e)&&x._data(e);if(m&&(c=m.events)){t=(t||"").match(T)||[""],u=t.length;while(u--)if(s=rt.exec(t[u])||[],d=g=s[1],h=(s[2]||"").split(".").sort(),d){p=x.event.special[d]||{},d=(r?p.delegateType:p.bindType)||d,f=c[d]||[],s=s[2]&&RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),l=o=f.length;while(o--)a=f[o],!i&&g!==a.origType||n&&n.guid!==a.guid||s&&!s.test(a.namespace)||r&&r!==a.selector&&("**"!==r||!a.selector)||(f.splice(o,1),a.selector&&f.delegateCount--,p.remove&&p.remove.call(e,a));l&&!f.length&&(p.teardown&&p.teardown.call(e,h,m.handle)!==!1||x.removeEvent(e,d,m.handle),delete c[d])}else for(d in c)x.event.remove(e,d+t[u],n,r,!0);x.isEmptyObject(c)&&(delete m.handle,x._removeData(e,"events"))}},trigger:function(n,r,i,o){var s,l,u,c,p,f,d,h=[i||a],g=v.call(n,"type")?n.type:n,m=v.call(n,"namespace")?n.namespace.split("."):[];if(u=f=i=i||a,3!==i.nodeType&&8!==i.nodeType&&!nt.test(g+x.event.triggered)&&(g.indexOf(".")>=0&&(m=g.split("."),g=m.shift(),m.sort()),l=0>g.indexOf(":")&&"on"+g,n=n[x.expando]?n:new x.Event(g,"object"==typeof n&&n),n.isTrigger=o?2:3,n.namespace=m.join("."),n.namespace_re=n.namespace?RegExp("(^|\\.)"+m.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,n.result=t,n.target||(n.target=i),r=null==r?[n]:x.makeArray(r,[n]),p=x.event.special[g]||{},o||!p.trigger||p.trigger.apply(i,r)!==!1)){if(!o&&!p.noBubble&&!x.isWindow(i)){for(c=p.delegateType||g,nt.test(c+g)||(u=u.parentNode);u;u=u.parentNode)h.push(u),f=u;f===(i.ownerDocument||a)&&h.push(f.defaultView||f.parentWindow||e)}d=0;while((u=h[d++])&&!n.isPropagationStopped())n.type=d>1?c:p.bindType||g,s=(x._data(u,"events")||{})[n.type]&&x._data(u,"handle"),s&&s.apply(u,r),s=l&&u[l],s&&x.acceptData(u)&&s.apply&&s.apply(u,r)===!1&&n.preventDefault();if(n.type=g,!o&&!n.isDefaultPrevented()&&(!p._default||p._default.apply(h.pop(),r)===!1)&&x.acceptData(i)&&l&&i[g]&&!x.isWindow(i)){f=i[l],f&&(i[l]=null),x.event.triggered=g;try{i[g]()}catch(y){}x.event.triggered=t,f&&(i[l]=f)}return n.result}},dispatch:function(e){e=x.event.fix(e);var n,r,i,o,a,s=[],l=g.call(arguments),u=(x._data(this,"events")||{})[e.type]||[],c=x.event.special[e.type]||{};if(l[0]=e,e.delegateTarget=this,!c.preDispatch||c.preDispatch.call(this,e)!==!1){s=x.event.handlers.call(this,e,u),n=0;while((o=s[n++])&&!e.isPropagationStopped()){e.currentTarget=o.elem,a=0;while((i=o.handlers[a++])&&!e.isImmediatePropagationStopped())(!e.namespace_re||e.namespace_re.test(i.namespace))&&(e.handleObj=i,e.data=i.data,r=((x.event.special[i.origType]||{}).handle||i.handler).apply(o.elem,l),r!==t&&(e.result=r)===!1&&(e.preventDefault(),e.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,e),e.result}},handlers:function(e,n){var r,i,o,a,s=[],l=n.delegateCount,u=e.target;if(l&&u.nodeType&&(!e.button||"click"!==e.type))for(;u!=this;u=u.parentNode||this)if(1===u.nodeType&&(u.disabled!==!0||"click"!==e.type)){for(o=[],a=0;l>a;a++)i=n[a],r=i.selector+" ",o[r]===t&&(o[r]=i.needsContext?x(r,this).index(u)>=0:x.find(r,this,null,[u]).length),o[r]&&o.push(i);o.length&&s.push({elem:u,handlers:o})}return n.length>l&&s.push({elem:this,handlers:n.slice(l)}),s},fix:function(e){if(e[x.expando])return e;var t,n,r,i=e.type,o=e,s=this.fixHooks[i];s||(this.fixHooks[i]=s=tt.test(i)?this.mouseHooks:et.test(i)?this.keyHooks:{}),r=s.props?this.props.concat(s.props):this.props,e=new x.Event(o),t=r.length;while(t--)n=r[t],e[n]=o[n];return e.target||(e.target=o.srcElement||a),3===e.target.nodeType&&(e.target=e.target.parentNode),e.metaKey=!!e.metaKey,s.filter?s.filter(e,o):e},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(e,t){return null==e.which&&(e.which=null!=t.charCode?t.charCode:t.keyCode),e}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(e,n){var r,i,o,s=n.button,l=n.fromElement;return null==e.pageX&&null!=n.clientX&&(i=e.target.ownerDocument||a,o=i.documentElement,r=i.body,e.pageX=n.clientX+(o&&o.scrollLeft||r&&r.scrollLeft||0)-(o&&o.clientLeft||r&&r.clientLeft||0),e.pageY=n.clientY+(o&&o.scrollTop||r&&r.scrollTop||0)-(o&&o.clientTop||r&&r.clientTop||0)),!e.relatedTarget&&l&&(e.relatedTarget=l===e.target?n.toElement:l),e.which||s===t||(e.which=1&s?1:2&s?3:4&s?2:0),e}},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==at()&&this.focus)try{return this.focus(),!1}catch(e){}},delegateType:"focusin"},blur:{trigger:function(){return this===at()&&this.blur?(this.blur(),!1):t},delegateType:"focusout"},click:{trigger:function(){return x.nodeName(this,"input")&&"checkbox"===this.type&&this.click?(this.click(),!1):t},_default:function(e){return x.nodeName(e.target,"a")}},beforeunload:{postDispatch:function(e){e.result!==t&&(e.originalEvent.returnValue=e.result)}}},simulate:function(e,t,n,r){var i=x.extend(new x.Event,n,{type:e,isSimulated:!0,originalEvent:{}});r?x.event.trigger(i,null,t):x.event.dispatch.call(t,i),i.isDefaultPrevented()&&n.preventDefault()}},x.removeEvent=a.removeEventListener?function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n,!1)}:function(e,t,n){var r="on"+t;e.detachEvent&&(typeof e[r]===i&&(e[r]=null),e.detachEvent(r,n))},x.Event=function(e,n){return this instanceof x.Event?(e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||e.returnValue===!1||e.getPreventDefault&&e.getPreventDefault()?it:ot):this.type=e,n&&x.extend(this,n),this.timeStamp=e&&e.timeStamp||x.now(),this[x.expando]=!0,t):new x.Event(e,n)},x.Event.prototype={isDefaultPrevented:ot,isPropagationStopped:ot,isImmediatePropagationStopped:ot,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=it,e&&(e.preventDefault?e.preventDefault():e.returnValue=!1)},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=it,e&&(e.stopPropagation&&e.stopPropagation(),e.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=it,this.stopPropagation()}},x.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(e,t){x.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj;return(!i||i!==r&&!x.contains(r,i))&&(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}}),x.support.submitBubbles||(x.event.special.submit={setup:function(){return x.nodeName(this,"form")?!1:(x.event.add(this,"click._submit keypress._submit",function(e){var n=e.target,r=x.nodeName(n,"input")||x.nodeName(n,"button")?n.form:t;r&&!x._data(r,"submitBubbles")&&(x.event.add(r,"submit._submit",function(e){e._submit_bubble=!0}),x._data(r,"submitBubbles",!0))}),t)},postDispatch:function(e){e._submit_bubble&&(delete e._submit_bubble,this.parentNode&&!e.isTrigger&&x.event.simulate("submit",this.parentNode,e,!0))},teardown:function(){return x.nodeName(this,"form")?!1:(x.event.remove(this,"._submit"),t)}}),x.support.changeBubbles||(x.event.special.change={setup:function(){return Z.test(this.nodeName)?(("checkbox"===this.type||"radio"===this.type)&&(x.event.add(this,"propertychange._change",function(e){"checked"===e.originalEvent.propertyName&&(this._just_changed=!0)}),x.event.add(this,"click._change",function(e){this._just_changed&&!e.isTrigger&&(this._just_changed=!1),x.event.simulate("change",this,e,!0)})),!1):(x.event.add(this,"beforeactivate._change",function(e){var t=e.target;Z.test(t.nodeName)&&!x._data(t,"changeBubbles")&&(x.event.add(t,"change._change",function(e){!this.parentNode||e.isSimulated||e.isTrigger||x.event.simulate("change",this.parentNode,e,!0)}),x._data(t,"changeBubbles",!0))}),t)},handle:function(e){var n=e.target;return this!==n||e.isSimulated||e.isTrigger||"radio"!==n.type&&"checkbox"!==n.type?e.handleObj.handler.apply(this,arguments):t},teardown:function(){return x.event.remove(this,"._change"),!Z.test(this.nodeName)}}),x.support.focusinBubbles||x.each({focus:"focusin",blur:"focusout"},function(e,t){var n=0,r=function(e){x.event.simulate(t,e.target,x.event.fix(e),!0)};x.event.special[t]={setup:function(){0===n++&&a.addEventListener(e,r,!0)},teardown:function(){0===--n&&a.removeEventListener(e,r,!0)}}}),x.fn.extend({on:function(e,n,r,i,o){var a,s;if("object"==typeof e){"string"!=typeof n&&(r=r||n,n=t);for(a in e)this.on(a,n,r,e[a],o);return this}if(null==r&&null==i?(i=n,r=n=t):null==i&&("string"==typeof n?(i=r,r=t):(i=r,r=n,n=t)),i===!1)i=ot;else if(!i)return this;return 1===o&&(s=i,i=function(e){return x().off(e),s.apply(this,arguments)},i.guid=s.guid||(s.guid=x.guid++)),this.each(function(){x.event.add(this,e,i,r,n)})},one:function(e,t,n,r){return this.on(e,t,n,r,1)},off:function(e,n,r){var i,o;if(e&&e.preventDefault&&e.handleObj)return i=e.handleObj,x(e.delegateTarget).off(i.namespace?i.origType+"."+i.namespace:i.origType,i.selector,i.handler),this;if("object"==typeof e){for(o in e)this.off(o,n,e[o]);return this}return(n===!1||"function"==typeof n)&&(r=n,n=t),r===!1&&(r=ot),this.each(function(){x.event.remove(this,e,r,n)})},trigger:function(e,t){return this.each(function(){x.event.trigger(e,t,this)})},triggerHandler:function(e,n){var r=this[0];return r?x.event.trigger(e,n,r,!0):t}});var st=/^.[^:#\[\.,]*$/,lt=/^(?:parents|prev(?:Until|All))/,ut=x.expr.match.needsContext,ct={children:!0,contents:!0,next:!0,prev:!0};x.fn.extend({find:function(e){var t,n=[],r=this,i=r.length;if("string"!=typeof e)return this.pushStack(x(e).filter(function(){for(t=0;i>t;t++)if(x.contains(r[t],this))return!0}));for(t=0;i>t;t++)x.find(e,r[t],n);return n=this.pushStack(i>1?x.unique(n):n),n.selector=this.selector?this.selector+" "+e:e,n},has:function(e){var t,n=x(e,this),r=n.length;return this.filter(function(){for(t=0;r>t;t++)if(x.contains(this,n[t]))return!0})},not:function(e){return this.pushStack(ft(this,e||[],!0))},filter:function(e){return this.pushStack(ft(this,e||[],!1))},is:function(e){return!!ft(this,"string"==typeof e&&ut.test(e)?x(e):e||[],!1).length},closest:function(e,t){var n,r=0,i=this.length,o=[],a=ut.test(e)||"string"!=typeof e?x(e,t||this.context):0;for(;i>r;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(11>n.nodeType&&(a?a.index(n)>-1:1===n.nodeType&&x.find.matchesSelector(n,e))){n=o.push(n);break}return this.pushStack(o.length>1?x.unique(o):o)},index:function(e){return e?"string"==typeof e?x.inArray(this[0],x(e)):x.inArray(e.jquery?e[0]:e,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){var n="string"==typeof e?x(e,t):x.makeArray(e&&e.nodeType?[e]:e),r=x.merge(this.get(),n);return this.pushStack(x.unique(r))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}});function pt(e,t){do e=e[t];while(e&&1!==e.nodeType);return e}x.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return x.dir(e,"parentNode")},parentsUntil:function(e,t,n){return x.dir(e,"parentNode",n)},next:function(e){return pt(e,"nextSibling")},prev:function(e){return pt(e,"previousSibling")},nextAll:function(e){return x.dir(e,"nextSibling")},prevAll:function(e){return x.dir(e,"previousSibling")},nextUntil:function(e,t,n){return x.dir(e,"nextSibling",n)},prevUntil:function(e,t,n){return x.dir(e,"previousSibling",n)},siblings:function(e){return x.sibling((e.parentNode||{}).firstChild,e)},children:function(e){return x.sibling(e.firstChild)},contents:function(e){return x.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:x.merge([],e.childNodes)}},function(e,t){x.fn[e]=function(n,r){var i=x.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=x.filter(r,i)),this.length>1&&(ct[e]||(i=x.unique(i)),lt.test(e)&&(i=i.reverse())),this.pushStack(i)}}),x.extend({filter:function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?x.find.matchesSelector(r,e)?[r]:[]:x.find.matches(e,x.grep(t,function(e){return 1===e.nodeType}))},dir:function(e,n,r){var i=[],o=e[n];while(o&&9!==o.nodeType&&(r===t||1!==o.nodeType||!x(o).is(r)))1===o.nodeType&&i.push(o),o=o[n];return i},sibling:function(e,t){var n=[];for(;e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n}});function ft(e,t,n){if(x.isFunction(t))return x.grep(e,function(e,r){return!!t.call(e,r,e)!==n});if(t.nodeType)return x.grep(e,function(e){return e===t!==n});if("string"==typeof t){if(st.test(t))return x.filter(t,e,n);t=x.filter(t,e)}return x.grep(e,function(e){return x.inArray(e,t)>=0!==n})}function dt(e){var t=ht.split("|"),n=e.createDocumentFragment();if(n.createElement)while(t.length)n.createElement(t.pop());return n}var ht="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",gt=/ jQuery\d+="(?:null|\d+)"/g,mt=RegExp("<(?:"+ht+")[\\s/>]","i"),yt=/^\s+/,vt=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bt=/<([\w:]+)/,xt=/<tbody/i,wt=/<|&#?\w+;/,Tt=/<(?:script|style|link)/i,Ct=/^(?:checkbox|radio)$/i,Nt=/checked\s*(?:[^=]|=\s*.checked.)/i,kt=/^$|\/(?:java|ecma)script/i,Et=/^true\/(.*)/,St=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,At={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],area:[1,"<map>","</map>"],param:[1,"<object>","</object>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:x.support.htmlSerialize?[0,"",""]:[1,"X<div>","</div>"]},jt=dt(a),Dt=jt.appendChild(a.createElement("div"));At.optgroup=At.option,At.tbody=At.tfoot=At.colgroup=At.caption=At.thead,At.th=At.td,x.fn.extend({text:function(e){return x.access(this,function(e){return e===t?x.text(this):this.empty().append((this[0]&&this[0].ownerDocument||a).createTextNode(e))},null,e,arguments.length)},append:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Lt(this,e);t.appendChild(e)}})},prepend:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Lt(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},remove:function(e,t){var n,r=e?x.filter(e,this):this,i=0;for(;null!=(n=r[i]);i++)t||1!==n.nodeType||x.cleanData(Ft(n)),n.parentNode&&(t&&x.contains(n.ownerDocument,n)&&_t(Ft(n,"script")),n.parentNode.removeChild(n));return this},empty:function(){var e,t=0;for(;null!=(e=this[t]);t++){1===e.nodeType&&x.cleanData(Ft(e,!1));while(e.firstChild)e.removeChild(e.firstChild);e.options&&x.nodeName(e,"select")&&(e.options.length=0)}return this},clone:function(e,t){return e=null==e?!1:e,t=null==t?e:t,this.map(function(){return x.clone(this,e,t)})},html:function(e){return x.access(this,function(e){var n=this[0]||{},r=0,i=this.length;if(e===t)return 1===n.nodeType?n.innerHTML.replace(gt,""):t;if(!("string"!=typeof e||Tt.test(e)||!x.support.htmlSerialize&&mt.test(e)||!x.support.leadingWhitespace&&yt.test(e)||At[(bt.exec(e)||["",""])[1].toLowerCase()])){e=e.replace(vt,"<$1></$2>");try{for(;i>r;r++)n=this[r]||{},1===n.nodeType&&(x.cleanData(Ft(n,!1)),n.innerHTML=e);n=0}catch(o){}}n&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var e=x.map(this,function(e){return[e.nextSibling,e.parentNode]}),t=0;return this.domManip(arguments,function(n){var r=e[t++],i=e[t++];i&&(r&&r.parentNode!==i&&(r=this.nextSibling),x(this).remove(),i.insertBefore(n,r))},!0),t?this:this.remove()},detach:function(e){return this.remove(e,!0)},domManip:function(e,t,n){e=d.apply([],e);var r,i,o,a,s,l,u=0,c=this.length,p=this,f=c-1,h=e[0],g=x.isFunction(h);if(g||!(1>=c||"string"!=typeof h||x.support.checkClone)&&Nt.test(h))return this.each(function(r){var i=p.eq(r);g&&(e[0]=h.call(this,r,i.html())),i.domManip(e,t,n)});if(c&&(l=x.buildFragment(e,this[0].ownerDocument,!1,!n&&this),r=l.firstChild,1===l.childNodes.length&&(l=r),r)){for(a=x.map(Ft(l,"script"),Ht),o=a.length;c>u;u++)i=l,u!==f&&(i=x.clone(i,!0,!0),o&&x.merge(a,Ft(i,"script"))),t.call(this[u],i,u);if(o)for(s=a[a.length-1].ownerDocument,x.map(a,qt),u=0;o>u;u++)i=a[u],kt.test(i.type||"")&&!x._data(i,"globalEval")&&x.contains(s,i)&&(i.src?x._evalUrl(i.src):x.globalEval((i.text||i.textContent||i.innerHTML||"").replace(St,"")));l=r=null}return this}});function Lt(e,t){return x.nodeName(e,"table")&&x.nodeName(1===t.nodeType?t:t.firstChild,"tr")?e.getElementsByTagName("tbody")[0]||e.appendChild(e.ownerDocument.createElement("tbody")):e}function Ht(e){return e.type=(null!==x.find.attr(e,"type"))+"/"+e.type,e}function qt(e){var t=Et.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function _t(e,t){var n,r=0;for(;null!=(n=e[r]);r++)x._data(n,"globalEval",!t||x._data(t[r],"globalEval"))}function Mt(e,t){if(1===t.nodeType&&x.hasData(e)){var n,r,i,o=x._data(e),a=x._data(t,o),s=o.events;if(s){delete a.handle,a.events={};for(n in s)for(r=0,i=s[n].length;i>r;r++)x.event.add(t,n,s[n][r])}a.data&&(a.data=x.extend({},a.data))}}function Ot(e,t){var n,r,i;if(1===t.nodeType){if(n=t.nodeName.toLowerCase(),!x.support.noCloneEvent&&t[x.expando]){i=x._data(t);for(r in i.events)x.removeEvent(t,r,i.handle);t.removeAttribute(x.expando)}"script"===n&&t.text!==e.text?(Ht(t).text=e.text,qt(t)):"object"===n?(t.parentNode&&(t.outerHTML=e.outerHTML),x.support.html5Clone&&e.innerHTML&&!x.trim(t.innerHTML)&&(t.innerHTML=e.innerHTML)):"input"===n&&Ct.test(e.type)?(t.defaultChecked=t.checked=e.checked,t.value!==e.value&&(t.value=e.value)):"option"===n?t.defaultSelected=t.selected=e.defaultSelected:("input"===n||"textarea"===n)&&(t.defaultValue=e.defaultValue)}}x.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){x.fn[e]=function(e){var n,r=0,i=[],o=x(e),a=o.length-1;for(;a>=r;r++)n=r===a?this:this.clone(!0),x(o[r])[t](n),h.apply(i,n.get());return this.pushStack(i)}});function Ft(e,n){var r,o,a=0,s=typeof e.getElementsByTagName!==i?e.getElementsByTagName(n||"*"):typeof e.querySelectorAll!==i?e.querySelectorAll(n||"*"):t;if(!s)for(s=[],r=e.childNodes||e;null!=(o=r[a]);a++)!n||x.nodeName(o,n)?s.push(o):x.merge(s,Ft(o,n));return n===t||n&&x.nodeName(e,n)?x.merge([e],s):s}function Bt(e){Ct.test(e.type)&&(e.defaultChecked=e.checked)}x.extend({clone:function(e,t,n){var r,i,o,a,s,l=x.contains(e.ownerDocument,e);if(x.support.html5Clone||x.isXMLDoc(e)||!mt.test("<"+e.nodeName+">")?o=e.cloneNode(!0):(Dt.innerHTML=e.outerHTML,Dt.removeChild(o=Dt.firstChild)),!(x.support.noCloneEvent&&x.support.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||x.isXMLDoc(e)))for(r=Ft(o),s=Ft(e),a=0;null!=(i=s[a]);++a)r[a]&&Ot(i,r[a]);if(t)if(n)for(s=s||Ft(e),r=r||Ft(o),a=0;null!=(i=s[a]);a++)Mt(i,r[a]);else Mt(e,o);return r=Ft(o,"script"),r.length>0&&_t(r,!l&&Ft(e,"script")),r=s=i=null,o},buildFragment:function(e,t,n,r){var i,o,a,s,l,u,c,p=e.length,f=dt(t),d=[],h=0;for(;p>h;h++)if(o=e[h],o||0===o)if("object"===x.type(o))x.merge(d,o.nodeType?[o]:o);else if(wt.test(o)){s=s||f.appendChild(t.createElement("div")),l=(bt.exec(o)||["",""])[1].toLowerCase(),c=At[l]||At._default,s.innerHTML=c[1]+o.replace(vt,"<$1></$2>")+c[2],i=c[0];while(i--)s=s.lastChild;if(!x.support.leadingWhitespace&&yt.test(o)&&d.push(t.createTextNode(yt.exec(o)[0])),!x.support.tbody){o="table"!==l||xt.test(o)?"<table>"!==c[1]||xt.test(o)?0:s:s.firstChild,i=o&&o.childNodes.length;while(i--)x.nodeName(u=o.childNodes[i],"tbody")&&!u.childNodes.length&&o.removeChild(u)}x.merge(d,s.childNodes),s.textContent="";while(s.firstChild)s.removeChild(s.firstChild);s=f.lastChild}else d.push(t.createTextNode(o));s&&f.removeChild(s),x.support.appendChecked||x.grep(Ft(d,"input"),Bt),h=0;while(o=d[h++])if((!r||-1===x.inArray(o,r))&&(a=x.contains(o.ownerDocument,o),s=Ft(f.appendChild(o),"script"),a&&_t(s),n)){i=0;while(o=s[i++])kt.test(o.type||"")&&n.push(o)}return s=null,f},cleanData:function(e,t){var n,r,o,a,s=0,l=x.expando,u=x.cache,c=x.support.deleteExpando,f=x.event.special;for(;null!=(n=e[s]);s++)if((t||x.acceptData(n))&&(o=n[l],a=o&&u[o])){if(a.events)for(r in a.events)f[r]?x.event.remove(n,r):x.removeEvent(n,r,a.handle); u[o]&&(delete u[o],c?delete n[l]:typeof n.removeAttribute!==i?n.removeAttribute(l):n[l]=null,p.push(o))}},_evalUrl:function(e){return x.ajax({url:e,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})}}),x.fn.extend({wrapAll:function(e){if(x.isFunction(e))return this.each(function(t){x(this).wrapAll(e.call(this,t))});if(this[0]){var t=x(e,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstChild&&1===e.firstChild.nodeType)e=e.firstChild;return e}).append(this)}return this},wrapInner:function(e){return x.isFunction(e)?this.each(function(t){x(this).wrapInner(e.call(this,t))}):this.each(function(){var t=x(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=x.isFunction(e);return this.each(function(n){x(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){x.nodeName(this,"body")||x(this).replaceWith(this.childNodes)}).end()}});var Pt,Rt,Wt,$t=/alpha\([^)]*\)/i,It=/opacity\s*=\s*([^)]*)/,zt=/^(top|right|bottom|left)$/,Xt=/^(none|table(?!-c[ea]).+)/,Ut=/^margin/,Vt=RegExp("^("+w+")(.*)$","i"),Yt=RegExp("^("+w+")(?!px)[a-z%]+$","i"),Jt=RegExp("^([+-])=("+w+")","i"),Gt={BODY:"block"},Qt={position:"absolute",visibility:"hidden",display:"block"},Kt={letterSpacing:0,fontWeight:400},Zt=["Top","Right","Bottom","Left"],en=["Webkit","O","Moz","ms"];function tn(e,t){if(t in e)return t;var n=t.charAt(0).toUpperCase()+t.slice(1),r=t,i=en.length;while(i--)if(t=en[i]+n,t in e)return t;return r}function nn(e,t){return e=t||e,"none"===x.css(e,"display")||!x.contains(e.ownerDocument,e)}function rn(e,t){var n,r,i,o=[],a=0,s=e.length;for(;s>a;a++)r=e[a],r.style&&(o[a]=x._data(r,"olddisplay"),n=r.style.display,t?(o[a]||"none"!==n||(r.style.display=""),""===r.style.display&&nn(r)&&(o[a]=x._data(r,"olddisplay",ln(r.nodeName)))):o[a]||(i=nn(r),(n&&"none"!==n||!i)&&x._data(r,"olddisplay",i?n:x.css(r,"display"))));for(a=0;s>a;a++)r=e[a],r.style&&(t&&"none"!==r.style.display&&""!==r.style.display||(r.style.display=t?o[a]||"":"none"));return e}x.fn.extend({css:function(e,n){return x.access(this,function(e,n,r){var i,o,a={},s=0;if(x.isArray(n)){for(o=Rt(e),i=n.length;i>s;s++)a[n[s]]=x.css(e,n[s],!1,o);return a}return r!==t?x.style(e,n,r):x.css(e,n)},e,n,arguments.length>1)},show:function(){return rn(this,!0)},hide:function(){return rn(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){nn(this)?x(this).show():x(this).hide()})}}),x.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Wt(e,"opacity");return""===n?"1":n}}}},cssNumber:{columnCount:!0,fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":x.support.cssFloat?"cssFloat":"styleFloat"},style:function(e,n,r,i){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var o,a,s,l=x.camelCase(n),u=e.style;if(n=x.cssProps[l]||(x.cssProps[l]=tn(u,l)),s=x.cssHooks[n]||x.cssHooks[l],r===t)return s&&"get"in s&&(o=s.get(e,!1,i))!==t?o:u[n];if(a=typeof r,"string"===a&&(o=Jt.exec(r))&&(r=(o[1]+1)*o[2]+parseFloat(x.css(e,n)),a="number"),!(null==r||"number"===a&&isNaN(r)||("number"!==a||x.cssNumber[l]||(r+="px"),x.support.clearCloneStyle||""!==r||0!==n.indexOf("background")||(u[n]="inherit"),s&&"set"in s&&(r=s.set(e,r,i))===t)))try{u[n]=r}catch(c){}}},css:function(e,n,r,i){var o,a,s,l=x.camelCase(n);return n=x.cssProps[l]||(x.cssProps[l]=tn(e.style,l)),s=x.cssHooks[n]||x.cssHooks[l],s&&"get"in s&&(a=s.get(e,!0,r)),a===t&&(a=Wt(e,n,i)),"normal"===a&&n in Kt&&(a=Kt[n]),""===r||r?(o=parseFloat(a),r===!0||x.isNumeric(o)?o||0:a):a}}),e.getComputedStyle?(Rt=function(t){return e.getComputedStyle(t,null)},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),l=s?s.getPropertyValue(n)||s[n]:t,u=e.style;return s&&(""!==l||x.contains(e.ownerDocument,e)||(l=x.style(e,n)),Yt.test(l)&&Ut.test(n)&&(i=u.width,o=u.minWidth,a=u.maxWidth,u.minWidth=u.maxWidth=u.width=l,l=s.width,u.width=i,u.minWidth=o,u.maxWidth=a)),l}):a.documentElement.currentStyle&&(Rt=function(e){return e.currentStyle},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),l=s?s[n]:t,u=e.style;return null==l&&u&&u[n]&&(l=u[n]),Yt.test(l)&&!zt.test(n)&&(i=u.left,o=e.runtimeStyle,a=o&&o.left,a&&(o.left=e.currentStyle.left),u.left="fontSize"===n?"1em":l,l=u.pixelLeft+"px",u.left=i,a&&(o.left=a)),""===l?"auto":l});function on(e,t,n){var r=Vt.exec(t);return r?Math.max(0,r[1]-(n||0))+(r[2]||"px"):t}function an(e,t,n,r,i){var o=n===(r?"border":"content")?4:"width"===t?1:0,a=0;for(;4>o;o+=2)"margin"===n&&(a+=x.css(e,n+Zt[o],!0,i)),r?("content"===n&&(a-=x.css(e,"padding"+Zt[o],!0,i)),"margin"!==n&&(a-=x.css(e,"border"+Zt[o]+"Width",!0,i))):(a+=x.css(e,"padding"+Zt[o],!0,i),"padding"!==n&&(a+=x.css(e,"border"+Zt[o]+"Width",!0,i)));return a}function sn(e,t,n){var r=!0,i="width"===t?e.offsetWidth:e.offsetHeight,o=Rt(e),a=x.support.boxSizing&&"border-box"===x.css(e,"boxSizing",!1,o);if(0>=i||null==i){if(i=Wt(e,t,o),(0>i||null==i)&&(i=e.style[t]),Yt.test(i))return i;r=a&&(x.support.boxSizingReliable||i===e.style[t]),i=parseFloat(i)||0}return i+an(e,t,n||(a?"border":"content"),r,o)+"px"}function ln(e){var t=a,n=Gt[e];return n||(n=un(e,t),"none"!==n&&n||(Pt=(Pt||x("<iframe frameborder='0' width='0' height='0'/>").css("cssText","display:block !important")).appendTo(t.documentElement),t=(Pt[0].contentWindow||Pt[0].contentDocument).document,t.write("<!doctype html><html><body>"),t.close(),n=un(e,t),Pt.detach()),Gt[e]=n),n}function un(e,t){var n=x(t.createElement(e)).appendTo(t.body),r=x.css(n[0],"display");return n.remove(),r}x.each(["height","width"],function(e,n){x.cssHooks[n]={get:function(e,r,i){return r?0===e.offsetWidth&&Xt.test(x.css(e,"display"))?x.swap(e,Qt,function(){return sn(e,n,i)}):sn(e,n,i):t},set:function(e,t,r){var i=r&&Rt(e);return on(e,t,r?an(e,n,r,x.support.boxSizing&&"border-box"===x.css(e,"boxSizing",!1,i),i):0)}}}),x.support.opacity||(x.cssHooks.opacity={get:function(e,t){return It.test((t&&e.currentStyle?e.currentStyle.filter:e.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":t?"1":""},set:function(e,t){var n=e.style,r=e.currentStyle,i=x.isNumeric(t)?"alpha(opacity="+100*t+")":"",o=r&&r.filter||n.filter||"";n.zoom=1,(t>=1||""===t)&&""===x.trim(o.replace($t,""))&&n.removeAttribute&&(n.removeAttribute("filter"),""===t||r&&!r.filter)||(n.filter=$t.test(o)?o.replace($t,i):o+" "+i)}}),x(function(){x.support.reliableMarginRight||(x.cssHooks.marginRight={get:function(e,n){return n?x.swap(e,{display:"inline-block"},Wt,[e,"marginRight"]):t}}),!x.support.pixelPosition&&x.fn.position&&x.each(["top","left"],function(e,n){x.cssHooks[n]={get:function(e,r){return r?(r=Wt(e,n),Yt.test(r)?x(e).position()[n]+"px":r):t}}})}),x.expr&&x.expr.filters&&(x.expr.filters.hidden=function(e){return 0>=e.offsetWidth&&0>=e.offsetHeight||!x.support.reliableHiddenOffsets&&"none"===(e.style&&e.style.display||x.css(e,"display"))},x.expr.filters.visible=function(e){return!x.expr.filters.hidden(e)}),x.each({margin:"",padding:"",border:"Width"},function(e,t){x.cssHooks[e+t]={expand:function(n){var r=0,i={},o="string"==typeof n?n.split(" "):[n];for(;4>r;r++)i[e+Zt[r]+t]=o[r]||o[r-2]||o[0];return i}},Ut.test(e)||(x.cssHooks[e+t].set=on)});var cn=/%20/g,pn=/\[\]$/,fn=/\r?\n/g,dn=/^(?:submit|button|image|reset|file)$/i,hn=/^(?:input|select|textarea|keygen)/i;x.fn.extend({serialize:function(){return x.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=x.prop(this,"elements");return e?x.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!x(this).is(":disabled")&&hn.test(this.nodeName)&&!dn.test(e)&&(this.checked||!Ct.test(e))}).map(function(e,t){var n=x(this).val();return null==n?null:x.isArray(n)?x.map(n,function(e){return{name:t.name,value:e.replace(fn,"\r\n")}}):{name:t.name,value:n.replace(fn,"\r\n")}}).get()}}),x.param=function(e,n){var r,i=[],o=function(e,t){t=x.isFunction(t)?t():null==t?"":t,i[i.length]=encodeURIComponent(e)+"="+encodeURIComponent(t)};if(n===t&&(n=x.ajaxSettings&&x.ajaxSettings.traditional),x.isArray(e)||e.jquery&&!x.isPlainObject(e))x.each(e,function(){o(this.name,this.value)});else for(r in e)gn(r,e[r],n,o);return i.join("&").replace(cn,"+")};function gn(e,t,n,r){var i;if(x.isArray(t))x.each(t,function(t,i){n||pn.test(e)?r(e,i):gn(e+"["+("object"==typeof i?t:"")+"]",i,n,r)});else if(n||"object"!==x.type(t))r(e,t);else for(i in t)gn(e+"["+i+"]",t[i],n,r)}x.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(e,t){x.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}),x.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)},bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)}});var mn,yn,vn=x.now(),bn=/\?/,xn=/#.*$/,wn=/([?&])_=[^&]*/,Tn=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,Cn=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Nn=/^(?:GET|HEAD)$/,kn=/^\/\//,En=/^([\w.+-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,Sn=x.fn.load,An={},jn={},Dn="*/".concat("*");try{yn=o.href}catch(Ln){yn=a.createElement("a"),yn.href="",yn=yn.href}mn=En.exec(yn.toLowerCase())||[];function Hn(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(T)||[];if(x.isFunction(n))while(r=o[i++])"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function qn(e,n,r,i){var o={},a=e===jn;function s(l){var u;return o[l]=!0,x.each(e[l]||[],function(e,l){var c=l(n,r,i);return"string"!=typeof c||a||o[c]?a?!(u=c):t:(n.dataTypes.unshift(c),s(c),!1)}),u}return s(n.dataTypes[0])||!o["*"]&&s("*")}function _n(e,n){var r,i,o=x.ajaxSettings.flatOptions||{};for(i in n)n[i]!==t&&((o[i]?e:r||(r={}))[i]=n[i]);return r&&x.extend(!0,e,r),e}x.fn.load=function(e,n,r){if("string"!=typeof e&&Sn)return Sn.apply(this,arguments);var i,o,a,s=this,l=e.indexOf(" ");return l>=0&&(i=e.slice(l,e.length),e=e.slice(0,l)),x.isFunction(n)?(r=n,n=t):n&&"object"==typeof n&&(a="POST"),s.length>0&&x.ajax({url:e,type:a,dataType:"html",data:n}).done(function(e){o=arguments,s.html(i?x("<div>").append(x.parseHTML(e)).find(i):e)}).complete(r&&function(e,t){s.each(r,o||[e.responseText,t,e])}),this},x.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){x.fn[t]=function(e){return this.on(t,e)}}),x.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:yn,type:"GET",isLocal:Cn.test(mn[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Dn,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":x.parseJSON,"text xml":x.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?_n(_n(e,x.ajaxSettings),t):_n(x.ajaxSettings,e)},ajaxPrefilter:Hn(An),ajaxTransport:Hn(jn),ajax:function(e,n){"object"==typeof e&&(n=e,e=t),n=n||{};var r,i,o,a,s,l,u,c,p=x.ajaxSetup({},n),f=p.context||p,d=p.context&&(f.nodeType||f.jquery)?x(f):x.event,h=x.Deferred(),g=x.Callbacks("once memory"),m=p.statusCode||{},y={},v={},b=0,w="canceled",C={readyState:0,getResponseHeader:function(e){var t;if(2===b){if(!c){c={};while(t=Tn.exec(a))c[t[1].toLowerCase()]=t[2]}t=c[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return 2===b?a:null},setRequestHeader:function(e,t){var n=e.toLowerCase();return b||(e=v[n]=v[n]||e,y[e]=t),this},overrideMimeType:function(e){return b||(p.mimeType=e),this},statusCode:function(e){var t;if(e)if(2>b)for(t in e)m[t]=[m[t],e[t]];else C.always(e[C.status]);return this},abort:function(e){var t=e||w;return u&&u.abort(t),k(0,t),this}};if(h.promise(C).complete=g.add,C.success=C.done,C.error=C.fail,p.url=((e||p.url||yn)+"").replace(xn,"").replace(kn,mn[1]+"//"),p.type=n.method||n.type||p.method||p.type,p.dataTypes=x.trim(p.dataType||"*").toLowerCase().match(T)||[""],null==p.crossDomain&&(r=En.exec(p.url.toLowerCase()),p.crossDomain=!(!r||r[1]===mn[1]&&r[2]===mn[2]&&(r[3]||("http:"===r[1]?"80":"443"))===(mn[3]||("http:"===mn[1]?"80":"443")))),p.data&&p.processData&&"string"!=typeof p.data&&(p.data=x.param(p.data,p.traditional)),qn(An,p,n,C),2===b)return C;l=p.global,l&&0===x.active++&&x.event.trigger("ajaxStart"),p.type=p.type.toUpperCase(),p.hasContent=!Nn.test(p.type),o=p.url,p.hasContent||(p.data&&(o=p.url+=(bn.test(o)?"&":"?")+p.data,delete p.data),p.cache===!1&&(p.url=wn.test(o)?o.replace(wn,"$1_="+vn++):o+(bn.test(o)?"&":"?")+"_="+vn++)),p.ifModified&&(x.lastModified[o]&&C.setRequestHeader("If-Modified-Since",x.lastModified[o]),x.etag[o]&&C.setRequestHeader("If-None-Match",x.etag[o])),(p.data&&p.hasContent&&p.contentType!==!1||n.contentType)&&C.setRequestHeader("Content-Type",p.contentType),C.setRequestHeader("Accept",p.dataTypes[0]&&p.accepts[p.dataTypes[0]]?p.accepts[p.dataTypes[0]]+("*"!==p.dataTypes[0]?", "+Dn+"; q=0.01":""):p.accepts["*"]);for(i in p.headers)C.setRequestHeader(i,p.headers[i]);if(p.beforeSend&&(p.beforeSend.call(f,C,p)===!1||2===b))return C.abort();w="abort";for(i in{success:1,error:1,complete:1})C[i](p[i]);if(u=qn(jn,p,n,C)){C.readyState=1,l&&d.trigger("ajaxSend",[C,p]),p.async&&p.timeout>0&&(s=setTimeout(function(){C.abort("timeout")},p.timeout));try{b=1,u.send(y,k)}catch(N){if(!(2>b))throw N;k(-1,N)}}else k(-1,"No Transport");function k(e,n,r,i){var c,y,v,w,T,N=n;2!==b&&(b=2,s&&clearTimeout(s),u=t,a=i||"",C.readyState=e>0?4:0,c=e>=200&&300>e||304===e,r&&(w=Mn(p,C,r)),w=On(p,w,C,c),c?(p.ifModified&&(T=C.getResponseHeader("Last-Modified"),T&&(x.lastModified[o]=T),T=C.getResponseHeader("etag"),T&&(x.etag[o]=T)),204===e||"HEAD"===p.type?N="nocontent":304===e?N="notmodified":(N=w.state,y=w.data,v=w.error,c=!v)):(v=N,(e||!N)&&(N="error",0>e&&(e=0))),C.status=e,C.statusText=(n||N)+"",c?h.resolveWith(f,[y,N,C]):h.rejectWith(f,[C,N,v]),C.statusCode(m),m=t,l&&d.trigger(c?"ajaxSuccess":"ajaxError",[C,p,c?y:v]),g.fireWith(f,[C,N]),l&&(d.trigger("ajaxComplete",[C,p]),--x.active||x.event.trigger("ajaxStop")))}return C},getJSON:function(e,t,n){return x.get(e,t,n,"json")},getScript:function(e,n){return x.get(e,t,n,"script")}}),x.each(["get","post"],function(e,n){x[n]=function(e,r,i,o){return x.isFunction(r)&&(o=o||i,i=r,r=t),x.ajax({url:e,type:n,dataType:o,data:r,success:i})}});function Mn(e,n,r){var i,o,a,s,l=e.contents,u=e.dataTypes;while("*"===u[0])u.shift(),o===t&&(o=e.mimeType||n.getResponseHeader("Content-Type"));if(o)for(s in l)if(l[s]&&l[s].test(o)){u.unshift(s);break}if(u[0]in r)a=u[0];else{for(s in r){if(!u[0]||e.converters[s+" "+u[0]]){a=s;break}i||(i=s)}a=a||i}return a?(a!==u[0]&&u.unshift(a),r[a]):t}function On(e,t,n,r){var i,o,a,s,l,u={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)u[a.toLowerCase()]=e.converters[a];o=c.shift();while(o)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!l&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),l=o,o=c.shift())if("*"===o)o=l;else if("*"!==l&&l!==o){if(a=u[l+" "+o]||u["* "+o],!a)for(i in u)if(s=i.split(" "),s[1]===o&&(a=u[l+" "+s[0]]||u["* "+s[0]])){a===!0?a=u[i]:u[i]!==!0&&(o=s[0],c.unshift(s[1]));break}if(a!==!0)if(a&&e["throws"])t=a(t);else try{t=a(t)}catch(p){return{state:"parsererror",error:a?p:"No conversion from "+l+" to "+o}}}return{state:"success",data:t}}x.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(e){return x.globalEval(e),e}}}),x.ajaxPrefilter("script",function(e){e.cache===t&&(e.cache=!1),e.crossDomain&&(e.type="GET",e.global=!1)}),x.ajaxTransport("script",function(e){if(e.crossDomain){var n,r=a.head||x("head")[0]||a.documentElement;return{send:function(t,i){n=a.createElement("script"),n.async=!0,e.scriptCharset&&(n.charset=e.scriptCharset),n.src=e.url,n.onload=n.onreadystatechange=function(e,t){(t||!n.readyState||/loaded|complete/.test(n.readyState))&&(n.onload=n.onreadystatechange=null,n.parentNode&&n.parentNode.removeChild(n),n=null,t||i(200,"success"))},r.insertBefore(n,r.firstChild)},abort:function(){n&&n.onload(t,!0)}}}});var Fn=[],Bn=/(=)\?(?=&|$)|\?\?/;x.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Fn.pop()||x.expando+"_"+vn++;return this[e]=!0,e}}),x.ajaxPrefilter("json jsonp",function(n,r,i){var o,a,s,l=n.jsonp!==!1&&(Bn.test(n.url)?"url":"string"==typeof n.data&&!(n.contentType||"").indexOf("application/x-www-form-urlencoded")&&Bn.test(n.data)&&"data");return l||"jsonp"===n.dataTypes[0]?(o=n.jsonpCallback=x.isFunction(n.jsonpCallback)?n.jsonpCallback():n.jsonpCallback,l?n[l]=n[l].replace(Bn,"$1"+o):n.jsonp!==!1&&(n.url+=(bn.test(n.url)?"&":"?")+n.jsonp+"="+o),n.converters["script json"]=function(){return s||x.error(o+" was not called"),s[0]},n.dataTypes[0]="json",a=e[o],e[o]=function(){s=arguments},i.always(function(){e[o]=a,n[o]&&(n.jsonpCallback=r.jsonpCallback,Fn.push(o)),s&&x.isFunction(a)&&a(s[0]),s=a=t}),"script"):t});var Pn,Rn,Wn=0,$n=e.ActiveXObject&&function(){var e;for(e in Pn)Pn[e](t,!0)};function In(){try{return new e.XMLHttpRequest}catch(t){}}function zn(){try{return new e.ActiveXObject("Microsoft.XMLHTTP")}catch(t){}}x.ajaxSettings.xhr=e.ActiveXObject?function(){return!this.isLocal&&In()||zn()}:In,Rn=x.ajaxSettings.xhr(),x.support.cors=!!Rn&&"withCredentials"in Rn,Rn=x.support.ajax=!!Rn,Rn&&x.ajaxTransport(function(n){if(!n.crossDomain||x.support.cors){var r;return{send:function(i,o){var a,s,l=n.xhr();if(n.username?l.open(n.type,n.url,n.async,n.username,n.password):l.open(n.type,n.url,n.async),n.xhrFields)for(s in n.xhrFields)l[s]=n.xhrFields[s];n.mimeType&&l.overrideMimeType&&l.overrideMimeType(n.mimeType),n.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest");try{for(s in i)l.setRequestHeader(s,i[s])}catch(u){}l.send(n.hasContent&&n.data||null),r=function(e,i){var s,u,c,p;try{if(r&&(i||4===l.readyState))if(r=t,a&&(l.onreadystatechange=x.noop,$n&&delete Pn[a]),i)4!==l.readyState&&l.abort();else{p={},s=l.status,u=l.getAllResponseHeaders(),"string"==typeof l.responseText&&(p.text=l.responseText);try{c=l.statusText}catch(f){c=""}s||!n.isLocal||n.crossDomain?1223===s&&(s=204):s=p.text?200:404}}catch(d){i||o(-1,d)}p&&o(s,c,p,u)},n.async?4===l.readyState?setTimeout(r):(a=++Wn,$n&&(Pn||(Pn={},x(e).unload($n)),Pn[a]=r),l.onreadystatechange=r):r()},abort:function(){r&&r(t,!0)}}}});var Xn,Un,Vn=/^(?:toggle|show|hide)$/,Yn=RegExp("^(?:([+-])=|)("+w+")([a-z%]*)$","i"),Jn=/queueHooks$/,Gn=[nr],Qn={"*":[function(e,t){var n=this.createTween(e,t),r=n.cur(),i=Yn.exec(t),o=i&&i[3]||(x.cssNumber[e]?"":"px"),a=(x.cssNumber[e]||"px"!==o&&+r)&&Yn.exec(x.css(n.elem,e)),s=1,l=20;if(a&&a[3]!==o){o=o||a[3],i=i||[],a=+r||1;do s=s||".5",a/=s,x.style(n.elem,e,a+o);while(s!==(s=n.cur()/r)&&1!==s&&--l)}return i&&(a=n.start=+a||+r||0,n.unit=o,n.end=i[1]?a+(i[1]+1)*i[2]:+i[2]),n}]};function Kn(){return setTimeout(function(){Xn=t}),Xn=x.now()}function Zn(e,t,n){var r,i=(Qn[t]||[]).concat(Qn["*"]),o=0,a=i.length;for(;a>o;o++)if(r=i[o].call(n,t,e))return r}function er(e,t,n){var r,i,o=0,a=Gn.length,s=x.Deferred().always(function(){delete l.elem}),l=function(){if(i)return!1;var t=Xn||Kn(),n=Math.max(0,u.startTime+u.duration-t),r=n/u.duration||0,o=1-r,a=0,l=u.tweens.length;for(;l>a;a++)u.tweens[a].run(o);return s.notifyWith(e,[u,o,n]),1>o&&l?n:(s.resolveWith(e,[u]),!1)},u=s.promise({elem:e,props:x.extend({},t),opts:x.extend(!0,{specialEasing:{}},n),originalProperties:t,originalOptions:n,startTime:Xn||Kn(),duration:n.duration,tweens:[],createTween:function(t,n){var r=x.Tween(e,u.opts,t,n,u.opts.specialEasing[t]||u.opts.easing);return u.tweens.push(r),r},stop:function(t){var n=0,r=t?u.tweens.length:0;if(i)return this;for(i=!0;r>n;n++)u.tweens[n].run(1);return t?s.resolveWith(e,[u,t]):s.rejectWith(e,[u,t]),this}}),c=u.props;for(tr(c,u.opts.specialEasing);a>o;o++)if(r=Gn[o].call(u,e,c,u.opts))return r;return x.map(c,Zn,u),x.isFunction(u.opts.start)&&u.opts.start.call(e,u),x.fx.timer(x.extend(l,{elem:e,anim:u,queue:u.opts.queue})),u.progress(u.opts.progress).done(u.opts.done,u.opts.complete).fail(u.opts.fail).always(u.opts.always)}function tr(e,t){var n,r,i,o,a;for(n in e)if(r=x.camelCase(n),i=t[r],o=e[n],x.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),a=x.cssHooks[r],a&&"expand"in a){o=a.expand(o),delete e[r];for(n in o)n in e||(e[n]=o[n],t[n]=i)}else t[r]=i}x.Animation=x.extend(er,{tweener:function(e,t){x.isFunction(e)?(t=e,e=["*"]):e=e.split(" ");var n,r=0,i=e.length;for(;i>r;r++)n=e[r],Qn[n]=Qn[n]||[],Qn[n].unshift(t)},prefilter:function(e,t){t?Gn.unshift(e):Gn.push(e)}});function nr(e,t,n){var r,i,o,a,s,l,u=this,c={},p=e.style,f=e.nodeType&&nn(e),d=x._data(e,"fxshow");n.queue||(s=x._queueHooks(e,"fx"),null==s.unqueued&&(s.unqueued=0,l=s.empty.fire,s.empty.fire=function(){s.unqueued||l()}),s.unqueued++,u.always(function(){u.always(function(){s.unqueued--,x.queue(e,"fx").length||s.empty.fire()})})),1===e.nodeType&&("height"in t||"width"in t)&&(n.overflow=[p.overflow,p.overflowX,p.overflowY],"inline"===x.css(e,"display")&&"none"===x.css(e,"float")&&(x.support.inlineBlockNeedsLayout&&"inline"!==ln(e.nodeName)?p.zoom=1:p.display="inline-block")),n.overflow&&(p.overflow="hidden",x.support.shrinkWrapBlocks||u.always(function(){p.overflow=n.overflow[0],p.overflowX=n.overflow[1],p.overflowY=n.overflow[2]}));for(r in t)if(i=t[r],Vn.exec(i)){if(delete t[r],o=o||"toggle"===i,i===(f?"hide":"show"))continue;c[r]=d&&d[r]||x.style(e,r)}if(!x.isEmptyObject(c)){d?"hidden"in d&&(f=d.hidden):d=x._data(e,"fxshow",{}),o&&(d.hidden=!f),f?x(e).show():u.done(function(){x(e).hide()}),u.done(function(){var t;x._removeData(e,"fxshow");for(t in c)x.style(e,t,c[t])});for(r in c)a=Zn(f?d[r]:0,r,u),r in d||(d[r]=a.start,f&&(a.end=a.start,a.start="width"===r||"height"===r?1:0))}}function rr(e,t,n,r,i){return new rr.prototype.init(e,t,n,r,i)}x.Tween=rr,rr.prototype={constructor:rr,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||"swing",this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(x.cssNumber[n]?"":"px")},cur:function(){var e=rr.propHooks[this.prop];return e&&e.get?e.get(this):rr.propHooks._default.get(this)},run:function(e){var t,n=rr.propHooks[this.prop];return this.pos=t=this.options.duration?x.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):rr.propHooks._default.set(this),this}},rr.prototype.init.prototype=rr.prototype,rr.propHooks={_default:{get:function(e){var t;return null==e.elem[e.prop]||e.elem.style&&null!=e.elem.style[e.prop]?(t=x.css(e.elem,e.prop,""),t&&"auto"!==t?t:0):e.elem[e.prop]},set:function(e){x.fx.step[e.prop]?x.fx.step[e.prop](e):e.elem.style&&(null!=e.elem.style[x.cssProps[e.prop]]||x.cssHooks[e.prop])?x.style(e.elem,e.prop,e.now+e.unit):e.elem[e.prop]=e.now}}},rr.propHooks.scrollTop=rr.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},x.each(["toggle","show","hide"],function(e,t){var n=x.fn[t];x.fn[t]=function(e,r,i){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(ir(t,!0),e,r,i)}}),x.fn.extend({fadeTo:function(e,t,n,r){return this.filter(nn).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(e,t,n,r){var i=x.isEmptyObject(e),o=x.speed(t,n,r),a=function(){var t=er(this,x.extend({},e),o);(i||x._data(this,"finish"))&&t.stop(!0)};return a.finish=a,i||o.queue===!1?this.each(a):this.queue(o.queue,a)},stop:function(e,n,r){var i=function(e){var t=e.stop;delete e.stop,t(r)};return"string"!=typeof e&&(r=n,n=e,e=t),n&&e!==!1&&this.queue(e||"fx",[]),this.each(function(){var t=!0,n=null!=e&&e+"queueHooks",o=x.timers,a=x._data(this);if(n)a[n]&&a[n].stop&&i(a[n]);else for(n in a)a[n]&&a[n].stop&&Jn.test(n)&&i(a[n]);for(n=o.length;n--;)o[n].elem!==this||null!=e&&o[n].queue!==e||(o[n].anim.stop(r),t=!1,o.splice(n,1));(t||!r)&&x.dequeue(this,e)})},finish:function(e){return e!==!1&&(e=e||"fx"),this.each(function(){var t,n=x._data(this),r=n[e+"queue"],i=n[e+"queueHooks"],o=x.timers,a=r?r.length:0;for(n.finish=!0,x.queue(this,e,[]),i&&i.stop&&i.stop.call(this,!0),t=o.length;t--;)o[t].elem===this&&o[t].queue===e&&(o[t].anim.stop(!0),o.splice(t,1));for(t=0;a>t;t++)r[t]&&r[t].finish&&r[t].finish.call(this);delete n.finish})}});function ir(e,t){var n,r={height:e},i=0;for(t=t?1:0;4>i;i+=2-t)n=Zt[i],r["margin"+n]=r["padding"+n]=e;return t&&(r.opacity=r.width=e),r}x.each({slideDown:ir("show"),slideUp:ir("hide"),slideToggle:ir("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,t){x.fn[e]=function(e,n,r){return this.animate(t,e,n,r)}}),x.speed=function(e,t,n){var r=e&&"object"==typeof e?x.extend({},e):{complete:n||!n&&t||x.isFunction(e)&&e,duration:e,easing:n&&t||t&&!x.isFunction(t)&&t};return r.duration=x.fx.off?0:"number"==typeof r.duration?r.duration:r.duration in x.fx.speeds?x.fx.speeds[r.duration]:x.fx.speeds._default,(null==r.queue||r.queue===!0)&&(r.queue="fx"),r.old=r.complete,r.complete=function(){x.isFunction(r.old)&&r.old.call(this),r.queue&&x.dequeue(this,r.queue)},r},x.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2}},x.timers=[],x.fx=rr.prototype.init,x.fx.tick=function(){var e,n=x.timers,r=0;for(Xn=x.now();n.length>r;r++)e=n[r],e()||n[r]!==e||n.splice(r--,1);n.length||x.fx.stop(),Xn=t},x.fx.timer=function(e){e()&&x.timers.push(e)&&x.fx.start()},x.fx.interval=13,x.fx.start=function(){Un||(Un=setInterval(x.fx.tick,x.fx.interval))},x.fx.stop=function(){clearInterval(Un),Un=null},x.fx.speeds={slow:600,fast:200,_default:400},x.fx.step={},x.expr&&x.expr.filters&&(x.expr.filters.animated=function(e){return x.grep(x.timers,function(t){return e===t.elem}).length}),x.fn.offset=function(e){if(arguments.length)return e===t?this:this.each(function(t){x.offset.setOffset(this,e,t)});var n,r,o={top:0,left:0},a=this[0],s=a&&a.ownerDocument;if(s)return n=s.documentElement,x.contains(n,a)?(typeof a.getBoundingClientRect!==i&&(o=a.getBoundingClientRect()),r=or(s),{top:o.top+(r.pageYOffset||n.scrollTop)-(n.clientTop||0),left:o.left+(r.pageXOffset||n.scrollLeft)-(n.clientLeft||0)}):o},x.offset={setOffset:function(e,t,n){var r=x.css(e,"position");"static"===r&&(e.style.position="relative");var i=x(e),o=i.offset(),a=x.css(e,"top"),s=x.css(e,"left"),l=("absolute"===r||"fixed"===r)&&x.inArray("auto",[a,s])>-1,u={},c={},p,f;l?(c=i.position(),p=c.top,f=c.left):(p=parseFloat(a)||0,f=parseFloat(s)||0),x.isFunction(t)&&(t=t.call(e,n,o)),null!=t.top&&(u.top=t.top-o.top+p),null!=t.left&&(u.left=t.left-o.left+f),"using"in t?t.using.call(e,u):i.css(u)}},x.fn.extend({position:function(){if(this[0]){var e,t,n={top:0,left:0},r=this[0];return"fixed"===x.css(r,"position")?t=r.getBoundingClientRect():(e=this.offsetParent(),t=this.offset(),x.nodeName(e[0],"html")||(n=e.offset()),n.top+=x.css(e[0],"borderTopWidth",!0),n.left+=x.css(e[0],"borderLeftWidth",!0)),{top:t.top-n.top-x.css(r,"marginTop",!0),left:t.left-n.left-x.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent||s;while(e&&!x.nodeName(e,"html")&&"static"===x.css(e,"position"))e=e.offsetParent;return e||s})}}),x.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(e,n){var r=/Y/.test(n);x.fn[e]=function(i){return x.access(this,function(e,i,o){var a=or(e);return o===t?a?n in a?a[n]:a.document.documentElement[i]:e[i]:(a?a.scrollTo(r?x(a).scrollLeft():o,r?o:x(a).scrollTop()):e[i]=o,t)},e,i,arguments.length,null)}});function or(e){return x.isWindow(e)?e:9===e.nodeType?e.defaultView||e.parentWindow:!1}x.each({Height:"height",Width:"width"},function(e,n){x.each({padding:"inner"+e,content:n,"":"outer"+e},function(r,i){x.fn[i]=function(i,o){var a=arguments.length&&(r||"boolean"!=typeof i),s=r||(i===!0||o===!0?"margin":"border");return x.access(this,function(n,r,i){var o;return x.isWindow(n)?n.document.documentElement["client"+e]:9===n.nodeType?(o=n.documentElement,Math.max(n.body["scroll"+e],o["scroll"+e],n.body["offset"+e],o["offset"+e],o["client"+e])):i===t?x.css(n,r,s):x.style(n,r,i,s)},n,a?i:t,a,null)}})}),x.fn.size=function(){return this.length},x.fn.andSelf=x.fn.addBack,"object"==typeof module&&module&&"object"==typeof module.exports?module.exports=x:(e.jQuery=e.$=x,"function"==typeof define&&define.amd&&define("jquery",[],function(){return x}))})(window);Evidence varnish
-
-
http://localhost (31)
-
Content-Type Header Missing (1)
GET http://localhost/phpmyadmin/favicon.ico
Alert tags Alert description The Content-Type header was either missing or empty.
Request Request line and header section (346 bytes)
GET http://localhost/phpmyadmin/favicon.ico HTTP/1.1 host: localhost user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 pragma: no-cache cache-control: no-cache referer: http://localhost/phpmyadmin/ Cookie: pma_lang=en; phpMyAdmin=610f86c60f00a8f4dc92fe660c217e62Request body (0 bytes)
Response Status line and header section (260 bytes)
HTTP/1.1 200 OK Date: Sat, 19 Apr 2025 15:17:49 GMT Server: Apache/2.4.54 (Unix) OpenSSL/1.1.1s PHP/7.4.33 mod_perl/2.0.12 Perl/v5.34.1 Last-Modified: Wed, 11 May 2022 04:39:14 GMT ETag: "57d6-5deb505f5e080" Accept-Ranges: bytes Content-Length: 22486Response body (22486 bytes)
-
-
ZAP